q6afe.c 214 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586
  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. {
  2673. struct afe_audioif_config_command config;
  2674. int index;
  2675. int ret;
  2676. int payload_size = sizeof(config) - sizeof(struct apr_hdr) -
  2677. sizeof(config.param) - sizeof(config.port);
  2678. pr_debug("%s:update DSP for enc format = %d\n", __func__, format);
  2679. if (format != ASM_MEDIA_FMT_SBC && format != ASM_MEDIA_FMT_AAC_V2 &&
  2680. format != ASM_MEDIA_FMT_APTX && format != ASM_MEDIA_FMT_APTX_HD &&
  2681. format != ASM_MEDIA_FMT_CELT) {
  2682. pr_err("%s:Unsuppported format Ignore AFE config\n", __func__);
  2683. return 0;
  2684. }
  2685. memset(&config, 0, sizeof(config));
  2686. index = q6audio_get_port_index(port_id);
  2687. if (index < 0) {
  2688. pr_err("%s: Invalid index number: %d\n", __func__, index);
  2689. return -EINVAL;
  2690. }
  2691. config.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2692. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  2693. config.hdr.pkt_size = sizeof(config);
  2694. config.hdr.src_port = 0;
  2695. config.hdr.dest_port = 0;
  2696. config.hdr.token = index;
  2697. config.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  2698. config.param.port_id = q6audio_get_port_id(port_id);
  2699. config.param.payload_size = payload_size + sizeof(config.port.enc_fmt);
  2700. config.param.payload_address_lsw = 0x00;
  2701. config.param.payload_address_msw = 0x00;
  2702. config.param.mem_map_handle = 0x00;
  2703. config.pdata.module_id = AFE_MODULE_ID_ENCODER;
  2704. config.pdata.param_id = AFE_ENCODER_PARAM_ID_ENC_FMT_ID;
  2705. config.pdata.param_size = sizeof(config.port.enc_fmt);
  2706. config.port.enc_fmt.fmt_id = format;
  2707. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_ENC_FMT_ID payload: %d\n",
  2708. __func__, config.param.payload_size);
  2709. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  2710. if (ret) {
  2711. pr_err("%s:unable to send AFE_ENCODER_PARAM_ID_ENC_FMT_ID",
  2712. __func__);
  2713. goto exit;
  2714. }
  2715. config.param.payload_size = payload_size
  2716. + sizeof(config.port.enc_blk_param);
  2717. pr_debug("%s:send AFE_ENCODER_PARAM_ID_ENC_CFG_BLK to DSP payload:%d\n",
  2718. __func__, config.param.payload_size);
  2719. config.pdata.param_id = AFE_ENCODER_PARAM_ID_ENC_CFG_BLK;
  2720. config.pdata.param_size = sizeof(config.port.enc_blk_param);
  2721. config.port.enc_blk_param.enc_cfg_blk_size =
  2722. sizeof(config.port.enc_blk_param.enc_blk_config);
  2723. config.port.enc_blk_param.enc_blk_config = *cfg;
  2724. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  2725. if (ret) {
  2726. pr_err("%s: AFE_ENCODER_PARAM_ID_ENC_CFG_BLK for port 0x%x failed %d\n",
  2727. __func__, port_id, ret);
  2728. goto exit;
  2729. }
  2730. if (format == ASM_MEDIA_FMT_APTX) {
  2731. config.param.payload_size =
  2732. payload_size + sizeof(config.port.sync_mode_param);
  2733. pr_debug("%s: sending AFE_PARAM_ID_APTX_SYNC_MODE to DSP",
  2734. __func__);
  2735. config.pdata.param_id = AFE_PARAM_ID_APTX_SYNC_MODE;
  2736. config.pdata.param_size = sizeof(config.port.sync_mode_param);
  2737. config.port.sync_mode_param.sync_mode =
  2738. config.port.enc_blk_param.enc_blk_config.aptx_config.
  2739. aptx_v2_cfg.sync_mode;
  2740. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  2741. if (ret) {
  2742. pr_err("%s: AFE_PARAM_ID_APTX_SYNC_MODE for port 0x%x failed %d\n",
  2743. __func__, port_id, ret);
  2744. goto exit;
  2745. }
  2746. }
  2747. config.param.payload_size =
  2748. payload_size + sizeof(config.port.enc_pkt_id_param);
  2749. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_PACKETIZER to DSP payload = %d",
  2750. __func__, config.param.payload_size);
  2751. config.pdata.param_id = AFE_ENCODER_PARAM_ID_PACKETIZER_ID;
  2752. config.pdata.param_size = sizeof(config.port.enc_pkt_id_param);
  2753. config.port.enc_pkt_id_param.enc_packetizer_id =
  2754. AFE_MODULE_ID_PACKETIZER_COP;
  2755. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  2756. if (ret) {
  2757. pr_err("%s: AFE_ENCODER_PARAM_ID_PACKETIZER for port 0x%x failed %d\n",
  2758. __func__, port_id, ret);
  2759. goto exit;
  2760. }
  2761. config.param.payload_size =
  2762. payload_size + sizeof(config.port.media_type);
  2763. config.pdata.param_size = sizeof(config.port.media_type);
  2764. pr_debug("%s:Sending AFE_API_VERSION_PORT_MEDIA_TYPE to DSP", __func__);
  2765. config.pdata.module_id = AFE_MODULE_PORT;
  2766. config.pdata.param_id = AFE_PARAM_ID_PORT_MEDIA_TYPE;
  2767. config.port.media_type.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  2768. config.port.media_type.sample_rate = afe_config.slim_sch.sample_rate;
  2769. if (afe_in_bit_width)
  2770. config.port.media_type.bit_width = afe_in_bit_width;
  2771. else
  2772. config.port.media_type.bit_width =
  2773. afe_config.slim_sch.bit_width;
  2774. if (afe_in_channels)
  2775. config.port.media_type.num_channels = afe_in_channels;
  2776. else
  2777. config.port.media_type.num_channels =
  2778. afe_config.slim_sch.num_channels;
  2779. config.port.media_type.data_format = AFE_PORT_DATA_FORMAT_PCM;
  2780. config.port.media_type.reserved = 0;
  2781. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  2782. if (ret) {
  2783. pr_err("%s: AFE_API_VERSION_PORT_MEDIA_TYPE for port 0x%x failed %d\n",
  2784. __func__, port_id, ret);
  2785. goto exit;
  2786. }
  2787. exit:
  2788. return ret;
  2789. }
  2790. static int __afe_port_start(u16 port_id, union afe_port_config *afe_config,
  2791. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  2792. union afe_enc_config_data *cfg, u32 enc_format)
  2793. {
  2794. struct afe_audioif_config_command config;
  2795. int ret = 0;
  2796. int cfg_type;
  2797. int index = 0;
  2798. enum afe_mad_type mad_type;
  2799. uint16_t port_index;
  2800. if (!afe_config) {
  2801. pr_err("%s: Error, no configuration data\n", __func__);
  2802. ret = -EINVAL;
  2803. return ret;
  2804. }
  2805. if ((port_id == RT_PROXY_DAI_001_RX) ||
  2806. (port_id == RT_PROXY_DAI_002_TX)) {
  2807. pr_debug("%s: before incrementing pcm_afe_instance %d port_id 0x%x\n",
  2808. __func__,
  2809. pcm_afe_instance[port_id & 0x1], port_id);
  2810. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  2811. pcm_afe_instance[port_id & 0x1]++;
  2812. return 0;
  2813. }
  2814. if ((port_id == RT_PROXY_DAI_002_RX) ||
  2815. (port_id == RT_PROXY_DAI_001_TX)) {
  2816. pr_debug("%s: before incrementing proxy_afe_instance %d port_id 0x%x\n",
  2817. __func__,
  2818. proxy_afe_instance[port_id & 0x1], port_id);
  2819. if (!afe_close_done[port_id & 0x1]) {
  2820. /*close pcm dai corresponding to the proxy dai*/
  2821. afe_close(port_id - 0x10);
  2822. pcm_afe_instance[port_id & 0x1]++;
  2823. pr_debug("%s: reconfigure afe port again\n", __func__);
  2824. }
  2825. proxy_afe_instance[port_id & 0x1]++;
  2826. afe_close_done[port_id & 0x1] = false;
  2827. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  2828. }
  2829. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  2830. index = q6audio_get_port_index(port_id);
  2831. if (index < 0 || index >= AFE_MAX_PORTS) {
  2832. pr_err("%s: AFE port index[%d] invalid!\n",
  2833. __func__, index);
  2834. return -EINVAL;
  2835. }
  2836. ret = q6audio_validate_port(port_id);
  2837. if (ret < 0) {
  2838. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  2839. return -EINVAL;
  2840. }
  2841. ret = afe_q6_interface_prepare();
  2842. if (ret != 0) {
  2843. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  2844. return ret;
  2845. }
  2846. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  2847. this_afe.afe_sample_rates[index] = rate;
  2848. if (this_afe.rt_cb)
  2849. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  2850. }
  2851. mutex_lock(&this_afe.afe_cmd_lock);
  2852. /* Also send the topology id here: */
  2853. port_index = afe_get_port_index(port_id);
  2854. if (!(this_afe.afe_cal_mode[port_index] == AFE_CAL_MODE_NONE)) {
  2855. /* One time call: only for first time */
  2856. afe_send_custom_topology();
  2857. afe_send_port_topology_id(port_id);
  2858. afe_send_cal(port_id);
  2859. afe_send_hw_delay(port_id, rate);
  2860. }
  2861. /* Start SW MAD module */
  2862. mad_type = afe_port_get_mad_type(port_id);
  2863. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  2864. mad_type);
  2865. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  2866. if (!afe_has_config(AFE_CDC_REGISTERS_CONFIG) ||
  2867. !afe_has_config(AFE_SLIMBUS_SLAVE_CONFIG)) {
  2868. pr_err("%s: AFE isn't configured yet for\n"
  2869. "HW MAD try Again\n", __func__);
  2870. ret = -EAGAIN;
  2871. goto fail_cmd;
  2872. }
  2873. ret = afe_turn_onoff_hw_mad(mad_type, true);
  2874. if (ret) {
  2875. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  2876. __func__, ret);
  2877. goto fail_cmd;
  2878. }
  2879. }
  2880. if ((this_afe.aanc_info.aanc_active) &&
  2881. (this_afe.aanc_info.aanc_tx_port == port_id)) {
  2882. this_afe.aanc_info.aanc_tx_port_sample_rate = rate;
  2883. port_index =
  2884. afe_get_port_index(this_afe.aanc_info.aanc_rx_port);
  2885. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  2886. this_afe.aanc_info.aanc_rx_port_sample_rate =
  2887. this_afe.afe_sample_rates[port_index];
  2888. } else {
  2889. pr_err("%s: Invalid port index %d\n",
  2890. __func__, port_index);
  2891. ret = -EINVAL;
  2892. goto fail_cmd;
  2893. }
  2894. ret = afe_aanc_start(this_afe.aanc_info.aanc_tx_port,
  2895. this_afe.aanc_info.aanc_rx_port);
  2896. pr_debug("%s: afe_aanc_start ret %d\n", __func__, ret);
  2897. }
  2898. if ((port_id == AFE_PORT_ID_USB_RX) ||
  2899. (port_id == AFE_PORT_ID_USB_TX)) {
  2900. ret = afe_port_send_usb_dev_param(port_id, afe_config);
  2901. if (ret) {
  2902. pr_err("%s: AFE device param for port 0x%x failed %d\n",
  2903. __func__, port_id, ret);
  2904. ret = -EINVAL;
  2905. goto fail_cmd;
  2906. }
  2907. }
  2908. config.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2909. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  2910. config.hdr.pkt_size = sizeof(config);
  2911. config.hdr.src_port = 0;
  2912. config.hdr.dest_port = 0;
  2913. config.hdr.token = index;
  2914. switch (port_id) {
  2915. case AFE_PORT_ID_PRIMARY_PCM_RX:
  2916. case AFE_PORT_ID_PRIMARY_PCM_TX:
  2917. case AFE_PORT_ID_SECONDARY_PCM_RX:
  2918. case AFE_PORT_ID_SECONDARY_PCM_TX:
  2919. case AFE_PORT_ID_TERTIARY_PCM_RX:
  2920. case AFE_PORT_ID_TERTIARY_PCM_TX:
  2921. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  2922. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  2923. case AFE_PORT_ID_QUINARY_PCM_RX:
  2924. case AFE_PORT_ID_QUINARY_PCM_TX:
  2925. cfg_type = AFE_PARAM_ID_PCM_CONFIG;
  2926. break;
  2927. case PRIMARY_I2S_RX:
  2928. case PRIMARY_I2S_TX:
  2929. case SECONDARY_I2S_RX:
  2930. case SECONDARY_I2S_TX:
  2931. case MI2S_RX:
  2932. case MI2S_TX:
  2933. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  2934. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  2935. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  2936. case AFE_PORT_ID_SECONDARY_MI2S_RX_SD1:
  2937. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  2938. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  2939. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  2940. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  2941. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  2942. case AFE_PORT_ID_QUINARY_MI2S_RX:
  2943. case AFE_PORT_ID_QUINARY_MI2S_TX:
  2944. case AFE_PORT_ID_SENARY_MI2S_TX:
  2945. case AFE_PORT_ID_INT0_MI2S_RX:
  2946. case AFE_PORT_ID_INT0_MI2S_TX:
  2947. case AFE_PORT_ID_INT1_MI2S_RX:
  2948. case AFE_PORT_ID_INT1_MI2S_TX:
  2949. case AFE_PORT_ID_INT2_MI2S_RX:
  2950. case AFE_PORT_ID_INT2_MI2S_TX:
  2951. case AFE_PORT_ID_INT3_MI2S_RX:
  2952. case AFE_PORT_ID_INT3_MI2S_TX:
  2953. case AFE_PORT_ID_INT4_MI2S_RX:
  2954. case AFE_PORT_ID_INT4_MI2S_TX:
  2955. case AFE_PORT_ID_INT5_MI2S_RX:
  2956. case AFE_PORT_ID_INT5_MI2S_TX:
  2957. case AFE_PORT_ID_INT6_MI2S_RX:
  2958. case AFE_PORT_ID_INT6_MI2S_TX:
  2959. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  2960. break;
  2961. case HDMI_RX:
  2962. case DISPLAY_PORT_RX:
  2963. cfg_type = AFE_PARAM_ID_HDMI_CONFIG;
  2964. break;
  2965. case VOICE_PLAYBACK_TX:
  2966. case VOICE2_PLAYBACK_TX:
  2967. case VOICE_RECORD_RX:
  2968. case VOICE_RECORD_TX:
  2969. cfg_type = AFE_PARAM_ID_PSEUDO_PORT_CONFIG;
  2970. break;
  2971. case SLIMBUS_0_RX:
  2972. case SLIMBUS_0_TX:
  2973. case SLIMBUS_1_RX:
  2974. case SLIMBUS_1_TX:
  2975. case SLIMBUS_2_RX:
  2976. case SLIMBUS_2_TX:
  2977. case SLIMBUS_3_RX:
  2978. case SLIMBUS_3_TX:
  2979. case SLIMBUS_4_RX:
  2980. case SLIMBUS_4_TX:
  2981. case SLIMBUS_5_RX:
  2982. case SLIMBUS_5_TX:
  2983. case SLIMBUS_6_RX:
  2984. case SLIMBUS_6_TX:
  2985. case SLIMBUS_7_RX:
  2986. case SLIMBUS_7_TX:
  2987. case SLIMBUS_8_RX:
  2988. case SLIMBUS_8_TX:
  2989. cfg_type = AFE_PARAM_ID_SLIMBUS_CONFIG;
  2990. break;
  2991. case AFE_PORT_ID_USB_RX:
  2992. case AFE_PORT_ID_USB_TX:
  2993. cfg_type = AFE_PARAM_ID_USB_AUDIO_CONFIG;
  2994. break;
  2995. case RT_PROXY_PORT_001_RX:
  2996. case RT_PROXY_PORT_001_TX:
  2997. cfg_type = AFE_PARAM_ID_RT_PROXY_CONFIG;
  2998. break;
  2999. case INT_BT_SCO_RX:
  3000. case INT_BT_A2DP_RX:
  3001. case INT_BT_SCO_TX:
  3002. case INT_FM_RX:
  3003. case INT_FM_TX:
  3004. cfg_type = AFE_PARAM_ID_INTERNAL_BT_FM_CONFIG;
  3005. break;
  3006. default:
  3007. pr_err("%s: Invalid port id 0x%x\n", __func__, port_id);
  3008. ret = -EINVAL;
  3009. goto fail_cmd;
  3010. }
  3011. config.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  3012. config.param.port_id = q6audio_get_port_id(port_id);
  3013. config.param.payload_size = sizeof(config) - sizeof(struct apr_hdr) -
  3014. sizeof(config.param);
  3015. config.param.payload_address_lsw = 0x00;
  3016. config.param.payload_address_msw = 0x00;
  3017. config.param.mem_map_handle = 0x00;
  3018. config.pdata.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3019. config.pdata.param_id = cfg_type;
  3020. config.pdata.param_size = sizeof(config.port);
  3021. config.port = *afe_config;
  3022. if ((enc_format != ASM_MEDIA_FMT_NONE) &&
  3023. (cfg_type == AFE_PARAM_ID_SLIMBUS_CONFIG)) {
  3024. config.port.slim_sch.data_format =
  3025. AFE_SB_DATA_FORMAT_GENERIC_COMPRESSED;
  3026. }
  3027. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  3028. if (ret) {
  3029. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  3030. __func__, port_id, ret);
  3031. goto fail_cmd;
  3032. }
  3033. if ((enc_format != ASM_MEDIA_FMT_NONE) &&
  3034. (cfg_type == AFE_PARAM_ID_SLIMBUS_CONFIG)) {
  3035. pr_debug("%s: Found AFE encoder support for SLIMBUS enc_format = %d\n",
  3036. __func__, enc_format);
  3037. ret = q6afe_send_enc_config(port_id, cfg, enc_format,
  3038. *afe_config, afe_in_channels,
  3039. afe_in_bit_width);
  3040. if (ret) {
  3041. pr_err("%s: AFE encoder config for port 0x%x failed %d\n",
  3042. __func__, port_id, ret);
  3043. goto fail_cmd;
  3044. }
  3045. }
  3046. port_index = afe_get_port_index(port_id);
  3047. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  3048. /*
  3049. * If afe_port_start() for tx port called before
  3050. * rx port, then aanc rx sample rate is zero. So,
  3051. * AANC state machine in AFE will not get triggered.
  3052. * Make sure to check whether aanc is active during
  3053. * afe_port_start() for rx port and if aanc rx
  3054. * sample rate is zero, call afe_aanc_start to configure
  3055. * aanc with valid sample rates.
  3056. */
  3057. if (this_afe.aanc_info.aanc_active &&
  3058. !this_afe.aanc_info.aanc_rx_port_sample_rate) {
  3059. this_afe.aanc_info.aanc_rx_port_sample_rate =
  3060. this_afe.afe_sample_rates[port_index];
  3061. ret = afe_aanc_start(this_afe.aanc_info.aanc_tx_port,
  3062. this_afe.aanc_info.aanc_rx_port);
  3063. pr_debug("%s: afe_aanc_start ret %d\n", __func__, ret);
  3064. }
  3065. } else {
  3066. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  3067. ret = -EINVAL;
  3068. goto fail_cmd;
  3069. }
  3070. ret = afe_send_cmd_port_start(port_id);
  3071. fail_cmd:
  3072. mutex_unlock(&this_afe.afe_cmd_lock);
  3073. return ret;
  3074. }
  3075. /**
  3076. * afe_port_start - to configure AFE session with
  3077. * specified port configuration
  3078. *
  3079. * @port_id: AFE port id number
  3080. * @afe_config: port configutation
  3081. * @rate: sampling rate of port
  3082. *
  3083. * Returns 0 on success or error value on port start failure.
  3084. */
  3085. int afe_port_start(u16 port_id, union afe_port_config *afe_config,
  3086. u32 rate)
  3087. {
  3088. return __afe_port_start(port_id, afe_config, rate,
  3089. 0, 0, NULL, ASM_MEDIA_FMT_NONE);
  3090. }
  3091. EXPORT_SYMBOL(afe_port_start);
  3092. /**
  3093. * afe_port_start_v2 - to configure AFE session with
  3094. * specified port configuration and encoder params
  3095. *
  3096. * @port_id: AFE port id number
  3097. * @afe_config: port configutation
  3098. * @rate: sampling rate of port
  3099. * @cfg: AFE encoder configuration information to setup encoder
  3100. * @afe_in_channels: AFE input channel configuration, this needs
  3101. * update only if input channel is differ from AFE output
  3102. *
  3103. * Returns 0 on success or error value on port start failure.
  3104. */
  3105. int afe_port_start_v2(u16 port_id, union afe_port_config *afe_config,
  3106. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  3107. struct afe_enc_config *enc_cfg)
  3108. {
  3109. return __afe_port_start(port_id, afe_config, rate,
  3110. afe_in_channels, afe_in_bit_width,
  3111. &enc_cfg->data, enc_cfg->format);
  3112. }
  3113. EXPORT_SYMBOL(afe_port_start_v2);
  3114. int afe_get_port_index(u16 port_id)
  3115. {
  3116. switch (port_id) {
  3117. case PRIMARY_I2S_RX: return IDX_PRIMARY_I2S_RX;
  3118. case PRIMARY_I2S_TX: return IDX_PRIMARY_I2S_TX;
  3119. case AFE_PORT_ID_PRIMARY_PCM_RX:
  3120. return IDX_AFE_PORT_ID_PRIMARY_PCM_RX;
  3121. case AFE_PORT_ID_PRIMARY_PCM_TX:
  3122. return IDX_AFE_PORT_ID_PRIMARY_PCM_TX;
  3123. case AFE_PORT_ID_SECONDARY_PCM_RX:
  3124. return IDX_AFE_PORT_ID_SECONDARY_PCM_RX;
  3125. case AFE_PORT_ID_SECONDARY_PCM_TX:
  3126. return IDX_AFE_PORT_ID_SECONDARY_PCM_TX;
  3127. case AFE_PORT_ID_TERTIARY_PCM_RX:
  3128. return IDX_AFE_PORT_ID_TERTIARY_PCM_RX;
  3129. case AFE_PORT_ID_TERTIARY_PCM_TX:
  3130. return IDX_AFE_PORT_ID_TERTIARY_PCM_TX;
  3131. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  3132. return IDX_AFE_PORT_ID_QUATERNARY_PCM_RX;
  3133. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  3134. return IDX_AFE_PORT_ID_QUATERNARY_PCM_TX;
  3135. case AFE_PORT_ID_QUINARY_PCM_RX:
  3136. return IDX_AFE_PORT_ID_QUINARY_PCM_RX;
  3137. case AFE_PORT_ID_QUINARY_PCM_TX:
  3138. return IDX_AFE_PORT_ID_QUINARY_PCM_TX;
  3139. case SECONDARY_I2S_RX: return IDX_SECONDARY_I2S_RX;
  3140. case SECONDARY_I2S_TX: return IDX_SECONDARY_I2S_TX;
  3141. case MI2S_RX: return IDX_MI2S_RX;
  3142. case MI2S_TX: return IDX_MI2S_TX;
  3143. case HDMI_RX: return IDX_HDMI_RX;
  3144. case DISPLAY_PORT_RX: return IDX_DISPLAY_PORT_RX;
  3145. case AFE_PORT_ID_SPDIF_RX: return IDX_SPDIF_RX;
  3146. case RSVD_2: return IDX_RSVD_2;
  3147. case RSVD_3: return IDX_RSVD_3;
  3148. case DIGI_MIC_TX: return IDX_DIGI_MIC_TX;
  3149. case VOICE_RECORD_RX: return IDX_VOICE_RECORD_RX;
  3150. case VOICE_RECORD_TX: return IDX_VOICE_RECORD_TX;
  3151. case VOICE_PLAYBACK_TX: return IDX_VOICE_PLAYBACK_TX;
  3152. case VOICE2_PLAYBACK_TX: return IDX_VOICE2_PLAYBACK_TX;
  3153. case SLIMBUS_0_RX: return IDX_SLIMBUS_0_RX;
  3154. case SLIMBUS_0_TX: return IDX_SLIMBUS_0_TX;
  3155. case SLIMBUS_1_RX: return IDX_SLIMBUS_1_RX;
  3156. case SLIMBUS_1_TX: return IDX_SLIMBUS_1_TX;
  3157. case SLIMBUS_2_RX: return IDX_SLIMBUS_2_RX;
  3158. case SLIMBUS_2_TX: return IDX_SLIMBUS_2_TX;
  3159. case SLIMBUS_3_RX: return IDX_SLIMBUS_3_RX;
  3160. case SLIMBUS_3_TX: return IDX_SLIMBUS_3_TX;
  3161. case INT_BT_SCO_RX: return IDX_INT_BT_SCO_RX;
  3162. case INT_BT_SCO_TX: return IDX_INT_BT_SCO_TX;
  3163. case INT_BT_A2DP_RX: return IDX_INT_BT_A2DP_RX;
  3164. case INT_FM_RX: return IDX_INT_FM_RX;
  3165. case INT_FM_TX: return IDX_INT_FM_TX;
  3166. case RT_PROXY_PORT_001_RX: return IDX_RT_PROXY_PORT_001_RX;
  3167. case RT_PROXY_PORT_001_TX: return IDX_RT_PROXY_PORT_001_TX;
  3168. case SLIMBUS_4_RX: return IDX_SLIMBUS_4_RX;
  3169. case SLIMBUS_4_TX: return IDX_SLIMBUS_4_TX;
  3170. case SLIMBUS_5_RX: return IDX_SLIMBUS_5_RX;
  3171. case SLIMBUS_5_TX: return IDX_SLIMBUS_5_TX;
  3172. case SLIMBUS_6_RX: return IDX_SLIMBUS_6_RX;
  3173. case SLIMBUS_6_TX: return IDX_SLIMBUS_6_TX;
  3174. case SLIMBUS_7_RX: return IDX_SLIMBUS_7_RX;
  3175. case SLIMBUS_7_TX: return IDX_SLIMBUS_7_TX;
  3176. case SLIMBUS_8_RX: return IDX_SLIMBUS_8_RX;
  3177. case SLIMBUS_8_TX: return IDX_SLIMBUS_8_TX;
  3178. case AFE_PORT_ID_USB_RX: return IDX_AFE_PORT_ID_USB_RX;
  3179. case AFE_PORT_ID_USB_TX: return IDX_AFE_PORT_ID_USB_TX;
  3180. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  3181. return IDX_AFE_PORT_ID_PRIMARY_MI2S_RX;
  3182. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  3183. return IDX_AFE_PORT_ID_PRIMARY_MI2S_TX;
  3184. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  3185. return IDX_AFE_PORT_ID_QUATERNARY_MI2S_RX;
  3186. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  3187. return IDX_AFE_PORT_ID_QUATERNARY_MI2S_TX;
  3188. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  3189. return IDX_AFE_PORT_ID_SECONDARY_MI2S_RX;
  3190. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  3191. return IDX_AFE_PORT_ID_SECONDARY_MI2S_TX;
  3192. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  3193. return IDX_AFE_PORT_ID_TERTIARY_MI2S_RX;
  3194. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  3195. return IDX_AFE_PORT_ID_TERTIARY_MI2S_TX;
  3196. case AFE_PORT_ID_SECONDARY_MI2S_RX_SD1:
  3197. return IDX_AFE_PORT_ID_SECONDARY_MI2S_RX_SD1;
  3198. case AFE_PORT_ID_QUINARY_MI2S_RX:
  3199. return IDX_AFE_PORT_ID_QUINARY_MI2S_RX;
  3200. case AFE_PORT_ID_QUINARY_MI2S_TX:
  3201. return IDX_AFE_PORT_ID_QUINARY_MI2S_TX;
  3202. case AFE_PORT_ID_SENARY_MI2S_TX:
  3203. return IDX_AFE_PORT_ID_SENARY_MI2S_TX;
  3204. case AFE_PORT_ID_PRIMARY_TDM_RX:
  3205. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_0;
  3206. case AFE_PORT_ID_PRIMARY_TDM_TX:
  3207. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_0;
  3208. case AFE_PORT_ID_PRIMARY_TDM_RX_1:
  3209. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_1;
  3210. case AFE_PORT_ID_PRIMARY_TDM_TX_1:
  3211. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_1;
  3212. case AFE_PORT_ID_PRIMARY_TDM_RX_2:
  3213. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_2;
  3214. case AFE_PORT_ID_PRIMARY_TDM_TX_2:
  3215. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_2;
  3216. case AFE_PORT_ID_PRIMARY_TDM_RX_3:
  3217. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_3;
  3218. case AFE_PORT_ID_PRIMARY_TDM_TX_3:
  3219. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_3;
  3220. case AFE_PORT_ID_PRIMARY_TDM_RX_4:
  3221. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_4;
  3222. case AFE_PORT_ID_PRIMARY_TDM_TX_4:
  3223. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_4;
  3224. case AFE_PORT_ID_PRIMARY_TDM_RX_5:
  3225. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_5;
  3226. case AFE_PORT_ID_PRIMARY_TDM_TX_5:
  3227. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_5;
  3228. case AFE_PORT_ID_PRIMARY_TDM_RX_6:
  3229. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_6;
  3230. case AFE_PORT_ID_PRIMARY_TDM_TX_6:
  3231. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_6;
  3232. case AFE_PORT_ID_PRIMARY_TDM_RX_7:
  3233. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_7;
  3234. case AFE_PORT_ID_PRIMARY_TDM_TX_7:
  3235. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_7;
  3236. case AFE_PORT_ID_SECONDARY_TDM_RX:
  3237. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_0;
  3238. case AFE_PORT_ID_SECONDARY_TDM_TX:
  3239. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_0;
  3240. case AFE_PORT_ID_SECONDARY_TDM_RX_1:
  3241. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_1;
  3242. case AFE_PORT_ID_SECONDARY_TDM_TX_1:
  3243. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_1;
  3244. case AFE_PORT_ID_SECONDARY_TDM_RX_2:
  3245. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_2;
  3246. case AFE_PORT_ID_SECONDARY_TDM_TX_2:
  3247. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_2;
  3248. case AFE_PORT_ID_SECONDARY_TDM_RX_3:
  3249. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_3;
  3250. case AFE_PORT_ID_SECONDARY_TDM_TX_3:
  3251. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_3;
  3252. case AFE_PORT_ID_SECONDARY_TDM_RX_4:
  3253. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_4;
  3254. case AFE_PORT_ID_SECONDARY_TDM_TX_4:
  3255. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_4;
  3256. case AFE_PORT_ID_SECONDARY_TDM_RX_5:
  3257. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_5;
  3258. case AFE_PORT_ID_SECONDARY_TDM_TX_5:
  3259. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_5;
  3260. case AFE_PORT_ID_SECONDARY_TDM_RX_6:
  3261. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_6;
  3262. case AFE_PORT_ID_SECONDARY_TDM_TX_6:
  3263. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_6;
  3264. case AFE_PORT_ID_SECONDARY_TDM_RX_7:
  3265. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_7;
  3266. case AFE_PORT_ID_SECONDARY_TDM_TX_7:
  3267. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_7;
  3268. case AFE_PORT_ID_TERTIARY_TDM_RX:
  3269. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_0;
  3270. case AFE_PORT_ID_TERTIARY_TDM_TX:
  3271. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_0;
  3272. case AFE_PORT_ID_TERTIARY_TDM_RX_1:
  3273. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_1;
  3274. case AFE_PORT_ID_TERTIARY_TDM_TX_1:
  3275. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_1;
  3276. case AFE_PORT_ID_TERTIARY_TDM_RX_2:
  3277. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_2;
  3278. case AFE_PORT_ID_TERTIARY_TDM_TX_2:
  3279. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_2;
  3280. case AFE_PORT_ID_TERTIARY_TDM_RX_3:
  3281. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_3;
  3282. case AFE_PORT_ID_TERTIARY_TDM_TX_3:
  3283. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_3;
  3284. case AFE_PORT_ID_TERTIARY_TDM_RX_4:
  3285. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_4;
  3286. case AFE_PORT_ID_TERTIARY_TDM_TX_4:
  3287. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_4;
  3288. case AFE_PORT_ID_TERTIARY_TDM_RX_5:
  3289. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_5;
  3290. case AFE_PORT_ID_TERTIARY_TDM_TX_5:
  3291. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_5;
  3292. case AFE_PORT_ID_TERTIARY_TDM_RX_6:
  3293. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_6;
  3294. case AFE_PORT_ID_TERTIARY_TDM_TX_6:
  3295. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_6;
  3296. case AFE_PORT_ID_TERTIARY_TDM_RX_7:
  3297. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_7;
  3298. case AFE_PORT_ID_TERTIARY_TDM_TX_7:
  3299. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_7;
  3300. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  3301. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_0;
  3302. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  3303. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_0;
  3304. case AFE_PORT_ID_QUATERNARY_TDM_RX_1:
  3305. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_1;
  3306. case AFE_PORT_ID_QUATERNARY_TDM_TX_1:
  3307. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_1;
  3308. case AFE_PORT_ID_QUATERNARY_TDM_RX_2:
  3309. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_2;
  3310. case AFE_PORT_ID_QUATERNARY_TDM_TX_2:
  3311. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_2;
  3312. case AFE_PORT_ID_QUATERNARY_TDM_RX_3:
  3313. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_3;
  3314. case AFE_PORT_ID_QUATERNARY_TDM_TX_3:
  3315. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_3;
  3316. case AFE_PORT_ID_QUATERNARY_TDM_RX_4:
  3317. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_4;
  3318. case AFE_PORT_ID_QUATERNARY_TDM_TX_4:
  3319. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_4;
  3320. case AFE_PORT_ID_QUATERNARY_TDM_RX_5:
  3321. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_5;
  3322. case AFE_PORT_ID_QUATERNARY_TDM_TX_5:
  3323. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_5;
  3324. case AFE_PORT_ID_QUATERNARY_TDM_RX_6:
  3325. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_6;
  3326. case AFE_PORT_ID_QUATERNARY_TDM_TX_6:
  3327. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_6;
  3328. case AFE_PORT_ID_QUATERNARY_TDM_RX_7:
  3329. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_7;
  3330. case AFE_PORT_ID_QUATERNARY_TDM_TX_7:
  3331. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_7;
  3332. case AFE_PORT_ID_QUINARY_TDM_RX:
  3333. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_0;
  3334. case AFE_PORT_ID_QUINARY_TDM_TX:
  3335. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_0;
  3336. case AFE_PORT_ID_QUINARY_TDM_RX_1:
  3337. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_1;
  3338. case AFE_PORT_ID_QUINARY_TDM_TX_1:
  3339. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_1;
  3340. case AFE_PORT_ID_QUINARY_TDM_RX_2:
  3341. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_2;
  3342. case AFE_PORT_ID_QUINARY_TDM_TX_2:
  3343. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_2;
  3344. case AFE_PORT_ID_QUINARY_TDM_RX_3:
  3345. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_3;
  3346. case AFE_PORT_ID_QUINARY_TDM_TX_3:
  3347. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_3;
  3348. case AFE_PORT_ID_QUINARY_TDM_RX_4:
  3349. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_4;
  3350. case AFE_PORT_ID_QUINARY_TDM_TX_4:
  3351. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_4;
  3352. case AFE_PORT_ID_QUINARY_TDM_RX_5:
  3353. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_5;
  3354. case AFE_PORT_ID_QUINARY_TDM_TX_5:
  3355. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_5;
  3356. case AFE_PORT_ID_QUINARY_TDM_RX_6:
  3357. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_6;
  3358. case AFE_PORT_ID_QUINARY_TDM_TX_6:
  3359. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_6;
  3360. case AFE_PORT_ID_QUINARY_TDM_RX_7:
  3361. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_7;
  3362. case AFE_PORT_ID_QUINARY_TDM_TX_7:
  3363. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_7;
  3364. case AFE_PORT_ID_INT0_MI2S_RX:
  3365. return IDX_AFE_PORT_ID_INT0_MI2S_RX;
  3366. case AFE_PORT_ID_INT0_MI2S_TX:
  3367. return IDX_AFE_PORT_ID_INT0_MI2S_TX;
  3368. case AFE_PORT_ID_INT1_MI2S_RX:
  3369. return IDX_AFE_PORT_ID_INT1_MI2S_RX;
  3370. case AFE_PORT_ID_INT1_MI2S_TX:
  3371. return IDX_AFE_PORT_ID_INT1_MI2S_TX;
  3372. case AFE_PORT_ID_INT2_MI2S_RX:
  3373. return IDX_AFE_PORT_ID_INT2_MI2S_RX;
  3374. case AFE_PORT_ID_INT2_MI2S_TX:
  3375. return IDX_AFE_PORT_ID_INT2_MI2S_TX;
  3376. case AFE_PORT_ID_INT3_MI2S_RX:
  3377. return IDX_AFE_PORT_ID_INT3_MI2S_RX;
  3378. case AFE_PORT_ID_INT3_MI2S_TX:
  3379. return IDX_AFE_PORT_ID_INT3_MI2S_TX;
  3380. case AFE_PORT_ID_INT4_MI2S_RX:
  3381. return IDX_AFE_PORT_ID_INT4_MI2S_RX;
  3382. case AFE_PORT_ID_INT4_MI2S_TX:
  3383. return IDX_AFE_PORT_ID_INT4_MI2S_TX;
  3384. case AFE_PORT_ID_INT5_MI2S_RX:
  3385. return IDX_AFE_PORT_ID_INT5_MI2S_RX;
  3386. case AFE_PORT_ID_INT5_MI2S_TX:
  3387. return IDX_AFE_PORT_ID_INT5_MI2S_TX;
  3388. case AFE_PORT_ID_INT6_MI2S_RX:
  3389. return IDX_AFE_PORT_ID_INT6_MI2S_RX;
  3390. case AFE_PORT_ID_INT6_MI2S_TX:
  3391. return IDX_AFE_PORT_ID_INT6_MI2S_TX;
  3392. default:
  3393. pr_err("%s: port 0x%x\n", __func__, port_id);
  3394. return -EINVAL;
  3395. }
  3396. }
  3397. /**
  3398. * afe_open -
  3399. * command to open AFE port
  3400. *
  3401. * @port_id: AFE port id
  3402. * @afe_config: AFE port config to pass
  3403. * @rate: sample rate
  3404. *
  3405. * Returns 0 on success or error on failure
  3406. */
  3407. int afe_open(u16 port_id,
  3408. union afe_port_config *afe_config, int rate)
  3409. {
  3410. struct afe_port_cmd_device_start start;
  3411. struct afe_audioif_config_command config;
  3412. int ret = 0;
  3413. int cfg_type;
  3414. int index = 0;
  3415. if (!afe_config) {
  3416. pr_err("%s: Error, no configuration data\n", __func__);
  3417. ret = -EINVAL;
  3418. return ret;
  3419. }
  3420. pr_err("%s: port_id 0x%x rate %d\n", __func__, port_id, rate);
  3421. index = q6audio_get_port_index(port_id);
  3422. if (index < 0 || index >= AFE_MAX_PORTS) {
  3423. pr_err("%s: AFE port index[%d] invalid!\n",
  3424. __func__, index);
  3425. return -EINVAL;
  3426. }
  3427. ret = q6audio_validate_port(port_id);
  3428. if (ret < 0) {
  3429. pr_err("%s: Invalid port 0x%x ret %d", __func__, port_id, ret);
  3430. return -EINVAL;
  3431. }
  3432. if ((port_id == RT_PROXY_DAI_001_RX) ||
  3433. (port_id == RT_PROXY_DAI_002_TX)) {
  3434. pr_err("%s: wrong port 0x%x\n", __func__, port_id);
  3435. return -EINVAL;
  3436. }
  3437. if ((port_id == RT_PROXY_DAI_002_RX) ||
  3438. (port_id == RT_PROXY_DAI_001_TX))
  3439. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  3440. ret = afe_q6_interface_prepare();
  3441. if (ret != 0) {
  3442. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3443. return -EINVAL;
  3444. }
  3445. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  3446. this_afe.afe_sample_rates[index] = rate;
  3447. if (this_afe.rt_cb)
  3448. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  3449. }
  3450. /* Also send the topology id here: */
  3451. afe_send_custom_topology(); /* One time call: only for first time */
  3452. afe_send_port_topology_id(port_id);
  3453. ret = q6audio_validate_port(port_id);
  3454. if (ret < 0) {
  3455. pr_err("%s: Failed : Invalid Port id = 0x%x ret %d\n",
  3456. __func__, port_id, ret);
  3457. return -EINVAL;
  3458. }
  3459. mutex_lock(&this_afe.afe_cmd_lock);
  3460. config.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3461. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3462. config.hdr.pkt_size = sizeof(config);
  3463. config.hdr.src_port = 0;
  3464. config.hdr.dest_port = 0;
  3465. config.hdr.token = index;
  3466. switch (port_id) {
  3467. case PRIMARY_I2S_RX:
  3468. case PRIMARY_I2S_TX:
  3469. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  3470. break;
  3471. case AFE_PORT_ID_PRIMARY_PCM_RX:
  3472. case AFE_PORT_ID_PRIMARY_PCM_TX:
  3473. case AFE_PORT_ID_SECONDARY_PCM_RX:
  3474. case AFE_PORT_ID_SECONDARY_PCM_TX:
  3475. case AFE_PORT_ID_TERTIARY_PCM_RX:
  3476. case AFE_PORT_ID_TERTIARY_PCM_TX:
  3477. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  3478. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  3479. case AFE_PORT_ID_QUINARY_PCM_RX:
  3480. case AFE_PORT_ID_QUINARY_PCM_TX:
  3481. cfg_type = AFE_PARAM_ID_PCM_CONFIG;
  3482. break;
  3483. case SECONDARY_I2S_RX:
  3484. case SECONDARY_I2S_TX:
  3485. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  3486. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  3487. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  3488. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  3489. case MI2S_RX:
  3490. case MI2S_TX:
  3491. case AFE_PORT_ID_QUINARY_MI2S_RX:
  3492. case AFE_PORT_ID_QUINARY_MI2S_TX:
  3493. case AFE_PORT_ID_SENARY_MI2S_TX:
  3494. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  3495. break;
  3496. case HDMI_RX:
  3497. case DISPLAY_PORT_RX:
  3498. cfg_type = AFE_PARAM_ID_HDMI_CONFIG;
  3499. break;
  3500. case SLIMBUS_0_RX:
  3501. case SLIMBUS_0_TX:
  3502. case SLIMBUS_1_RX:
  3503. case SLIMBUS_1_TX:
  3504. case SLIMBUS_2_RX:
  3505. case SLIMBUS_2_TX:
  3506. case SLIMBUS_3_RX:
  3507. case SLIMBUS_3_TX:
  3508. case SLIMBUS_4_RX:
  3509. case SLIMBUS_4_TX:
  3510. case SLIMBUS_5_RX:
  3511. case SLIMBUS_6_RX:
  3512. case SLIMBUS_6_TX:
  3513. case SLIMBUS_7_RX:
  3514. case SLIMBUS_7_TX:
  3515. case SLIMBUS_8_RX:
  3516. case SLIMBUS_8_TX:
  3517. cfg_type = AFE_PARAM_ID_SLIMBUS_CONFIG;
  3518. break;
  3519. case AFE_PORT_ID_USB_RX:
  3520. case AFE_PORT_ID_USB_TX:
  3521. cfg_type = AFE_PARAM_ID_USB_AUDIO_CONFIG;
  3522. break;
  3523. default:
  3524. pr_err("%s: Invalid port id 0x%x\n",
  3525. __func__, port_id);
  3526. ret = -EINVAL;
  3527. goto fail_cmd;
  3528. }
  3529. config.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  3530. config.param.port_id = q6audio_get_port_id(port_id);
  3531. config.param.payload_size = sizeof(config) - sizeof(struct apr_hdr)
  3532. - sizeof(config.param);
  3533. config.param.payload_address_lsw = 0x00;
  3534. config.param.payload_address_msw = 0x00;
  3535. config.param.mem_map_handle = 0x00;
  3536. config.pdata.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3537. config.pdata.param_id = cfg_type;
  3538. config.pdata.param_size = sizeof(config.port);
  3539. config.port = *afe_config;
  3540. pr_debug("%s: param PL size=%d iparam_size[%d][%zd %zd %zd %zd] param_id[0x%x]\n",
  3541. __func__, config.param.payload_size, config.pdata.param_size,
  3542. sizeof(config), sizeof(config.param), sizeof(config.port),
  3543. sizeof(struct apr_hdr), config.pdata.param_id);
  3544. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  3545. if (ret) {
  3546. pr_err("%s: AFE enable for port 0x%x opcode[0x%x]failed %d\n",
  3547. __func__, port_id, cfg_type, ret);
  3548. goto fail_cmd;
  3549. }
  3550. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3551. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3552. start.hdr.pkt_size = sizeof(start);
  3553. start.hdr.src_port = 0;
  3554. start.hdr.dest_port = 0;
  3555. start.hdr.token = index;
  3556. start.hdr.opcode = AFE_PORT_CMD_DEVICE_START;
  3557. start.port_id = q6audio_get_port_id(port_id);
  3558. pr_debug("%s: cmd device start opcode[0x%x] port id[0x%x]\n",
  3559. __func__, start.hdr.opcode, start.port_id);
  3560. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  3561. if (ret) {
  3562. pr_err("%s: AFE enable for port 0x%x failed %d\n", __func__,
  3563. port_id, ret);
  3564. goto fail_cmd;
  3565. }
  3566. fail_cmd:
  3567. mutex_unlock(&this_afe.afe_cmd_lock);
  3568. return ret;
  3569. }
  3570. EXPORT_SYMBOL(afe_open);
  3571. /**
  3572. * afe_loopback -
  3573. * command to set loopback between AFE ports
  3574. *
  3575. * @enable: enable or disable loopback
  3576. * @rx_port: AFE RX port ID
  3577. * @tx_port: AFE TX port ID
  3578. *
  3579. * Returns 0 on success or error on failure
  3580. */
  3581. int afe_loopback(u16 enable, u16 rx_port, u16 tx_port)
  3582. {
  3583. struct afe_loopback_cfg_v1 lb_cmd;
  3584. int ret = 0;
  3585. int index = 0;
  3586. if (rx_port == MI2S_RX)
  3587. rx_port = AFE_PORT_ID_PRIMARY_MI2S_RX;
  3588. if (tx_port == MI2S_TX)
  3589. tx_port = AFE_PORT_ID_PRIMARY_MI2S_TX;
  3590. ret = afe_q6_interface_prepare();
  3591. if (ret != 0) {
  3592. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3593. return ret;
  3594. }
  3595. index = q6audio_get_port_index(rx_port);
  3596. if (index < 0 || index >= AFE_MAX_PORTS) {
  3597. pr_err("%s: AFE port index[%d] invalid!\n",
  3598. __func__, index);
  3599. return -EINVAL;
  3600. }
  3601. ret = q6audio_validate_port(rx_port);
  3602. if (ret < 0) {
  3603. pr_err("%s: Invalid port 0x%x ret %d", __func__, rx_port, ret);
  3604. return -EINVAL;
  3605. }
  3606. lb_cmd.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3607. APR_HDR_LEN(20), APR_PKT_VER);
  3608. lb_cmd.hdr.pkt_size = sizeof(lb_cmd);
  3609. lb_cmd.hdr.src_port = 0;
  3610. lb_cmd.hdr.dest_port = 0;
  3611. lb_cmd.hdr.token = index;
  3612. lb_cmd.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  3613. lb_cmd.param.port_id = tx_port;
  3614. lb_cmd.param.payload_size = (sizeof(lb_cmd) - sizeof(struct apr_hdr) -
  3615. sizeof(struct afe_port_cmd_set_param_v2));
  3616. lb_cmd.param.payload_address_lsw = 0x00;
  3617. lb_cmd.param.payload_address_msw = 0x00;
  3618. lb_cmd.param.mem_map_handle = 0x00;
  3619. lb_cmd.pdata.module_id = AFE_MODULE_LOOPBACK;
  3620. lb_cmd.pdata.param_id = AFE_PARAM_ID_LOOPBACK_CONFIG;
  3621. lb_cmd.pdata.param_size = lb_cmd.param.payload_size -
  3622. sizeof(struct afe_port_param_data_v2);
  3623. lb_cmd.dst_port_id = rx_port;
  3624. lb_cmd.routing_mode = LB_MODE_DEFAULT;
  3625. lb_cmd.enable = (enable ? 1 : 0);
  3626. lb_cmd.loopback_cfg_minor_version = AFE_API_VERSION_LOOPBACK_CONFIG;
  3627. ret = afe_apr_send_pkt(&lb_cmd, &this_afe.wait[index]);
  3628. if (ret)
  3629. pr_err("%s: AFE loopback failed %d\n", __func__, ret);
  3630. return ret;
  3631. }
  3632. EXPORT_SYMBOL(afe_loopback);
  3633. /**
  3634. * afe_loopback_gain -
  3635. * command to set gain for AFE loopback
  3636. *
  3637. * @port_id: AFE port id
  3638. * @volume: gain value to set
  3639. *
  3640. * Returns 0 on success or error on failure
  3641. */
  3642. int afe_loopback_gain(u16 port_id, u16 volume)
  3643. {
  3644. struct afe_loopback_gain_per_path_param set_param;
  3645. int ret = 0;
  3646. int index = 0;
  3647. if (this_afe.apr == NULL) {
  3648. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  3649. 0xFFFFFFFF, &this_afe);
  3650. pr_debug("%s: Register AFE\n", __func__);
  3651. if (this_afe.apr == NULL) {
  3652. pr_err("%s: Unable to register AFE\n", __func__);
  3653. ret = -ENODEV;
  3654. return ret;
  3655. }
  3656. rtac_set_afe_handle(this_afe.apr);
  3657. }
  3658. ret = q6audio_validate_port(port_id);
  3659. if (ret < 0) {
  3660. pr_err("%s: Failed : Invalid Port id = 0x%x ret %d\n",
  3661. __func__, port_id, ret);
  3662. ret = -EINVAL;
  3663. goto fail_cmd;
  3664. }
  3665. index = q6audio_get_port_index(port_id);
  3666. if (index < 0 || index >= AFE_MAX_PORTS) {
  3667. pr_err("%s: AFE port index[%d] invalid!\n",
  3668. __func__, index);
  3669. return -EINVAL;
  3670. }
  3671. ret = q6audio_validate_port(port_id);
  3672. if (ret < 0) {
  3673. pr_err("%s: Invalid port 0x%x ret %d",
  3674. __func__, port_id, ret);
  3675. return -EINVAL;
  3676. }
  3677. /* RX ports numbers are even .TX ports numbers are odd. */
  3678. if (port_id % 2 == 0) {
  3679. pr_err("%s: Failed : afe loopback gain only for TX ports. port_id %d\n",
  3680. __func__, port_id);
  3681. ret = -EINVAL;
  3682. goto fail_cmd;
  3683. }
  3684. pr_debug("%s: port 0x%x volume %d\n", __func__, port_id, volume);
  3685. set_param.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3686. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3687. set_param.hdr.pkt_size = sizeof(set_param);
  3688. set_param.hdr.src_port = 0;
  3689. set_param.hdr.dest_port = 0;
  3690. set_param.hdr.token = index;
  3691. set_param.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  3692. set_param.param.port_id = port_id;
  3693. set_param.param.payload_size =
  3694. (sizeof(struct afe_loopback_gain_per_path_param) -
  3695. sizeof(struct apr_hdr) - sizeof(struct afe_port_cmd_set_param_v2));
  3696. set_param.param.payload_address_lsw = 0;
  3697. set_param.param.payload_address_msw = 0;
  3698. set_param.param.mem_map_handle = 0;
  3699. set_param.pdata.module_id = AFE_MODULE_LOOPBACK;
  3700. set_param.pdata.param_id = AFE_PARAM_ID_LOOPBACK_GAIN_PER_PATH;
  3701. set_param.pdata.param_size =
  3702. (set_param.param.payload_size -
  3703. sizeof(struct afe_port_param_data_v2));
  3704. set_param.rx_port_id = port_id;
  3705. set_param.gain = volume;
  3706. ret = afe_apr_send_pkt(&set_param, &this_afe.wait[index]);
  3707. if (ret) {
  3708. pr_err("%s: AFE param set failed for port 0x%x ret %d\n",
  3709. __func__, port_id, ret);
  3710. goto fail_cmd;
  3711. }
  3712. fail_cmd:
  3713. return ret;
  3714. }
  3715. EXPORT_SYMBOL(afe_loopback_gain);
  3716. int afe_pseudo_port_start_nowait(u16 port_id)
  3717. {
  3718. struct afe_pseudoport_start_command start;
  3719. int ret = 0;
  3720. pr_debug("%s: port_id=0x%x\n", __func__, port_id);
  3721. if (this_afe.apr == NULL) {
  3722. pr_err("%s: AFE APR is not registered\n", __func__);
  3723. return -ENODEV;
  3724. }
  3725. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3726. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3727. start.hdr.pkt_size = sizeof(start);
  3728. start.hdr.src_port = 0;
  3729. start.hdr.dest_port = 0;
  3730. start.hdr.token = 0;
  3731. start.hdr.opcode = AFE_PSEUDOPORT_CMD_START;
  3732. start.port_id = port_id;
  3733. start.timing = 1;
  3734. ret = afe_apr_send_pkt(&start, NULL);
  3735. if (ret) {
  3736. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  3737. __func__, port_id, ret);
  3738. return ret;
  3739. }
  3740. return 0;
  3741. }
  3742. int afe_start_pseudo_port(u16 port_id)
  3743. {
  3744. int ret = 0;
  3745. struct afe_pseudoport_start_command start;
  3746. int index = 0;
  3747. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  3748. ret = afe_q6_interface_prepare();
  3749. if (ret != 0) {
  3750. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3751. return ret;
  3752. }
  3753. index = q6audio_get_port_index(port_id);
  3754. if (index < 0 || index >= AFE_MAX_PORTS) {
  3755. pr_err("%s: AFE port index[%d] invalid!\n",
  3756. __func__, index);
  3757. return -EINVAL;
  3758. }
  3759. ret = q6audio_validate_port(port_id);
  3760. if (ret < 0) {
  3761. pr_err("%s: Invalid port 0x%x ret %d",
  3762. __func__, port_id, ret);
  3763. return -EINVAL;
  3764. }
  3765. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3766. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3767. start.hdr.pkt_size = sizeof(start);
  3768. start.hdr.src_port = 0;
  3769. start.hdr.dest_port = 0;
  3770. start.hdr.token = 0;
  3771. start.hdr.opcode = AFE_PSEUDOPORT_CMD_START;
  3772. start.port_id = port_id;
  3773. start.timing = 1;
  3774. start.hdr.token = index;
  3775. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  3776. if (ret)
  3777. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  3778. __func__, port_id, ret);
  3779. return ret;
  3780. }
  3781. int afe_pseudo_port_stop_nowait(u16 port_id)
  3782. {
  3783. int ret = 0;
  3784. struct afe_pseudoport_stop_command stop;
  3785. int index = 0;
  3786. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  3787. if (this_afe.apr == NULL) {
  3788. pr_err("%s: AFE is already closed\n", __func__);
  3789. return -EINVAL;
  3790. }
  3791. index = q6audio_get_port_index(port_id);
  3792. if (index < 0 || index >= AFE_MAX_PORTS) {
  3793. pr_err("%s: AFE port index[%d] invalid!\n",
  3794. __func__, index);
  3795. return -EINVAL;
  3796. }
  3797. ret = q6audio_validate_port(port_id);
  3798. if (ret < 0) {
  3799. pr_err("%s: Invalid port 0x%x ret %d",
  3800. __func__, port_id, ret);
  3801. return -EINVAL;
  3802. }
  3803. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3804. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3805. stop.hdr.pkt_size = sizeof(stop);
  3806. stop.hdr.src_port = 0;
  3807. stop.hdr.dest_port = 0;
  3808. stop.hdr.token = 0;
  3809. stop.hdr.opcode = AFE_PSEUDOPORT_CMD_STOP;
  3810. stop.port_id = port_id;
  3811. stop.reserved = 0;
  3812. stop.hdr.token = index;
  3813. ret = afe_apr_send_pkt(&stop, NULL);
  3814. if (ret)
  3815. pr_err("%s: AFE close failed %d\n", __func__, ret);
  3816. return ret;
  3817. }
  3818. int afe_port_group_set_param(u16 group_id,
  3819. union afe_port_group_config *afe_group_config)
  3820. {
  3821. int ret;
  3822. struct afe_port_group_create config;
  3823. int cfg_type;
  3824. if (!afe_group_config) {
  3825. pr_err("%s: Error, no configuration data\n", __func__);
  3826. return -EINVAL;
  3827. }
  3828. pr_debug("%s: group id: 0x%x\n", __func__, group_id);
  3829. ret = afe_q6_interface_prepare();
  3830. if (ret != 0) {
  3831. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3832. return ret;
  3833. }
  3834. switch (group_id) {
  3835. case AFE_GROUP_DEVICE_ID_PRIMARY_TDM_RX:
  3836. case AFE_GROUP_DEVICE_ID_PRIMARY_TDM_TX:
  3837. case AFE_GROUP_DEVICE_ID_SECONDARY_TDM_RX:
  3838. case AFE_GROUP_DEVICE_ID_SECONDARY_TDM_TX:
  3839. case AFE_GROUP_DEVICE_ID_TERTIARY_TDM_RX:
  3840. case AFE_GROUP_DEVICE_ID_TERTIARY_TDM_TX:
  3841. case AFE_GROUP_DEVICE_ID_QUATERNARY_TDM_RX:
  3842. case AFE_GROUP_DEVICE_ID_QUATERNARY_TDM_TX:
  3843. case AFE_GROUP_DEVICE_ID_QUINARY_TDM_RX:
  3844. case AFE_GROUP_DEVICE_ID_QUINARY_TDM_TX:
  3845. cfg_type = AFE_PARAM_ID_GROUP_DEVICE_TDM_CONFIG;
  3846. break;
  3847. default:
  3848. pr_err("%s: Invalid group id 0x%x\n", __func__, group_id);
  3849. return -EINVAL;
  3850. }
  3851. memset(&config, 0, sizeof(config));
  3852. config.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3853. APR_HDR_LEN(APR_HDR_SIZE),
  3854. APR_PKT_VER);
  3855. config.hdr.pkt_size = sizeof(config);
  3856. config.hdr.src_port = 0;
  3857. config.hdr.dest_port = 0;
  3858. config.hdr.token = IDX_GLOBAL_CFG;
  3859. config.hdr.opcode = AFE_SVC_CMD_SET_PARAM;
  3860. config.param.payload_size = sizeof(config) - sizeof(struct apr_hdr) -
  3861. sizeof(config.param);
  3862. config.param.payload_address_lsw = 0x00;
  3863. config.param.payload_address_msw = 0x00;
  3864. config.param.mem_map_handle = 0x00;
  3865. config.pdata.module_id = AFE_MODULE_GROUP_DEVICE;
  3866. config.pdata.param_id = cfg_type;
  3867. config.pdata.param_size = sizeof(config.data);
  3868. config.data = *afe_group_config;
  3869. ret = afe_apr_send_pkt(&config, &this_afe.wait[IDX_GLOBAL_CFG]);
  3870. if (ret)
  3871. pr_err("%s: AFE_PARAM_ID_GROUP_DEVICE_CFG failed %d\n",
  3872. __func__, ret);
  3873. return ret;
  3874. }
  3875. /**
  3876. * afe_port_group_enable -
  3877. * command to enable AFE port group
  3878. *
  3879. * @group_id: group ID for AFE port group
  3880. * @afe_group_config: config for AFE group
  3881. * @enable: flag to indicate enable or disable
  3882. *
  3883. * Returns 0 on success or error on failure
  3884. */
  3885. int afe_port_group_enable(u16 group_id,
  3886. union afe_port_group_config *afe_group_config,
  3887. u16 enable)
  3888. {
  3889. int ret;
  3890. struct afe_port_group_create config;
  3891. pr_debug("%s: group id: 0x%x enable: %d\n", __func__,
  3892. group_id, enable);
  3893. ret = afe_q6_interface_prepare();
  3894. if (ret != 0) {
  3895. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3896. return ret;
  3897. }
  3898. if (enable) {
  3899. ret = afe_port_group_set_param(group_id, afe_group_config);
  3900. if (ret < 0) {
  3901. pr_err("%s: afe send failed %d\n", __func__, ret);
  3902. return ret;
  3903. }
  3904. }
  3905. memset(&config, 0, sizeof(config));
  3906. config.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3907. APR_HDR_LEN(APR_HDR_SIZE),
  3908. APR_PKT_VER);
  3909. config.hdr.pkt_size = sizeof(config);
  3910. config.hdr.src_port = 0;
  3911. config.hdr.dest_port = 0;
  3912. config.hdr.token = IDX_GLOBAL_CFG;
  3913. config.hdr.opcode = AFE_SVC_CMD_SET_PARAM;
  3914. config.param.payload_size = sizeof(config) - sizeof(struct apr_hdr) -
  3915. sizeof(config.param);
  3916. config.param.payload_address_lsw = 0x00;
  3917. config.param.payload_address_msw = 0x00;
  3918. config.param.mem_map_handle = 0x00;
  3919. config.pdata.module_id = AFE_MODULE_GROUP_DEVICE;
  3920. config.pdata.param_id = AFE_PARAM_ID_GROUP_DEVICE_ENABLE;
  3921. config.pdata.param_size = sizeof(config.data);
  3922. config.data.group_enable.group_id = group_id;
  3923. config.data.group_enable.enable = enable;
  3924. ret = afe_apr_send_pkt(&config, &this_afe.wait[IDX_GLOBAL_CFG]);
  3925. if (ret)
  3926. pr_err("%s: AFE_PARAM_ID_GROUP_DEVICE_ENABLE failed %d\n",
  3927. __func__, ret);
  3928. return ret;
  3929. }
  3930. EXPORT_SYMBOL(afe_port_group_enable);
  3931. int afe_stop_pseudo_port(u16 port_id)
  3932. {
  3933. int ret = 0;
  3934. struct afe_pseudoport_stop_command stop;
  3935. int index = 0;
  3936. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  3937. if (this_afe.apr == NULL) {
  3938. pr_err("%s: AFE is already closed\n", __func__);
  3939. return -EINVAL;
  3940. }
  3941. index = q6audio_get_port_index(port_id);
  3942. if (index < 0 || index >= AFE_MAX_PORTS) {
  3943. pr_err("%s: AFE port index[%d] invalid!\n",
  3944. __func__, index);
  3945. return -EINVAL;
  3946. }
  3947. ret = q6audio_validate_port(port_id);
  3948. if (ret < 0) {
  3949. pr_err("%s: Invalid port 0x%x ret %d\n",
  3950. __func__, port_id, ret);
  3951. return -EINVAL;
  3952. }
  3953. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3954. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3955. stop.hdr.pkt_size = sizeof(stop);
  3956. stop.hdr.src_port = 0;
  3957. stop.hdr.dest_port = 0;
  3958. stop.hdr.token = 0;
  3959. stop.hdr.opcode = AFE_PSEUDOPORT_CMD_STOP;
  3960. stop.port_id = port_id;
  3961. stop.reserved = 0;
  3962. stop.hdr.token = index;
  3963. ret = afe_apr_send_pkt(&stop, &this_afe.wait[index]);
  3964. if (ret)
  3965. pr_err("%s: AFE close failed %d\n", __func__, ret);
  3966. return ret;
  3967. }
  3968. /**
  3969. * afe_req_mmap_handle -
  3970. * Retrieve AFE memory map handle
  3971. *
  3972. * @ac: AFE audio client
  3973. *
  3974. * Returns memory map handle
  3975. */
  3976. uint32_t afe_req_mmap_handle(struct afe_audio_client *ac)
  3977. {
  3978. return ac->mem_map_handle;
  3979. }
  3980. EXPORT_SYMBOL(afe_req_mmap_handle);
  3981. /**
  3982. * q6afe_audio_client_alloc -
  3983. * Assign new AFE audio client
  3984. *
  3985. * @priv: privata data to hold for audio client
  3986. *
  3987. * Returns ac pointer on success or NULL on failure
  3988. */
  3989. struct afe_audio_client *q6afe_audio_client_alloc(void *priv)
  3990. {
  3991. struct afe_audio_client *ac;
  3992. int lcnt = 0;
  3993. ac = kzalloc(sizeof(struct afe_audio_client), GFP_KERNEL);
  3994. if (!ac)
  3995. return NULL;
  3996. ac->priv = priv;
  3997. init_waitqueue_head(&ac->cmd_wait);
  3998. INIT_LIST_HEAD(&ac->port[0].mem_map_handle);
  3999. INIT_LIST_HEAD(&ac->port[1].mem_map_handle);
  4000. pr_debug("%s: mem_map_handle list init'ed\n", __func__);
  4001. mutex_init(&ac->cmd_lock);
  4002. for (lcnt = 0; lcnt <= OUT; lcnt++) {
  4003. mutex_init(&ac->port[lcnt].lock);
  4004. spin_lock_init(&ac->port[lcnt].dsp_lock);
  4005. }
  4006. atomic_set(&ac->cmd_state, 0);
  4007. return ac;
  4008. }
  4009. EXPORT_SYMBOL(q6afe_audio_client_alloc);
  4010. /**
  4011. * q6afe_audio_client_buf_alloc_contiguous -
  4012. * Allocate contiguous shared buffers
  4013. *
  4014. * @dir: RX or TX direction of AFE port
  4015. * @ac: AFE audio client handle
  4016. * @bufsz: size of each shared buffer
  4017. * @bufcnt: number of buffers
  4018. *
  4019. * Returns 0 on success or error on failure
  4020. */
  4021. int q6afe_audio_client_buf_alloc_contiguous(unsigned int dir,
  4022. struct afe_audio_client *ac,
  4023. unsigned int bufsz,
  4024. unsigned int bufcnt)
  4025. {
  4026. int cnt = 0;
  4027. int rc = 0;
  4028. struct afe_audio_buffer *buf;
  4029. size_t len;
  4030. if (!(ac) || ((dir != IN) && (dir != OUT))) {
  4031. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  4032. return -EINVAL;
  4033. }
  4034. pr_debug("%s: bufsz[%d]bufcnt[%d]\n",
  4035. __func__,
  4036. bufsz, bufcnt);
  4037. if (ac->port[dir].buf) {
  4038. pr_debug("%s: buffer already allocated\n", __func__);
  4039. return 0;
  4040. }
  4041. mutex_lock(&ac->cmd_lock);
  4042. buf = kzalloc(((sizeof(struct afe_audio_buffer))*bufcnt),
  4043. GFP_KERNEL);
  4044. if (!buf) {
  4045. pr_err("%s: null buf\n", __func__);
  4046. mutex_unlock(&ac->cmd_lock);
  4047. goto fail;
  4048. }
  4049. ac->port[dir].buf = buf;
  4050. rc = msm_audio_ion_alloc("afe_client", &buf[0].client,
  4051. &buf[0].handle, bufsz*bufcnt,
  4052. &buf[0].phys, &len,
  4053. &buf[0].data);
  4054. if (rc) {
  4055. pr_err("%s: audio ION alloc failed, rc = %d\n",
  4056. __func__, rc);
  4057. mutex_unlock(&ac->cmd_lock);
  4058. goto fail;
  4059. }
  4060. buf[0].used = dir ^ 1;
  4061. buf[0].size = bufsz;
  4062. buf[0].actual_size = bufsz;
  4063. cnt = 1;
  4064. while (cnt < bufcnt) {
  4065. if (bufsz > 0) {
  4066. buf[cnt].data = buf[0].data + (cnt * bufsz);
  4067. buf[cnt].phys = buf[0].phys + (cnt * bufsz);
  4068. if (!buf[cnt].data) {
  4069. pr_err("%s: Buf alloc failed\n",
  4070. __func__);
  4071. mutex_unlock(&ac->cmd_lock);
  4072. goto fail;
  4073. }
  4074. buf[cnt].used = dir ^ 1;
  4075. buf[cnt].size = bufsz;
  4076. buf[cnt].actual_size = bufsz;
  4077. pr_debug("%s: data[%pK]phys[%pK][%pK]\n", __func__,
  4078. buf[cnt].data,
  4079. &buf[cnt].phys,
  4080. &buf[cnt].phys);
  4081. }
  4082. cnt++;
  4083. }
  4084. ac->port[dir].max_buf_cnt = cnt;
  4085. mutex_unlock(&ac->cmd_lock);
  4086. return 0;
  4087. fail:
  4088. pr_err("%s: jump fail\n", __func__);
  4089. q6afe_audio_client_buf_free_contiguous(dir, ac);
  4090. return -EINVAL;
  4091. }
  4092. EXPORT_SYMBOL(q6afe_audio_client_buf_alloc_contiguous);
  4093. /**
  4094. * afe_memory_map -
  4095. * command to map shared buffers to AFE
  4096. *
  4097. * @dma_addr_p: DMA physical address
  4098. * @dma_buf_sz: shared DMA buffer size
  4099. * @ac: AFE audio client handle
  4100. *
  4101. * Returns 0 on success or error on failure
  4102. */
  4103. int afe_memory_map(phys_addr_t dma_addr_p, u32 dma_buf_sz,
  4104. struct afe_audio_client *ac)
  4105. {
  4106. int ret = 0;
  4107. mutex_lock(&this_afe.afe_cmd_lock);
  4108. ac->mem_map_handle = 0;
  4109. ret = afe_cmd_memory_map(dma_addr_p, dma_buf_sz);
  4110. if (ret < 0) {
  4111. pr_err("%s: afe_cmd_memory_map failed %d\n",
  4112. __func__, ret);
  4113. mutex_unlock(&this_afe.afe_cmd_lock);
  4114. return ret;
  4115. }
  4116. ac->mem_map_handle = this_afe.mmap_handle;
  4117. mutex_unlock(&this_afe.afe_cmd_lock);
  4118. return ret;
  4119. }
  4120. EXPORT_SYMBOL(afe_memory_map);
  4121. int afe_cmd_memory_map(phys_addr_t dma_addr_p, u32 dma_buf_sz)
  4122. {
  4123. int ret = 0;
  4124. int cmd_size = 0;
  4125. void *payload = NULL;
  4126. void *mmap_region_cmd = NULL;
  4127. struct afe_service_cmd_shared_mem_map_regions *mregion = NULL;
  4128. struct afe_service_shared_map_region_payload *mregion_pl = NULL;
  4129. int index = 0;
  4130. pr_debug("%s:\n", __func__);
  4131. if (this_afe.apr == NULL) {
  4132. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4133. 0xFFFFFFFF, &this_afe);
  4134. pr_debug("%s: Register AFE\n", __func__);
  4135. if (this_afe.apr == NULL) {
  4136. pr_err("%s: Unable to register AFE\n", __func__);
  4137. ret = -ENODEV;
  4138. return ret;
  4139. }
  4140. rtac_set_afe_handle(this_afe.apr);
  4141. }
  4142. if (dma_buf_sz % SZ_4K != 0) {
  4143. /*
  4144. * The memory allocated by msm_audio_ion_alloc is always 4kB
  4145. * aligned, ADSP expects the size to be 4kB aligned as well
  4146. * so re-adjusts the buffer size before passing to ADSP.
  4147. */
  4148. dma_buf_sz = PAGE_ALIGN(dma_buf_sz);
  4149. }
  4150. cmd_size = sizeof(struct afe_service_cmd_shared_mem_map_regions)
  4151. + sizeof(struct afe_service_shared_map_region_payload);
  4152. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  4153. if (!mmap_region_cmd)
  4154. return -ENOMEM;
  4155. mregion = (struct afe_service_cmd_shared_mem_map_regions *)
  4156. mmap_region_cmd;
  4157. mregion->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4158. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4159. mregion->hdr.pkt_size = cmd_size;
  4160. mregion->hdr.src_port = 0;
  4161. mregion->hdr.dest_port = 0;
  4162. mregion->hdr.token = 0;
  4163. mregion->hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS;
  4164. mregion->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  4165. mregion->num_regions = 1;
  4166. mregion->property_flag = 0x00;
  4167. /* Todo */
  4168. index = mregion->hdr.token = IDX_RSVD_2;
  4169. payload = ((u8 *) mmap_region_cmd +
  4170. sizeof(struct afe_service_cmd_shared_mem_map_regions));
  4171. mregion_pl = (struct afe_service_shared_map_region_payload *)payload;
  4172. mregion_pl->shm_addr_lsw = lower_32_bits(dma_addr_p);
  4173. mregion_pl->shm_addr_msw = msm_audio_populate_upper_32_bits(dma_addr_p);
  4174. mregion_pl->mem_size_bytes = dma_buf_sz;
  4175. pr_debug("%s: dma_addr_p 0x%pK , size %d\n", __func__,
  4176. &dma_addr_p, dma_buf_sz);
  4177. atomic_set(&this_afe.state, 1);
  4178. atomic_set(&this_afe.status, 0);
  4179. this_afe.mmap_handle = 0;
  4180. ret = apr_send_pkt(this_afe.apr, (uint32_t *) mmap_region_cmd);
  4181. if (ret < 0) {
  4182. pr_err("%s: AFE memory map cmd failed %d\n",
  4183. __func__, ret);
  4184. ret = -EINVAL;
  4185. goto fail_cmd;
  4186. }
  4187. ret = wait_event_timeout(this_afe.wait[index],
  4188. (atomic_read(&this_afe.state) == 0),
  4189. msecs_to_jiffies(TIMEOUT_MS));
  4190. if (!ret) {
  4191. pr_err("%s: wait_event timeout\n", __func__);
  4192. ret = -EINVAL;
  4193. goto fail_cmd;
  4194. }
  4195. if (atomic_read(&this_afe.status) > 0) {
  4196. pr_err("%s: config cmd failed [%s]\n",
  4197. __func__, adsp_err_get_err_str(
  4198. atomic_read(&this_afe.status)));
  4199. ret = adsp_err_get_lnx_err_code(
  4200. atomic_read(&this_afe.status));
  4201. goto fail_cmd;
  4202. }
  4203. kfree(mmap_region_cmd);
  4204. return 0;
  4205. fail_cmd:
  4206. kfree(mmap_region_cmd);
  4207. pr_err("%s: fail_cmd\n", __func__);
  4208. return ret;
  4209. }
  4210. int afe_cmd_memory_map_nowait(int port_id, phys_addr_t dma_addr_p,
  4211. u32 dma_buf_sz)
  4212. {
  4213. int ret = 0;
  4214. int cmd_size = 0;
  4215. void *payload = NULL;
  4216. void *mmap_region_cmd = NULL;
  4217. struct afe_service_cmd_shared_mem_map_regions *mregion = NULL;
  4218. struct afe_service_shared_map_region_payload *mregion_pl = NULL;
  4219. int index = 0;
  4220. pr_debug("%s:\n", __func__);
  4221. if (this_afe.apr == NULL) {
  4222. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4223. 0xFFFFFFFF, &this_afe);
  4224. pr_debug("%s: Register AFE\n", __func__);
  4225. if (this_afe.apr == NULL) {
  4226. pr_err("%s: Unable to register AFE\n", __func__);
  4227. ret = -ENODEV;
  4228. return ret;
  4229. }
  4230. rtac_set_afe_handle(this_afe.apr);
  4231. }
  4232. index = q6audio_get_port_index(port_id);
  4233. if (index < 0 || index >= AFE_MAX_PORTS) {
  4234. pr_err("%s: AFE port index[%d] invalid!\n",
  4235. __func__, index);
  4236. return -EINVAL;
  4237. }
  4238. ret = q6audio_validate_port(port_id);
  4239. if (ret < 0) {
  4240. pr_err("%s: Invalid port 0x%x ret %d",
  4241. __func__, port_id, ret);
  4242. return -EINVAL;
  4243. }
  4244. cmd_size = sizeof(struct afe_service_cmd_shared_mem_map_regions)
  4245. + sizeof(struct afe_service_shared_map_region_payload);
  4246. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  4247. if (!mmap_region_cmd)
  4248. return -ENOMEM;
  4249. mregion = (struct afe_service_cmd_shared_mem_map_regions *)
  4250. mmap_region_cmd;
  4251. mregion->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4252. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4253. mregion->hdr.pkt_size = sizeof(mregion);
  4254. mregion->hdr.src_port = 0;
  4255. mregion->hdr.dest_port = 0;
  4256. mregion->hdr.token = 0;
  4257. mregion->hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS;
  4258. mregion->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  4259. mregion->num_regions = 1;
  4260. mregion->property_flag = 0x00;
  4261. payload = ((u8 *) mmap_region_cmd +
  4262. sizeof(struct afe_service_cmd_shared_mem_map_regions));
  4263. mregion_pl = (struct afe_service_shared_map_region_payload *)payload;
  4264. mregion_pl->shm_addr_lsw = lower_32_bits(dma_addr_p);
  4265. mregion_pl->shm_addr_msw = msm_audio_populate_upper_32_bits(dma_addr_p);
  4266. mregion_pl->mem_size_bytes = dma_buf_sz;
  4267. ret = afe_apr_send_pkt(mmap_region_cmd, NULL);
  4268. if (ret)
  4269. pr_err("%s: AFE memory map cmd failed %d\n",
  4270. __func__, ret);
  4271. kfree(mmap_region_cmd);
  4272. return ret;
  4273. }
  4274. /**
  4275. * q6afe_audio_client_buf_free_contiguous -
  4276. * frees the shared contiguous memory
  4277. *
  4278. * @dir: RX or TX direction of port
  4279. * @ac: AFE audio client handle
  4280. *
  4281. */
  4282. int q6afe_audio_client_buf_free_contiguous(unsigned int dir,
  4283. struct afe_audio_client *ac)
  4284. {
  4285. struct afe_audio_port_data *port;
  4286. int cnt = 0;
  4287. mutex_lock(&ac->cmd_lock);
  4288. port = &ac->port[dir];
  4289. if (!port->buf) {
  4290. pr_err("%s: buf is null\n", __func__);
  4291. mutex_unlock(&ac->cmd_lock);
  4292. return 0;
  4293. }
  4294. cnt = port->max_buf_cnt - 1;
  4295. if (port->buf[0].data) {
  4296. pr_debug("%s: data[%pK]phys[%pK][%pK] , client[%pK] handle[%pK]\n",
  4297. __func__,
  4298. port->buf[0].data,
  4299. &port->buf[0].phys,
  4300. &port->buf[0].phys,
  4301. port->buf[0].client,
  4302. port->buf[0].handle);
  4303. msm_audio_ion_free(port->buf[0].client, port->buf[0].handle);
  4304. port->buf[0].client = NULL;
  4305. port->buf[0].handle = NULL;
  4306. }
  4307. while (cnt >= 0) {
  4308. port->buf[cnt].data = NULL;
  4309. port->buf[cnt].phys = 0;
  4310. cnt--;
  4311. }
  4312. port->max_buf_cnt = 0;
  4313. kfree(port->buf);
  4314. port->buf = NULL;
  4315. mutex_unlock(&ac->cmd_lock);
  4316. return 0;
  4317. }
  4318. EXPORT_SYMBOL(q6afe_audio_client_buf_free_contiguous);
  4319. /**
  4320. * q6afe_audio_client_free -
  4321. * frees the audio client from AFE
  4322. *
  4323. * @ac: AFE audio client handle
  4324. *
  4325. */
  4326. void q6afe_audio_client_free(struct afe_audio_client *ac)
  4327. {
  4328. int loopcnt;
  4329. struct afe_audio_port_data *port;
  4330. if (!ac) {
  4331. pr_err("%s: audio client is NULL\n", __func__);
  4332. return;
  4333. }
  4334. for (loopcnt = 0; loopcnt <= OUT; loopcnt++) {
  4335. port = &ac->port[loopcnt];
  4336. if (!port->buf)
  4337. continue;
  4338. pr_debug("%s: loopcnt = %d\n", __func__, loopcnt);
  4339. q6afe_audio_client_buf_free_contiguous(loopcnt, ac);
  4340. }
  4341. kfree(ac);
  4342. }
  4343. EXPORT_SYMBOL(q6afe_audio_client_free);
  4344. /**
  4345. * afe_cmd_memory_unmap -
  4346. * command to unmap memory for AFE shared buffer
  4347. *
  4348. * @mem_map_handle: memory map handle to be unmapped
  4349. *
  4350. * Returns 0 on success or error on failure
  4351. */
  4352. int afe_cmd_memory_unmap(u32 mem_map_handle)
  4353. {
  4354. int ret = 0;
  4355. struct afe_service_cmd_shared_mem_unmap_regions mregion;
  4356. int index = 0;
  4357. pr_debug("%s: handle 0x%x\n", __func__, mem_map_handle);
  4358. if (this_afe.apr == NULL) {
  4359. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4360. 0xFFFFFFFF, &this_afe);
  4361. pr_debug("%s: Register AFE\n", __func__);
  4362. if (this_afe.apr == NULL) {
  4363. pr_err("%s: Unable to register AFE\n", __func__);
  4364. ret = -ENODEV;
  4365. return ret;
  4366. }
  4367. rtac_set_afe_handle(this_afe.apr);
  4368. }
  4369. mregion.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4370. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4371. mregion.hdr.pkt_size = sizeof(mregion);
  4372. mregion.hdr.src_port = 0;
  4373. mregion.hdr.dest_port = 0;
  4374. mregion.hdr.token = 0;
  4375. mregion.hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS;
  4376. mregion.mem_map_handle = mem_map_handle;
  4377. /* Todo */
  4378. index = mregion.hdr.token = IDX_RSVD_2;
  4379. atomic_set(&this_afe.status, 0);
  4380. ret = afe_apr_send_pkt(&mregion, &this_afe.wait[index]);
  4381. if (ret)
  4382. pr_err("%s: AFE memory unmap cmd failed %d\n",
  4383. __func__, ret);
  4384. return ret;
  4385. }
  4386. EXPORT_SYMBOL(afe_cmd_memory_unmap);
  4387. int afe_cmd_memory_unmap_nowait(u32 mem_map_handle)
  4388. {
  4389. int ret = 0;
  4390. struct afe_service_cmd_shared_mem_unmap_regions mregion;
  4391. pr_debug("%s: handle 0x%x\n", __func__, mem_map_handle);
  4392. if (this_afe.apr == NULL) {
  4393. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4394. 0xFFFFFFFF, &this_afe);
  4395. pr_debug("%s: Register AFE\n", __func__);
  4396. if (this_afe.apr == NULL) {
  4397. pr_err("%s: Unable to register AFE\n", __func__);
  4398. ret = -ENODEV;
  4399. return ret;
  4400. }
  4401. rtac_set_afe_handle(this_afe.apr);
  4402. }
  4403. mregion.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4404. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4405. mregion.hdr.pkt_size = sizeof(mregion);
  4406. mregion.hdr.src_port = 0;
  4407. mregion.hdr.dest_port = 0;
  4408. mregion.hdr.token = 0;
  4409. mregion.hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS;
  4410. mregion.mem_map_handle = mem_map_handle;
  4411. ret = afe_apr_send_pkt(&mregion, NULL);
  4412. if (ret)
  4413. pr_err("%s: AFE memory unmap cmd failed %d\n",
  4414. __func__, ret);
  4415. return ret;
  4416. }
  4417. /**
  4418. * afe_register_get_events -
  4419. * register for events from proxy port
  4420. *
  4421. * @port_id: Port ID to register events
  4422. * @cb: callback function to invoke for events from proxy port
  4423. * @private_data: private data to sent back in callback fn
  4424. *
  4425. * Returns 0 on success or error on failure
  4426. */
  4427. int afe_register_get_events(u16 port_id,
  4428. void (*cb)(uint32_t opcode,
  4429. uint32_t token, uint32_t *payload, void *priv),
  4430. void *private_data)
  4431. {
  4432. int ret = 0;
  4433. struct afe_service_cmd_register_rt_port_driver rtproxy;
  4434. pr_debug("%s: port_id: 0x%x\n", __func__, port_id);
  4435. if (this_afe.apr == NULL) {
  4436. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4437. 0xFFFFFFFF, &this_afe);
  4438. pr_debug("%s: Register AFE\n", __func__);
  4439. if (this_afe.apr == NULL) {
  4440. pr_err("%s: Unable to register AFE\n", __func__);
  4441. ret = -ENODEV;
  4442. return ret;
  4443. }
  4444. rtac_set_afe_handle(this_afe.apr);
  4445. }
  4446. if ((port_id == RT_PROXY_DAI_002_RX) ||
  4447. (port_id == RT_PROXY_DAI_001_TX)) {
  4448. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4449. } else {
  4450. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  4451. return -EINVAL;
  4452. }
  4453. if (port_id == RT_PROXY_PORT_001_TX) {
  4454. this_afe.tx_cb = cb;
  4455. this_afe.tx_private_data = private_data;
  4456. } else if (port_id == RT_PROXY_PORT_001_RX) {
  4457. this_afe.rx_cb = cb;
  4458. this_afe.rx_private_data = private_data;
  4459. }
  4460. rtproxy.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4461. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4462. rtproxy.hdr.pkt_size = sizeof(rtproxy);
  4463. rtproxy.hdr.src_port = 1;
  4464. rtproxy.hdr.dest_port = 1;
  4465. rtproxy.hdr.opcode = AFE_SERVICE_CMD_REGISTER_RT_PORT_DRIVER;
  4466. rtproxy.port_id = port_id;
  4467. rtproxy.reserved = 0;
  4468. ret = afe_apr_send_pkt(&rtproxy, NULL);
  4469. if (ret)
  4470. pr_err("%s: AFE reg. rtproxy_event failed %d\n",
  4471. __func__, ret);
  4472. return ret;
  4473. }
  4474. EXPORT_SYMBOL(afe_register_get_events);
  4475. /**
  4476. * afe_unregister_get_events -
  4477. * unregister for events from proxy port
  4478. *
  4479. * @port_id: Port ID to unregister events
  4480. *
  4481. * Returns 0 on success or error on failure
  4482. */
  4483. int afe_unregister_get_events(u16 port_id)
  4484. {
  4485. int ret = 0;
  4486. struct afe_service_cmd_unregister_rt_port_driver rtproxy;
  4487. int index = 0;
  4488. pr_debug("%s:\n", __func__);
  4489. if (this_afe.apr == NULL) {
  4490. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4491. 0xFFFFFFFF, &this_afe);
  4492. pr_debug("%s: Register AFE\n", __func__);
  4493. if (this_afe.apr == NULL) {
  4494. pr_err("%s: Unable to register AFE\n", __func__);
  4495. ret = -ENODEV;
  4496. return ret;
  4497. }
  4498. rtac_set_afe_handle(this_afe.apr);
  4499. }
  4500. if ((port_id == RT_PROXY_DAI_002_RX) ||
  4501. (port_id == RT_PROXY_DAI_001_TX)) {
  4502. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4503. } else {
  4504. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  4505. return -EINVAL;
  4506. }
  4507. index = q6audio_get_port_index(port_id);
  4508. if (index < 0 || index >= AFE_MAX_PORTS) {
  4509. pr_err("%s: AFE port index[%d] invalid!\n",
  4510. __func__, index);
  4511. return -EINVAL;
  4512. }
  4513. ret = q6audio_validate_port(port_id);
  4514. if (ret < 0) {
  4515. pr_err("%s: Invalid port 0x%x ret %d", __func__, port_id, ret);
  4516. return -EINVAL;
  4517. }
  4518. rtproxy.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4519. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4520. rtproxy.hdr.pkt_size = sizeof(rtproxy);
  4521. rtproxy.hdr.src_port = 0;
  4522. rtproxy.hdr.dest_port = 0;
  4523. rtproxy.hdr.token = 0;
  4524. rtproxy.hdr.opcode = AFE_SERVICE_CMD_UNREGISTER_RT_PORT_DRIVER;
  4525. rtproxy.port_id = port_id;
  4526. rtproxy.reserved = 0;
  4527. rtproxy.hdr.token = index;
  4528. if (port_id == RT_PROXY_PORT_001_TX) {
  4529. this_afe.tx_cb = NULL;
  4530. this_afe.tx_private_data = NULL;
  4531. } else if (port_id == RT_PROXY_PORT_001_RX) {
  4532. this_afe.rx_cb = NULL;
  4533. this_afe.rx_private_data = NULL;
  4534. }
  4535. ret = afe_apr_send_pkt(&rtproxy, &this_afe.wait[index]);
  4536. if (ret)
  4537. pr_err("%s: AFE enable Unreg. rtproxy_event failed %d\n",
  4538. __func__, ret);
  4539. return ret;
  4540. }
  4541. EXPORT_SYMBOL(afe_unregister_get_events);
  4542. /**
  4543. * afe_rt_proxy_port_write -
  4544. * command for AFE RT proxy port write
  4545. *
  4546. * @buf_addr_p: Physical buffer address with
  4547. * playback data to proxy port
  4548. * @mem_map_handle: memory map handle of write buffer
  4549. * @bytes: number of bytes to write
  4550. *
  4551. * Returns 0 on success or error on failure
  4552. */
  4553. int afe_rt_proxy_port_write(phys_addr_t buf_addr_p,
  4554. u32 mem_map_handle, int bytes)
  4555. {
  4556. int ret = 0;
  4557. struct afe_port_data_cmd_rt_proxy_port_write_v2 afecmd_wr;
  4558. if (this_afe.apr == NULL) {
  4559. pr_err("%s: register to AFE is not done\n", __func__);
  4560. ret = -ENODEV;
  4561. return ret;
  4562. }
  4563. pr_debug("%s: buf_addr_p = 0x%pK bytes = %d\n", __func__,
  4564. &buf_addr_p, bytes);
  4565. afecmd_wr.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4566. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4567. afecmd_wr.hdr.pkt_size = sizeof(afecmd_wr);
  4568. afecmd_wr.hdr.src_port = 0;
  4569. afecmd_wr.hdr.dest_port = 0;
  4570. afecmd_wr.hdr.token = 0;
  4571. afecmd_wr.hdr.opcode = AFE_PORT_DATA_CMD_RT_PROXY_PORT_WRITE_V2;
  4572. afecmd_wr.port_id = RT_PROXY_PORT_001_TX;
  4573. afecmd_wr.buffer_address_lsw = lower_32_bits(buf_addr_p);
  4574. afecmd_wr.buffer_address_msw =
  4575. msm_audio_populate_upper_32_bits(buf_addr_p);
  4576. afecmd_wr.mem_map_handle = mem_map_handle;
  4577. afecmd_wr.available_bytes = bytes;
  4578. afecmd_wr.reserved = 0;
  4579. ret = afe_apr_send_pkt(&afecmd_wr, NULL);
  4580. if (ret)
  4581. pr_err("%s: AFE rtproxy write to port 0x%x failed %d\n",
  4582. __func__, afecmd_wr.port_id, ret);
  4583. return ret;
  4584. }
  4585. EXPORT_SYMBOL(afe_rt_proxy_port_write);
  4586. /**
  4587. * afe_rt_proxy_port_read -
  4588. * command for AFE RT proxy port read
  4589. *
  4590. * @buf_addr_p: Physical buffer address to fill read data
  4591. * @mem_map_handle: memory map handle for buffer read
  4592. * @bytes: number of bytes to read
  4593. *
  4594. * Returns 0 on success or error on failure
  4595. */
  4596. int afe_rt_proxy_port_read(phys_addr_t buf_addr_p,
  4597. u32 mem_map_handle, int bytes)
  4598. {
  4599. int ret = 0;
  4600. struct afe_port_data_cmd_rt_proxy_port_read_v2 afecmd_rd;
  4601. if (this_afe.apr == NULL) {
  4602. pr_err("%s: register to AFE is not done\n", __func__);
  4603. ret = -ENODEV;
  4604. return ret;
  4605. }
  4606. pr_debug("%s: buf_addr_p = 0x%pK bytes = %d\n", __func__,
  4607. &buf_addr_p, bytes);
  4608. afecmd_rd.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4609. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4610. afecmd_rd.hdr.pkt_size = sizeof(afecmd_rd);
  4611. afecmd_rd.hdr.src_port = 0;
  4612. afecmd_rd.hdr.dest_port = 0;
  4613. afecmd_rd.hdr.token = 0;
  4614. afecmd_rd.hdr.opcode = AFE_PORT_DATA_CMD_RT_PROXY_PORT_READ_V2;
  4615. afecmd_rd.port_id = RT_PROXY_PORT_001_RX;
  4616. afecmd_rd.buffer_address_lsw = lower_32_bits(buf_addr_p);
  4617. afecmd_rd.buffer_address_msw =
  4618. msm_audio_populate_upper_32_bits(buf_addr_p);
  4619. afecmd_rd.available_bytes = bytes;
  4620. afecmd_rd.mem_map_handle = mem_map_handle;
  4621. ret = afe_apr_send_pkt(&afecmd_rd, NULL);
  4622. if (ret)
  4623. pr_err("%s: AFE rtproxy read cmd to port 0x%x failed %d\n",
  4624. __func__, afecmd_rd.port_id, ret);
  4625. return ret;
  4626. }
  4627. EXPORT_SYMBOL(afe_rt_proxy_port_read);
  4628. #ifdef CONFIG_DEBUG_FS
  4629. static struct dentry *debugfs_afelb;
  4630. static struct dentry *debugfs_afelb_gain;
  4631. static int afe_debug_open(struct inode *inode, struct file *file)
  4632. {
  4633. file->private_data = inode->i_private;
  4634. pr_info("%s: debug intf %s\n", __func__, (char *) file->private_data);
  4635. return 0;
  4636. }
  4637. static int afe_get_parameters(char *buf, long int *param1, int num_of_par)
  4638. {
  4639. char *token;
  4640. int base, cnt;
  4641. token = strsep(&buf, " ");
  4642. for (cnt = 0; cnt < num_of_par; cnt++) {
  4643. if (token != NULL) {
  4644. if ((token[1] == 'x') || (token[1] == 'X'))
  4645. base = 16;
  4646. else
  4647. base = 10;
  4648. if (kstrtoul(token, base, &param1[cnt]) != 0) {
  4649. pr_err("%s: kstrtoul failed\n",
  4650. __func__);
  4651. return -EINVAL;
  4652. }
  4653. token = strsep(&buf, " ");
  4654. } else {
  4655. pr_err("%s: token NULL\n", __func__);
  4656. return -EINVAL;
  4657. }
  4658. }
  4659. return 0;
  4660. }
  4661. #define AFE_LOOPBACK_ON (1)
  4662. #define AFE_LOOPBACK_OFF (0)
  4663. static ssize_t afe_debug_write(struct file *filp,
  4664. const char __user *ubuf, size_t cnt, loff_t *ppos)
  4665. {
  4666. char *lb_str = filp->private_data;
  4667. char lbuf[32];
  4668. int rc;
  4669. unsigned long param[5];
  4670. if (cnt > sizeof(lbuf) - 1) {
  4671. pr_err("%s: cnt %zd size %zd\n", __func__, cnt, sizeof(lbuf)-1);
  4672. return -EINVAL;
  4673. }
  4674. rc = copy_from_user(lbuf, ubuf, cnt);
  4675. if (rc) {
  4676. pr_err("%s: copy from user failed %d\n", __func__, rc);
  4677. return -EFAULT;
  4678. }
  4679. lbuf[cnt] = '\0';
  4680. if (!strcmp(lb_str, "afe_loopback")) {
  4681. rc = afe_get_parameters(lbuf, param, 3);
  4682. if (!rc) {
  4683. pr_info("%s: %lu %lu %lu\n", lb_str, param[0], param[1],
  4684. param[2]);
  4685. if ((param[0] != AFE_LOOPBACK_ON) && (param[0] !=
  4686. AFE_LOOPBACK_OFF)) {
  4687. pr_err("%s: Error, parameter 0 incorrect\n",
  4688. __func__);
  4689. rc = -EINVAL;
  4690. goto afe_error;
  4691. }
  4692. if ((q6audio_validate_port(param[1]) < 0) ||
  4693. (q6audio_validate_port(param[2])) < 0) {
  4694. pr_err("%s: Error, invalid afe port\n",
  4695. __func__);
  4696. }
  4697. if (this_afe.apr == NULL) {
  4698. pr_err("%s: Error, AFE not opened\n", __func__);
  4699. rc = -EINVAL;
  4700. } else {
  4701. rc = afe_loopback(param[0], param[1], param[2]);
  4702. }
  4703. } else {
  4704. pr_err("%s: Error, invalid parameters\n", __func__);
  4705. rc = -EINVAL;
  4706. }
  4707. } else if (!strcmp(lb_str, "afe_loopback_gain")) {
  4708. rc = afe_get_parameters(lbuf, param, 2);
  4709. if (!rc) {
  4710. pr_info("%s: %s %lu %lu\n",
  4711. __func__, lb_str, param[0], param[1]);
  4712. rc = q6audio_validate_port(param[0]);
  4713. if (rc < 0) {
  4714. pr_err("%s: Error, invalid afe port %d %lu\n",
  4715. __func__, rc, param[0]);
  4716. rc = -EINVAL;
  4717. goto afe_error;
  4718. }
  4719. if (param[1] > 100) {
  4720. pr_err("%s: Error, volume should be 0 to 100 percentage param = %lu\n",
  4721. __func__, param[1]);
  4722. rc = -EINVAL;
  4723. goto afe_error;
  4724. }
  4725. param[1] = (Q6AFE_MAX_VOLUME * param[1]) / 100;
  4726. if (this_afe.apr == NULL) {
  4727. pr_err("%s: Error, AFE not opened\n", __func__);
  4728. rc = -EINVAL;
  4729. } else {
  4730. rc = afe_loopback_gain(param[0], param[1]);
  4731. }
  4732. } else {
  4733. pr_err("%s: Error, invalid parameters\n", __func__);
  4734. rc = -EINVAL;
  4735. }
  4736. }
  4737. afe_error:
  4738. if (rc == 0)
  4739. rc = cnt;
  4740. else
  4741. pr_err("%s: rc = %d\n", __func__, rc);
  4742. return rc;
  4743. }
  4744. static const struct file_operations afe_debug_fops = {
  4745. .open = afe_debug_open,
  4746. .write = afe_debug_write
  4747. };
  4748. static void config_debug_fs_init(void)
  4749. {
  4750. debugfs_afelb = debugfs_create_file("afe_loopback",
  4751. 0664, NULL, (void *) "afe_loopback",
  4752. &afe_debug_fops);
  4753. debugfs_afelb_gain = debugfs_create_file("afe_loopback_gain",
  4754. 0664, NULL, (void *) "afe_loopback_gain",
  4755. &afe_debug_fops);
  4756. }
  4757. static void config_debug_fs_exit(void)
  4758. {
  4759. debugfs_remove(debugfs_afelb);
  4760. debugfs_remove(debugfs_afelb_gain);
  4761. }
  4762. #else
  4763. static void config_debug_fs_init(void)
  4764. {
  4765. }
  4766. static void config_debug_fs_exit(void)
  4767. {
  4768. }
  4769. #endif
  4770. /**
  4771. * afe_set_dtmf_gen_rx_portid -
  4772. * Set port_id for DTMF tone generation
  4773. *
  4774. * @port_id: AFE port id
  4775. * @set: set or reset port id value for dtmf gen
  4776. *
  4777. */
  4778. void afe_set_dtmf_gen_rx_portid(u16 port_id, int set)
  4779. {
  4780. if (set)
  4781. this_afe.dtmf_gen_rx_portid = port_id;
  4782. else if (this_afe.dtmf_gen_rx_portid == port_id)
  4783. this_afe.dtmf_gen_rx_portid = -1;
  4784. }
  4785. EXPORT_SYMBOL(afe_set_dtmf_gen_rx_portid);
  4786. /**
  4787. * afe_dtmf_generate_rx - command to generate AFE DTMF RX
  4788. *
  4789. * @duration_in_ms: Duration in ms for dtmf tone
  4790. * @high_freq: Higher frequency for dtmf
  4791. * @low_freq: lower frequency for dtmf
  4792. * @gain: Gain value for DTMF tone
  4793. *
  4794. * Returns 0 on success, appropriate error code otherwise
  4795. */
  4796. int afe_dtmf_generate_rx(int64_t duration_in_ms,
  4797. uint16_t high_freq,
  4798. uint16_t low_freq, uint16_t gain)
  4799. {
  4800. int ret = 0;
  4801. int index = 0;
  4802. struct afe_dtmf_generation_command cmd_dtmf;
  4803. pr_debug("%s: DTMF AFE Gen\n", __func__);
  4804. if (afe_validate_port(this_afe.dtmf_gen_rx_portid) < 0) {
  4805. pr_err("%s: Failed : Invalid Port id = 0x%x\n",
  4806. __func__, this_afe.dtmf_gen_rx_portid);
  4807. ret = -EINVAL;
  4808. goto fail_cmd;
  4809. }
  4810. if (this_afe.apr == NULL) {
  4811. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4812. 0xFFFFFFFF, &this_afe);
  4813. pr_debug("%s: Register AFE\n", __func__);
  4814. if (this_afe.apr == NULL) {
  4815. pr_err("%s: Unable to register AFE\n", __func__);
  4816. ret = -ENODEV;
  4817. return ret;
  4818. }
  4819. rtac_set_afe_handle(this_afe.apr);
  4820. }
  4821. pr_debug("%s: dur=%lld: hfreq=%d lfreq=%d gain=%d portid=0x%x\n",
  4822. __func__,
  4823. duration_in_ms, high_freq, low_freq, gain,
  4824. this_afe.dtmf_gen_rx_portid);
  4825. cmd_dtmf.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4826. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4827. cmd_dtmf.hdr.pkt_size = sizeof(cmd_dtmf);
  4828. cmd_dtmf.hdr.src_port = 0;
  4829. cmd_dtmf.hdr.dest_port = 0;
  4830. cmd_dtmf.hdr.token = 0;
  4831. cmd_dtmf.hdr.opcode = AFE_PORTS_CMD_DTMF_CTL;
  4832. cmd_dtmf.duration_in_ms = duration_in_ms;
  4833. cmd_dtmf.high_freq = high_freq;
  4834. cmd_dtmf.low_freq = low_freq;
  4835. cmd_dtmf.gain = gain;
  4836. cmd_dtmf.num_ports = 1;
  4837. cmd_dtmf.port_ids = q6audio_get_port_id(this_afe.dtmf_gen_rx_portid);
  4838. atomic_set(&this_afe.state, 1);
  4839. atomic_set(&this_afe.status, 0);
  4840. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &cmd_dtmf);
  4841. if (ret < 0) {
  4842. pr_err("%s: AFE DTMF failed for num_ports:%d ids:0x%x\n",
  4843. __func__, cmd_dtmf.num_ports, cmd_dtmf.port_ids);
  4844. ret = -EINVAL;
  4845. goto fail_cmd;
  4846. }
  4847. index = q6audio_get_port_index(this_afe.dtmf_gen_rx_portid);
  4848. if (index < 0 || index >= AFE_MAX_PORTS) {
  4849. pr_err("%s: AFE port index[%d] invalid!\n",
  4850. __func__, index);
  4851. ret = -EINVAL;
  4852. goto fail_cmd;
  4853. }
  4854. ret = wait_event_timeout(this_afe.wait[index],
  4855. (atomic_read(&this_afe.state) == 0),
  4856. msecs_to_jiffies(TIMEOUT_MS));
  4857. if (!ret) {
  4858. pr_err("%s: wait_event timeout\n", __func__);
  4859. ret = -EINVAL;
  4860. goto fail_cmd;
  4861. }
  4862. if (atomic_read(&this_afe.status) > 0) {
  4863. pr_err("%s: config cmd failed [%s]\n",
  4864. __func__, adsp_err_get_err_str(
  4865. atomic_read(&this_afe.status)));
  4866. ret = adsp_err_get_lnx_err_code(
  4867. atomic_read(&this_afe.status));
  4868. goto fail_cmd;
  4869. }
  4870. return 0;
  4871. fail_cmd:
  4872. pr_err("%s: failed %d\n", __func__, ret);
  4873. return ret;
  4874. }
  4875. EXPORT_SYMBOL(afe_dtmf_generate_rx);
  4876. static int afe_sidetone_iir(u16 tx_port_id)
  4877. {
  4878. struct afe_loopback_iir_cfg_v2 iir_sidetone;
  4879. int ret;
  4880. int index = 0;
  4881. uint16_t size = 0;
  4882. int cal_index = AFE_SIDETONE_IIR_CAL;
  4883. int iir_pregain = 0;
  4884. int iir_num_biquad_stages = 0;
  4885. int iir_enable;
  4886. struct cal_block_data *cal_block;
  4887. int mid;
  4888. memset(&iir_sidetone, 0, sizeof(iir_sidetone));
  4889. index = q6audio_get_port_index(tx_port_id);
  4890. iir_sidetone.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4891. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4892. iir_sidetone.hdr.pkt_size = sizeof(iir_sidetone);
  4893. iir_sidetone.hdr.src_port = 0;
  4894. iir_sidetone.hdr.dest_port = 0;
  4895. iir_sidetone.hdr.token = index;
  4896. iir_sidetone.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  4897. iir_sidetone.param.port_id = tx_port_id;
  4898. iir_sidetone.param.payload_address_lsw = 0x00;
  4899. iir_sidetone.param.payload_address_msw = 0x00;
  4900. iir_sidetone.param.mem_map_handle = 0x00;
  4901. if (this_afe.cal_data[cal_index] == NULL) {
  4902. pr_err("%s: cal data is NULL\n", __func__);
  4903. ret = -EINVAL;
  4904. goto done;
  4905. }
  4906. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  4907. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  4908. if (cal_block == NULL) {
  4909. pr_err("%s: cal_block not found\n ", __func__);
  4910. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  4911. ret = -EINVAL;
  4912. goto done;
  4913. }
  4914. iir_pregain = ((struct audio_cal_info_sidetone_iir *)
  4915. cal_block->cal_info)->pregain;
  4916. iir_enable = ((struct audio_cal_info_sidetone_iir *)
  4917. cal_block->cal_info)->iir_enable;
  4918. iir_num_biquad_stages = ((struct audio_cal_info_sidetone_iir *)
  4919. cal_block->cal_info)->num_biquad_stages;
  4920. mid = ((struct audio_cal_info_sidetone_iir *)
  4921. cal_block->cal_info)->mid;
  4922. /*
  4923. * calculate the actual size of payload based on no of stages
  4924. * enabled in calibration
  4925. */
  4926. size = (MAX_SIDETONE_IIR_DATA_SIZE / MAX_NO_IIR_FILTER_STAGE) *
  4927. iir_num_biquad_stages;
  4928. /*
  4929. * For an odd number of stages, 2 bytes of padding are
  4930. * required at the end of the payload.
  4931. */
  4932. if (iir_num_biquad_stages % 2) {
  4933. pr_debug("%s: adding 2 to size:%d\n", __func__, size);
  4934. size = size + 2;
  4935. }
  4936. memcpy(&iir_sidetone.st_iir_filter_config_data.iir_config,
  4937. &((struct audio_cal_info_sidetone_iir *)
  4938. cal_block->cal_info)->iir_config,
  4939. sizeof(iir_sidetone.st_iir_filter_config_data.iir_config));
  4940. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  4941. /*
  4942. * Calculate the payload size for setparams command
  4943. */
  4944. iir_sidetone.param.payload_size = (sizeof(iir_sidetone) -
  4945. sizeof(struct apr_hdr) -
  4946. sizeof(struct afe_port_cmd_set_param_v2) -
  4947. (MAX_SIDETONE_IIR_DATA_SIZE - size));
  4948. pr_debug("%s: payload size :%d\n", __func__,
  4949. iir_sidetone.param.payload_size);
  4950. /*
  4951. * Set IIR enable params
  4952. */
  4953. iir_sidetone.st_iir_enable_pdata.module_id = mid;
  4954. iir_sidetone.st_iir_enable_pdata.param_id =
  4955. AFE_PARAM_ID_ENABLE;
  4956. iir_sidetone.st_iir_enable_pdata.param_size =
  4957. sizeof(iir_sidetone.st_iir_mode_enable_data);
  4958. iir_sidetone.st_iir_mode_enable_data.enable = iir_enable;
  4959. /*
  4960. * Set IIR filter config params
  4961. */
  4962. iir_sidetone.st_iir_filter_config_pdata.module_id = mid;
  4963. iir_sidetone.st_iir_filter_config_pdata.param_id =
  4964. AFE_PARAM_ID_SIDETONE_IIR_FILTER_CONFIG;
  4965. iir_sidetone.st_iir_filter_config_pdata.param_size =
  4966. sizeof(iir_sidetone.st_iir_filter_config_data.num_biquad_stages)
  4967. +
  4968. sizeof(iir_sidetone.st_iir_filter_config_data.pregain) + size;
  4969. iir_sidetone.st_iir_filter_config_pdata.reserved = 0;
  4970. iir_sidetone.st_iir_filter_config_data.num_biquad_stages =
  4971. iir_num_biquad_stages;
  4972. iir_sidetone.st_iir_filter_config_data.pregain = iir_pregain;
  4973. pr_debug("%s: tx(0x%x)mid(0x%x)iir_en(%d)stg(%d)gain(0x%x)size(%d)\n",
  4974. __func__, tx_port_id, mid,
  4975. iir_sidetone.st_iir_mode_enable_data.enable,
  4976. iir_sidetone.st_iir_filter_config_data.num_biquad_stages,
  4977. iir_sidetone.st_iir_filter_config_data.pregain,
  4978. iir_sidetone.st_iir_filter_config_pdata.param_size);
  4979. ret = afe_apr_send_pkt(&iir_sidetone, &this_afe.wait[index]);
  4980. if (ret)
  4981. pr_err("%s: AFE sidetone failed for tx_port(0x%x)\n",
  4982. __func__, tx_port_id);
  4983. done:
  4984. return ret;
  4985. }
  4986. static int afe_sidetone(u16 tx_port_id, u16 rx_port_id, bool enable)
  4987. {
  4988. struct afe_st_loopback_cfg_v1 cmd_sidetone;
  4989. int ret;
  4990. int index;
  4991. int cal_index = AFE_SIDETONE_CAL;
  4992. int sidetone_gain;
  4993. int sidetone_enable;
  4994. struct cal_block_data *cal_block;
  4995. int mid = 0;
  4996. memset(&cmd_sidetone, 0, sizeof(cmd_sidetone));
  4997. if (this_afe.cal_data[cal_index] == NULL) {
  4998. pr_err("%s: cal data is NULL\n", __func__);
  4999. ret = -EINVAL;
  5000. goto done;
  5001. }
  5002. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  5003. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  5004. if (cal_block == NULL) {
  5005. pr_err("%s: cal_block not found\n", __func__);
  5006. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  5007. ret = -EINVAL;
  5008. goto done;
  5009. }
  5010. sidetone_gain = ((struct audio_cal_info_sidetone *)
  5011. cal_block->cal_info)->gain;
  5012. sidetone_enable = ((struct audio_cal_info_sidetone *)
  5013. cal_block->cal_info)->enable;
  5014. mid = ((struct audio_cal_info_sidetone *)
  5015. cal_block->cal_info)->mid;
  5016. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  5017. index = q6audio_get_port_index(tx_port_id);
  5018. cmd_sidetone.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5019. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5020. cmd_sidetone.hdr.pkt_size = sizeof(cmd_sidetone);
  5021. cmd_sidetone.hdr.src_port = 0;
  5022. cmd_sidetone.hdr.dest_port = 0;
  5023. cmd_sidetone.hdr.token = index;
  5024. cmd_sidetone.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  5025. cmd_sidetone.param.port_id = tx_port_id;
  5026. cmd_sidetone.param.payload_size = (sizeof(cmd_sidetone) -
  5027. sizeof(struct apr_hdr) -
  5028. sizeof(struct afe_port_cmd_set_param_v2));
  5029. cmd_sidetone.param.payload_address_lsw = 0x00;
  5030. cmd_sidetone.param.payload_address_msw = 0x00;
  5031. cmd_sidetone.param.mem_map_handle = 0x00;
  5032. cmd_sidetone.gain_pdata.module_id = AFE_MODULE_LOOPBACK;
  5033. cmd_sidetone.gain_pdata.param_id = AFE_PARAM_ID_LOOPBACK_GAIN_PER_PATH;
  5034. /*
  5035. * size of actual payload only
  5036. */
  5037. cmd_sidetone.gain_pdata.param_size = sizeof(
  5038. struct afe_loopback_sidetone_gain);
  5039. cmd_sidetone.gain_data.rx_port_id = rx_port_id;
  5040. cmd_sidetone.gain_data.gain = sidetone_gain;
  5041. cmd_sidetone.cfg_pdata.module_id = AFE_MODULE_LOOPBACK;
  5042. cmd_sidetone.cfg_pdata.param_id = AFE_PARAM_ID_LOOPBACK_CONFIG;
  5043. /*
  5044. * size of actual payload only
  5045. */
  5046. cmd_sidetone.cfg_pdata.param_size = sizeof(struct loopback_cfg_data);
  5047. cmd_sidetone.cfg_data.loopback_cfg_minor_version =
  5048. AFE_API_VERSION_LOOPBACK_CONFIG;
  5049. cmd_sidetone.cfg_data.dst_port_id = rx_port_id;
  5050. cmd_sidetone.cfg_data.routing_mode = LB_MODE_SIDETONE;
  5051. cmd_sidetone.cfg_data.enable = enable;
  5052. pr_debug("%s rx(0x%x) tx(0x%x) enable(%d) mid(0x%x) gain(%d) sidetone_enable(%d)\n",
  5053. __func__, rx_port_id, tx_port_id,
  5054. enable, mid, sidetone_gain, sidetone_enable);
  5055. ret = afe_apr_send_pkt(&cmd_sidetone, &this_afe.wait[index]);
  5056. if (ret)
  5057. pr_err("%s: AFE sidetone send failed for tx_port:%d rx_port:%d ret:%d\n",
  5058. __func__, tx_port_id, rx_port_id, ret);
  5059. done:
  5060. return ret;
  5061. }
  5062. int afe_sidetone_enable(u16 tx_port_id, u16 rx_port_id, bool enable)
  5063. {
  5064. int ret;
  5065. int index;
  5066. index = q6audio_get_port_index(rx_port_id);
  5067. if (index < 0 || index >= AFE_MAX_PORTS) {
  5068. pr_err("%s: AFE port index[%d] invalid!\n",
  5069. __func__, index);
  5070. ret = -EINVAL;
  5071. goto done;
  5072. }
  5073. if (q6audio_validate_port(rx_port_id) < 0) {
  5074. pr_err("%s: Invalid port 0x%x\n",
  5075. __func__, rx_port_id);
  5076. ret = -EINVAL;
  5077. goto done;
  5078. }
  5079. index = q6audio_get_port_index(tx_port_id);
  5080. if (index < 0 || index >= AFE_MAX_PORTS) {
  5081. pr_err("%s: AFE port index[%d] invalid!\n",
  5082. __func__, index);
  5083. ret = -EINVAL;
  5084. goto done;
  5085. }
  5086. if (q6audio_validate_port(tx_port_id) < 0) {
  5087. pr_err("%s: Invalid port 0x%x\n",
  5088. __func__, tx_port_id);
  5089. ret = -EINVAL;
  5090. goto done;
  5091. }
  5092. if (enable) {
  5093. ret = afe_sidetone_iir(tx_port_id);
  5094. if (ret)
  5095. goto done;
  5096. }
  5097. ret = afe_sidetone(tx_port_id, rx_port_id, enable);
  5098. done:
  5099. return ret;
  5100. }
  5101. int afe_validate_port(u16 port_id)
  5102. {
  5103. int ret;
  5104. switch (port_id) {
  5105. case PRIMARY_I2S_RX:
  5106. case PRIMARY_I2S_TX:
  5107. case AFE_PORT_ID_PRIMARY_PCM_RX:
  5108. case AFE_PORT_ID_PRIMARY_PCM_TX:
  5109. case AFE_PORT_ID_SECONDARY_PCM_RX:
  5110. case AFE_PORT_ID_SECONDARY_PCM_TX:
  5111. case AFE_PORT_ID_TERTIARY_PCM_RX:
  5112. case AFE_PORT_ID_TERTIARY_PCM_TX:
  5113. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  5114. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  5115. case AFE_PORT_ID_QUINARY_PCM_RX:
  5116. case AFE_PORT_ID_QUINARY_PCM_TX:
  5117. case SECONDARY_I2S_RX:
  5118. case SECONDARY_I2S_TX:
  5119. case MI2S_RX:
  5120. case MI2S_TX:
  5121. case HDMI_RX:
  5122. case DISPLAY_PORT_RX:
  5123. case AFE_PORT_ID_SPDIF_RX:
  5124. case RSVD_2:
  5125. case RSVD_3:
  5126. case DIGI_MIC_TX:
  5127. case VOICE_RECORD_RX:
  5128. case VOICE_RECORD_TX:
  5129. case VOICE_PLAYBACK_TX:
  5130. case VOICE2_PLAYBACK_TX:
  5131. case SLIMBUS_0_RX:
  5132. case SLIMBUS_0_TX:
  5133. case SLIMBUS_1_RX:
  5134. case SLIMBUS_1_TX:
  5135. case SLIMBUS_2_RX:
  5136. case SLIMBUS_2_TX:
  5137. case SLIMBUS_3_RX:
  5138. case INT_BT_SCO_RX:
  5139. case INT_BT_SCO_TX:
  5140. case INT_BT_A2DP_RX:
  5141. case INT_FM_RX:
  5142. case INT_FM_TX:
  5143. case RT_PROXY_PORT_001_RX:
  5144. case RT_PROXY_PORT_001_TX:
  5145. case SLIMBUS_4_RX:
  5146. case SLIMBUS_4_TX:
  5147. case SLIMBUS_5_RX:
  5148. case SLIMBUS_6_RX:
  5149. case SLIMBUS_6_TX:
  5150. case SLIMBUS_7_RX:
  5151. case SLIMBUS_7_TX:
  5152. case SLIMBUS_8_RX:
  5153. case SLIMBUS_8_TX:
  5154. case AFE_PORT_ID_USB_RX:
  5155. case AFE_PORT_ID_USB_TX:
  5156. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  5157. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  5158. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  5159. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  5160. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  5161. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  5162. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  5163. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  5164. case AFE_PORT_ID_QUINARY_MI2S_RX:
  5165. case AFE_PORT_ID_QUINARY_MI2S_TX:
  5166. case AFE_PORT_ID_SENARY_MI2S_TX:
  5167. case AFE_PORT_ID_PRIMARY_TDM_RX:
  5168. case AFE_PORT_ID_PRIMARY_TDM_TX:
  5169. case AFE_PORT_ID_PRIMARY_TDM_RX_1:
  5170. case AFE_PORT_ID_PRIMARY_TDM_TX_1:
  5171. case AFE_PORT_ID_PRIMARY_TDM_RX_2:
  5172. case AFE_PORT_ID_PRIMARY_TDM_TX_2:
  5173. case AFE_PORT_ID_PRIMARY_TDM_RX_3:
  5174. case AFE_PORT_ID_PRIMARY_TDM_TX_3:
  5175. case AFE_PORT_ID_PRIMARY_TDM_RX_4:
  5176. case AFE_PORT_ID_PRIMARY_TDM_TX_4:
  5177. case AFE_PORT_ID_PRIMARY_TDM_RX_5:
  5178. case AFE_PORT_ID_PRIMARY_TDM_TX_5:
  5179. case AFE_PORT_ID_PRIMARY_TDM_RX_6:
  5180. case AFE_PORT_ID_PRIMARY_TDM_TX_6:
  5181. case AFE_PORT_ID_PRIMARY_TDM_RX_7:
  5182. case AFE_PORT_ID_PRIMARY_TDM_TX_7:
  5183. case AFE_PORT_ID_SECONDARY_TDM_RX:
  5184. case AFE_PORT_ID_SECONDARY_TDM_TX:
  5185. case AFE_PORT_ID_SECONDARY_TDM_RX_1:
  5186. case AFE_PORT_ID_SECONDARY_TDM_TX_1:
  5187. case AFE_PORT_ID_SECONDARY_TDM_RX_2:
  5188. case AFE_PORT_ID_SECONDARY_TDM_TX_2:
  5189. case AFE_PORT_ID_SECONDARY_TDM_RX_3:
  5190. case AFE_PORT_ID_SECONDARY_TDM_TX_3:
  5191. case AFE_PORT_ID_SECONDARY_TDM_RX_4:
  5192. case AFE_PORT_ID_SECONDARY_TDM_TX_4:
  5193. case AFE_PORT_ID_SECONDARY_TDM_RX_5:
  5194. case AFE_PORT_ID_SECONDARY_TDM_TX_5:
  5195. case AFE_PORT_ID_SECONDARY_TDM_RX_6:
  5196. case AFE_PORT_ID_SECONDARY_TDM_TX_6:
  5197. case AFE_PORT_ID_SECONDARY_TDM_RX_7:
  5198. case AFE_PORT_ID_SECONDARY_TDM_TX_7:
  5199. case AFE_PORT_ID_TERTIARY_TDM_RX:
  5200. case AFE_PORT_ID_TERTIARY_TDM_TX:
  5201. case AFE_PORT_ID_TERTIARY_TDM_RX_1:
  5202. case AFE_PORT_ID_TERTIARY_TDM_TX_1:
  5203. case AFE_PORT_ID_TERTIARY_TDM_RX_2:
  5204. case AFE_PORT_ID_TERTIARY_TDM_TX_2:
  5205. case AFE_PORT_ID_TERTIARY_TDM_RX_3:
  5206. case AFE_PORT_ID_TERTIARY_TDM_TX_3:
  5207. case AFE_PORT_ID_TERTIARY_TDM_RX_4:
  5208. case AFE_PORT_ID_TERTIARY_TDM_TX_4:
  5209. case AFE_PORT_ID_TERTIARY_TDM_RX_5:
  5210. case AFE_PORT_ID_TERTIARY_TDM_TX_5:
  5211. case AFE_PORT_ID_TERTIARY_TDM_RX_6:
  5212. case AFE_PORT_ID_TERTIARY_TDM_TX_6:
  5213. case AFE_PORT_ID_TERTIARY_TDM_RX_7:
  5214. case AFE_PORT_ID_TERTIARY_TDM_TX_7:
  5215. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  5216. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  5217. case AFE_PORT_ID_QUATERNARY_TDM_RX_1:
  5218. case AFE_PORT_ID_QUATERNARY_TDM_TX_1:
  5219. case AFE_PORT_ID_QUATERNARY_TDM_RX_2:
  5220. case AFE_PORT_ID_QUATERNARY_TDM_TX_2:
  5221. case AFE_PORT_ID_QUATERNARY_TDM_RX_3:
  5222. case AFE_PORT_ID_QUATERNARY_TDM_TX_3:
  5223. case AFE_PORT_ID_QUATERNARY_TDM_RX_4:
  5224. case AFE_PORT_ID_QUATERNARY_TDM_TX_4:
  5225. case AFE_PORT_ID_QUATERNARY_TDM_RX_5:
  5226. case AFE_PORT_ID_QUATERNARY_TDM_TX_5:
  5227. case AFE_PORT_ID_QUATERNARY_TDM_RX_6:
  5228. case AFE_PORT_ID_QUATERNARY_TDM_TX_6:
  5229. case AFE_PORT_ID_QUATERNARY_TDM_RX_7:
  5230. case AFE_PORT_ID_QUATERNARY_TDM_TX_7:
  5231. case AFE_PORT_ID_QUINARY_TDM_RX:
  5232. case AFE_PORT_ID_QUINARY_TDM_TX:
  5233. case AFE_PORT_ID_QUINARY_TDM_RX_1:
  5234. case AFE_PORT_ID_QUINARY_TDM_TX_1:
  5235. case AFE_PORT_ID_QUINARY_TDM_RX_2:
  5236. case AFE_PORT_ID_QUINARY_TDM_TX_2:
  5237. case AFE_PORT_ID_QUINARY_TDM_RX_3:
  5238. case AFE_PORT_ID_QUINARY_TDM_TX_3:
  5239. case AFE_PORT_ID_QUINARY_TDM_RX_4:
  5240. case AFE_PORT_ID_QUINARY_TDM_TX_4:
  5241. case AFE_PORT_ID_QUINARY_TDM_RX_5:
  5242. case AFE_PORT_ID_QUINARY_TDM_TX_5:
  5243. case AFE_PORT_ID_QUINARY_TDM_RX_6:
  5244. case AFE_PORT_ID_QUINARY_TDM_TX_6:
  5245. case AFE_PORT_ID_QUINARY_TDM_RX_7:
  5246. case AFE_PORT_ID_QUINARY_TDM_TX_7:
  5247. case AFE_PORT_ID_INT0_MI2S_RX:
  5248. case AFE_PORT_ID_INT1_MI2S_RX:
  5249. case AFE_PORT_ID_INT2_MI2S_RX:
  5250. case AFE_PORT_ID_INT3_MI2S_RX:
  5251. case AFE_PORT_ID_INT4_MI2S_RX:
  5252. case AFE_PORT_ID_INT5_MI2S_RX:
  5253. case AFE_PORT_ID_INT6_MI2S_RX:
  5254. case AFE_PORT_ID_INT0_MI2S_TX:
  5255. case AFE_PORT_ID_INT1_MI2S_TX:
  5256. case AFE_PORT_ID_INT2_MI2S_TX:
  5257. case AFE_PORT_ID_INT3_MI2S_TX:
  5258. case AFE_PORT_ID_INT4_MI2S_TX:
  5259. case AFE_PORT_ID_INT5_MI2S_TX:
  5260. case AFE_PORT_ID_INT6_MI2S_TX:
  5261. {
  5262. ret = 0;
  5263. break;
  5264. }
  5265. default:
  5266. pr_err("%s: default ret 0x%x\n", __func__, port_id);
  5267. ret = -EINVAL;
  5268. }
  5269. return ret;
  5270. }
  5271. int afe_convert_virtual_to_portid(u16 port_id)
  5272. {
  5273. int ret;
  5274. /*
  5275. * if port_id is virtual, convert to physical..
  5276. * if port_id is already physical, return physical
  5277. */
  5278. if (afe_validate_port(port_id) < 0) {
  5279. if (port_id == RT_PROXY_DAI_001_RX ||
  5280. port_id == RT_PROXY_DAI_001_TX ||
  5281. port_id == RT_PROXY_DAI_002_RX ||
  5282. port_id == RT_PROXY_DAI_002_TX) {
  5283. ret = VIRTUAL_ID_TO_PORTID(port_id);
  5284. } else {
  5285. pr_err("%s: wrong port 0x%x\n",
  5286. __func__, port_id);
  5287. ret = -EINVAL;
  5288. }
  5289. } else
  5290. ret = port_id;
  5291. return ret;
  5292. }
  5293. int afe_port_stop_nowait(int port_id)
  5294. {
  5295. struct afe_port_cmd_device_stop stop;
  5296. int ret = 0;
  5297. if (this_afe.apr == NULL) {
  5298. pr_err("%s: AFE is already closed\n", __func__);
  5299. ret = -EINVAL;
  5300. goto fail_cmd;
  5301. }
  5302. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  5303. port_id = q6audio_convert_virtual_to_portid(port_id);
  5304. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5305. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5306. stop.hdr.pkt_size = sizeof(stop);
  5307. stop.hdr.src_port = 0;
  5308. stop.hdr.dest_port = 0;
  5309. stop.hdr.token = 0;
  5310. stop.hdr.opcode = AFE_PORT_CMD_DEVICE_STOP;
  5311. stop.port_id = port_id;
  5312. stop.reserved = 0;
  5313. ret = afe_apr_send_pkt(&stop, NULL);
  5314. if (ret)
  5315. pr_err("%s: AFE close failed %d\n", __func__, ret);
  5316. fail_cmd:
  5317. return ret;
  5318. }
  5319. /**
  5320. * afe_close - command to close AFE port
  5321. *
  5322. * @port_id: AFE port id
  5323. *
  5324. * Returns 0 on success, appropriate error code otherwise
  5325. */
  5326. int afe_close(int port_id)
  5327. {
  5328. struct afe_port_cmd_device_stop stop;
  5329. enum afe_mad_type mad_type;
  5330. int ret = 0;
  5331. int index = 0;
  5332. uint16_t port_index;
  5333. if (this_afe.apr == NULL) {
  5334. pr_err("%s: AFE is already closed\n", __func__);
  5335. if ((port_id == RT_PROXY_DAI_001_RX) ||
  5336. (port_id == RT_PROXY_DAI_002_TX))
  5337. pcm_afe_instance[port_id & 0x1] = 0;
  5338. if ((port_id == RT_PROXY_DAI_002_RX) ||
  5339. (port_id == RT_PROXY_DAI_001_TX))
  5340. proxy_afe_instance[port_id & 0x1] = 0;
  5341. afe_close_done[port_id & 0x1] = true;
  5342. ret = -EINVAL;
  5343. goto fail_cmd;
  5344. }
  5345. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  5346. if ((port_id == RT_PROXY_DAI_001_RX) ||
  5347. (port_id == RT_PROXY_DAI_002_TX)) {
  5348. pr_debug("%s: before decrementing pcm_afe_instance %d\n",
  5349. __func__, pcm_afe_instance[port_id & 0x1]);
  5350. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  5351. pcm_afe_instance[port_id & 0x1]--;
  5352. if ((!(pcm_afe_instance[port_id & 0x1] == 0 &&
  5353. proxy_afe_instance[port_id & 0x1] == 0)) ||
  5354. afe_close_done[port_id & 0x1] == true)
  5355. return 0;
  5356. afe_close_done[port_id & 0x1] = true;
  5357. }
  5358. if ((port_id == RT_PROXY_DAI_002_RX) ||
  5359. (port_id == RT_PROXY_DAI_001_TX)) {
  5360. pr_debug("%s: before decrementing proxy_afe_instance %d\n",
  5361. __func__, proxy_afe_instance[port_id & 0x1]);
  5362. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  5363. proxy_afe_instance[port_id & 0x1]--;
  5364. if ((!(pcm_afe_instance[port_id & 0x1] == 0 &&
  5365. proxy_afe_instance[port_id & 0x1] == 0)) ||
  5366. afe_close_done[port_id & 0x1] == true)
  5367. return 0;
  5368. afe_close_done[port_id & 0x1] = true;
  5369. }
  5370. port_id = q6audio_convert_virtual_to_portid(port_id);
  5371. index = q6audio_get_port_index(port_id);
  5372. if (index < 0 || index >= AFE_MAX_PORTS) {
  5373. pr_err("%s: AFE port index[%d] invalid!\n",
  5374. __func__, index);
  5375. return -EINVAL;
  5376. }
  5377. ret = q6audio_validate_port(port_id);
  5378. if (ret < 0) {
  5379. pr_warn("%s: Not a valid port id 0x%x ret %d\n",
  5380. __func__, port_id, ret);
  5381. return -EINVAL;
  5382. }
  5383. mad_type = afe_port_get_mad_type(port_id);
  5384. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  5385. mad_type);
  5386. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  5387. pr_debug("%s: Turn off MAD\n", __func__);
  5388. ret = afe_turn_onoff_hw_mad(mad_type, false);
  5389. if (ret) {
  5390. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  5391. __func__, ret);
  5392. return ret;
  5393. }
  5394. } else {
  5395. pr_debug("%s: Not a MAD port\n", __func__);
  5396. }
  5397. port_index = afe_get_port_index(port_id);
  5398. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  5399. this_afe.afe_sample_rates[port_index] = 0;
  5400. this_afe.topology[port_index] = 0;
  5401. this_afe.dev_acdb_id[port_index] = 0;
  5402. } else {
  5403. pr_err("%s: port %d\n", __func__, port_index);
  5404. ret = -EINVAL;
  5405. goto fail_cmd;
  5406. }
  5407. if ((port_id == this_afe.aanc_info.aanc_tx_port) &&
  5408. (this_afe.aanc_info.aanc_active)) {
  5409. memset(&this_afe.aanc_info, 0x00, sizeof(this_afe.aanc_info));
  5410. ret = afe_aanc_mod_enable(this_afe.apr, port_id, 0);
  5411. if (ret)
  5412. pr_err("%s: AFE mod disable failed %d\n",
  5413. __func__, ret);
  5414. }
  5415. /*
  5416. * even if ramp down configuration failed it is not serious enough to
  5417. * warrant bailaing out.
  5418. */
  5419. if (afe_spk_ramp_dn_cfg(port_id) < 0)
  5420. pr_err("%s: ramp down configuration failed\n", __func__);
  5421. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5422. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5423. stop.hdr.pkt_size = sizeof(stop);
  5424. stop.hdr.src_port = 0;
  5425. stop.hdr.dest_port = 0;
  5426. stop.hdr.token = index;
  5427. stop.hdr.opcode = AFE_PORT_CMD_DEVICE_STOP;
  5428. stop.port_id = q6audio_get_port_id(port_id);
  5429. stop.reserved = 0;
  5430. ret = afe_apr_send_pkt(&stop, &this_afe.wait[index]);
  5431. if (ret)
  5432. pr_err("%s: AFE close failed %d\n", __func__, ret);
  5433. fail_cmd:
  5434. return ret;
  5435. }
  5436. EXPORT_SYMBOL(afe_close);
  5437. int afe_set_digital_codec_core_clock(u16 port_id,
  5438. struct afe_digital_clk_cfg *cfg)
  5439. {
  5440. struct afe_lpass_digital_clk_config_command clk_cfg;
  5441. int index = 0;
  5442. int ret = 0;
  5443. if (!cfg) {
  5444. pr_err("%s: clock cfg is NULL\n", __func__);
  5445. ret = -EINVAL;
  5446. return ret;
  5447. }
  5448. ret = afe_q6_interface_prepare();
  5449. if (ret != 0) {
  5450. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5451. return ret;
  5452. }
  5453. clk_cfg.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5454. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5455. clk_cfg.hdr.pkt_size = sizeof(clk_cfg);
  5456. clk_cfg.hdr.src_port = 0;
  5457. clk_cfg.hdr.dest_port = 0;
  5458. clk_cfg.hdr.token = index;
  5459. clk_cfg.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  5460. /*default rx port is taken to enable the codec digital clock*/
  5461. clk_cfg.param.port_id = q6audio_get_port_id(port_id);
  5462. clk_cfg.param.payload_size = sizeof(clk_cfg) - sizeof(struct apr_hdr)
  5463. - sizeof(clk_cfg.param);
  5464. clk_cfg.param.payload_address_lsw = 0x00;
  5465. clk_cfg.param.payload_address_msw = 0x00;
  5466. clk_cfg.param.mem_map_handle = 0x00;
  5467. clk_cfg.pdata.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5468. clk_cfg.pdata.param_id = AFE_PARAM_ID_INTERNAL_DIGIATL_CDC_CLK_CONFIG;
  5469. clk_cfg.pdata.param_size = sizeof(clk_cfg.clk_cfg);
  5470. clk_cfg.clk_cfg = *cfg;
  5471. pr_debug("%s: Minor version =0x%x clk val = %d\n"
  5472. "clk root = 0x%x resrv = 0x%x\n",
  5473. __func__, cfg->i2s_cfg_minor_version,
  5474. cfg->clk_val, cfg->clk_root, cfg->reserved);
  5475. atomic_set(&this_afe.state, 1);
  5476. atomic_set(&this_afe.status, 0);
  5477. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &clk_cfg);
  5478. if (ret < 0) {
  5479. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  5480. __func__, port_id, ret);
  5481. ret = -EINVAL;
  5482. goto fail_cmd;
  5483. }
  5484. ret = wait_event_timeout(this_afe.wait[index],
  5485. (atomic_read(&this_afe.state) == 0),
  5486. msecs_to_jiffies(TIMEOUT_MS));
  5487. if (!ret) {
  5488. pr_err("%s: wait_event timeout\n", __func__);
  5489. ret = -EINVAL;
  5490. goto fail_cmd;
  5491. }
  5492. if (atomic_read(&this_afe.status) > 0) {
  5493. pr_err("%s: config cmd failed [%s]\n",
  5494. __func__, adsp_err_get_err_str(
  5495. atomic_read(&this_afe.status)));
  5496. ret = adsp_err_get_lnx_err_code(
  5497. atomic_read(&this_afe.status));
  5498. goto fail_cmd;
  5499. }
  5500. fail_cmd:
  5501. return ret;
  5502. }
  5503. /**
  5504. * afe_set_lpass_clock - Enable AFE lpass clock
  5505. *
  5506. * @port_id: AFE port id
  5507. * @cfg: pointer to clk set struct
  5508. *
  5509. * Returns 0 on success, appropriate error code otherwise
  5510. */
  5511. int afe_set_lpass_clock(u16 port_id, struct afe_clk_cfg *cfg)
  5512. {
  5513. struct afe_lpass_clk_config_command clk_cfg;
  5514. int index = 0;
  5515. int ret = 0;
  5516. if (!cfg) {
  5517. pr_err("%s: clock cfg is NULL\n", __func__);
  5518. ret = -EINVAL;
  5519. return ret;
  5520. }
  5521. index = q6audio_get_port_index(port_id);
  5522. if (index < 0 || index >= AFE_MAX_PORTS) {
  5523. pr_err("%s: AFE port index[%d] invalid!\n",
  5524. __func__, index);
  5525. return -EINVAL;
  5526. }
  5527. ret = q6audio_is_digital_pcm_interface(port_id);
  5528. if (ret < 0) {
  5529. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  5530. __func__, ret);
  5531. return -EINVAL;
  5532. }
  5533. ret = afe_q6_interface_prepare();
  5534. if (ret != 0) {
  5535. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5536. return ret;
  5537. }
  5538. mutex_lock(&this_afe.afe_cmd_lock);
  5539. clk_cfg.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5540. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5541. clk_cfg.hdr.pkt_size = sizeof(clk_cfg);
  5542. clk_cfg.hdr.src_port = 0;
  5543. clk_cfg.hdr.dest_port = 0;
  5544. clk_cfg.hdr.token = index;
  5545. clk_cfg.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  5546. clk_cfg.param.port_id = q6audio_get_port_id(port_id);
  5547. clk_cfg.param.payload_size = sizeof(clk_cfg) - sizeof(struct apr_hdr)
  5548. - sizeof(clk_cfg.param);
  5549. clk_cfg.param.payload_address_lsw = 0x00;
  5550. clk_cfg.param.payload_address_msw = 0x00;
  5551. clk_cfg.param.mem_map_handle = 0x00;
  5552. clk_cfg.pdata.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5553. clk_cfg.pdata.param_id = AFE_PARAM_ID_LPAIF_CLK_CONFIG;
  5554. clk_cfg.pdata.param_size = sizeof(clk_cfg.clk_cfg);
  5555. clk_cfg.clk_cfg = *cfg;
  5556. pr_debug("%s: Minor version =0x%x clk val1 = %d\n"
  5557. "clk val2 = %d, clk src = 0x%x\n"
  5558. "clk root = 0x%x clk mode = 0x%x resrv = 0x%x\n"
  5559. "port id = 0x%x\n",
  5560. __func__, cfg->i2s_cfg_minor_version,
  5561. cfg->clk_val1, cfg->clk_val2, cfg->clk_src,
  5562. cfg->clk_root, cfg->clk_set_mode,
  5563. cfg->reserved, q6audio_get_port_id(port_id));
  5564. atomic_set(&this_afe.state, 1);
  5565. atomic_set(&this_afe.status, 0);
  5566. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &clk_cfg);
  5567. if (ret < 0) {
  5568. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  5569. __func__, port_id, ret);
  5570. ret = -EINVAL;
  5571. goto fail_cmd;
  5572. }
  5573. ret = wait_event_timeout(this_afe.wait[index],
  5574. (atomic_read(&this_afe.state) == 0),
  5575. msecs_to_jiffies(TIMEOUT_MS));
  5576. if (!ret) {
  5577. pr_err("%s: wait_event timeout\n", __func__);
  5578. ret = -EINVAL;
  5579. goto fail_cmd;
  5580. }
  5581. if (atomic_read(&this_afe.status) > 0) {
  5582. pr_err("%s: config cmd failed [%s]\n",
  5583. __func__, adsp_err_get_err_str(
  5584. atomic_read(&this_afe.status)));
  5585. ret = adsp_err_get_lnx_err_code(
  5586. atomic_read(&this_afe.status));
  5587. goto fail_cmd;
  5588. }
  5589. fail_cmd:
  5590. mutex_unlock(&this_afe.afe_cmd_lock);
  5591. return ret;
  5592. }
  5593. EXPORT_SYMBOL(afe_set_lpass_clock);
  5594. /**
  5595. * afe_set_lpass_clk_cfg - Set AFE clk config
  5596. *
  5597. * @index: port index
  5598. * @cfg: pointer to clk set struct
  5599. *
  5600. * Returns 0 on success, appropriate error code otherwise
  5601. */
  5602. int afe_set_lpass_clk_cfg(int index, struct afe_clk_set *cfg)
  5603. {
  5604. struct afe_lpass_clk_config_command_v2 clk_cfg;
  5605. int ret = 0;
  5606. if (!cfg) {
  5607. pr_err("%s: clock cfg is NULL\n", __func__);
  5608. ret = -EINVAL;
  5609. return ret;
  5610. }
  5611. if (index < 0 || index >= AFE_MAX_PORTS) {
  5612. pr_err("%s: index[%d] invalid!\n", __func__, index);
  5613. return -EINVAL;
  5614. }
  5615. ret = afe_q6_interface_prepare();
  5616. if (ret != 0) {
  5617. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5618. return ret;
  5619. }
  5620. mutex_lock(&this_afe.afe_cmd_lock);
  5621. clk_cfg.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5622. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5623. clk_cfg.hdr.pkt_size = sizeof(clk_cfg);
  5624. clk_cfg.hdr.src_port = 0;
  5625. clk_cfg.hdr.dest_port = 0;
  5626. clk_cfg.hdr.token = index;
  5627. clk_cfg.hdr.opcode = AFE_SVC_CMD_SET_PARAM;
  5628. clk_cfg.param.payload_size = sizeof(clk_cfg) - sizeof(struct apr_hdr)
  5629. - sizeof(clk_cfg.param);
  5630. clk_cfg.param.payload_address_lsw = 0x00;
  5631. clk_cfg.param.payload_address_msw = 0x00;
  5632. clk_cfg.param.mem_map_handle = 0x00;
  5633. clk_cfg.pdata.module_id = AFE_MODULE_CLOCK_SET;
  5634. clk_cfg.pdata.param_id = AFE_PARAM_ID_CLOCK_SET;
  5635. clk_cfg.pdata.param_size = sizeof(clk_cfg.clk_cfg);
  5636. clk_cfg.clk_cfg = *cfg;
  5637. pr_debug("%s: Minor version =0x%x clk id = %d\n"
  5638. "clk freq (Hz) = %d, clk attri = 0x%x\n"
  5639. "clk root = 0x%x clk enable = 0x%x\n",
  5640. __func__, cfg->clk_set_minor_version,
  5641. cfg->clk_id, cfg->clk_freq_in_hz, cfg->clk_attri,
  5642. cfg->clk_root, cfg->enable);
  5643. atomic_set(&this_afe.state, 1);
  5644. atomic_set(&this_afe.status, 0);
  5645. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &clk_cfg);
  5646. if (ret < 0) {
  5647. pr_err("%s: AFE clk cfg failed with ret %d\n",
  5648. __func__, ret);
  5649. ret = -EINVAL;
  5650. goto fail_cmd;
  5651. }
  5652. ret = wait_event_timeout(this_afe.wait[index],
  5653. (atomic_read(&this_afe.state) == 0),
  5654. msecs_to_jiffies(TIMEOUT_MS));
  5655. if (!ret) {
  5656. pr_err("%s: wait_event timeout\n", __func__);
  5657. ret = -EINVAL;
  5658. goto fail_cmd;
  5659. } else {
  5660. /* set ret to 0 as no timeout happened */
  5661. ret = 0;
  5662. }
  5663. if (atomic_read(&this_afe.status) != 0) {
  5664. pr_err("%s: config cmd failed\n", __func__);
  5665. ret = -EINVAL;
  5666. goto fail_cmd;
  5667. }
  5668. fail_cmd:
  5669. mutex_unlock(&this_afe.afe_cmd_lock);
  5670. return ret;
  5671. }
  5672. EXPORT_SYMBOL(afe_set_lpass_clk_cfg);
  5673. /**
  5674. * afe_set_lpass_clock_v2 - Enable AFE lpass clock
  5675. *
  5676. * @port_id: AFE port id
  5677. * @cfg: pointer to clk set struct
  5678. *
  5679. * Returns 0 on success, appropriate error code otherwise
  5680. */
  5681. int afe_set_lpass_clock_v2(u16 port_id, struct afe_clk_set *cfg)
  5682. {
  5683. int index = 0;
  5684. int ret = 0;
  5685. index = q6audio_get_port_index(port_id);
  5686. if (index < 0 || index >= AFE_MAX_PORTS) {
  5687. pr_err("%s: AFE port index[%d] invalid!\n",
  5688. __func__, index);
  5689. return -EINVAL;
  5690. }
  5691. ret = q6audio_is_digital_pcm_interface(port_id);
  5692. if (ret < 0) {
  5693. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  5694. __func__, ret);
  5695. return -EINVAL;
  5696. }
  5697. ret = afe_set_lpass_clk_cfg(index, cfg);
  5698. if (ret)
  5699. pr_err("%s: afe_set_lpass_clk_cfg_v2 failed %d\n",
  5700. __func__, ret);
  5701. return ret;
  5702. }
  5703. EXPORT_SYMBOL(afe_set_lpass_clock_v2);
  5704. int afe_set_lpass_internal_digital_codec_clock(u16 port_id,
  5705. struct afe_digital_clk_cfg *cfg)
  5706. {
  5707. struct afe_lpass_digital_clk_config_command clk_cfg;
  5708. int index = 0;
  5709. int ret = 0;
  5710. if (!cfg) {
  5711. pr_err("%s: clock cfg is NULL\n", __func__);
  5712. ret = -EINVAL;
  5713. return ret;
  5714. }
  5715. index = q6audio_get_port_index(port_id);
  5716. if (index < 0 || index >= AFE_MAX_PORTS) {
  5717. pr_err("%s: AFE port index[%d] invalid!\n",
  5718. __func__, index);
  5719. return -EINVAL;
  5720. }
  5721. ret = q6audio_is_digital_pcm_interface(port_id);
  5722. if (ret < 0) {
  5723. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  5724. __func__, ret);
  5725. return -EINVAL;
  5726. }
  5727. ret = afe_q6_interface_prepare();
  5728. if (ret != 0) {
  5729. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5730. return ret;
  5731. }
  5732. clk_cfg.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5733. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5734. clk_cfg.hdr.pkt_size = sizeof(clk_cfg);
  5735. clk_cfg.hdr.src_port = 0;
  5736. clk_cfg.hdr.dest_port = 0;
  5737. clk_cfg.hdr.token = index;
  5738. clk_cfg.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  5739. clk_cfg.param.port_id = q6audio_get_port_id(port_id);
  5740. clk_cfg.param.payload_size = sizeof(clk_cfg) - sizeof(struct apr_hdr)
  5741. - sizeof(clk_cfg.param);
  5742. clk_cfg.param.payload_address_lsw = 0x00;
  5743. clk_cfg.param.payload_address_msw = 0x00;
  5744. clk_cfg.param.mem_map_handle = 0x00;
  5745. clk_cfg.pdata.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5746. clk_cfg.pdata.param_id = AFE_PARAM_ID_INTERNAL_DIGIATL_CDC_CLK_CONFIG;
  5747. clk_cfg.pdata.param_size = sizeof(clk_cfg.clk_cfg);
  5748. clk_cfg.clk_cfg = *cfg;
  5749. pr_debug("%s: Minor version =0x%x clk val = %d\n"
  5750. "clk root = 0x%x resrv = 0x%x port id = 0x%x\n",
  5751. __func__, cfg->i2s_cfg_minor_version,
  5752. cfg->clk_val, cfg->clk_root, cfg->reserved,
  5753. q6audio_get_port_id(port_id));
  5754. atomic_set(&this_afe.state, 1);
  5755. atomic_set(&this_afe.status, 0);
  5756. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &clk_cfg);
  5757. if (ret < 0) {
  5758. pr_err("%s: AFE enable for port 0x0x%x ret %d\n",
  5759. __func__, port_id, ret);
  5760. ret = -EINVAL;
  5761. goto fail_cmd;
  5762. }
  5763. ret = wait_event_timeout(this_afe.wait[index],
  5764. (atomic_read(&this_afe.state) == 0),
  5765. msecs_to_jiffies(TIMEOUT_MS));
  5766. if (!ret) {
  5767. pr_err("%s: wait_event timeout\n", __func__);
  5768. ret = -EINVAL;
  5769. goto fail_cmd;
  5770. }
  5771. if (atomic_read(&this_afe.status) > 0) {
  5772. pr_err("%s: config cmd failed [%s]\n",
  5773. __func__, adsp_err_get_err_str(
  5774. atomic_read(&this_afe.status)));
  5775. ret = adsp_err_get_lnx_err_code(
  5776. atomic_read(&this_afe.status));
  5777. goto fail_cmd;
  5778. }
  5779. fail_cmd:
  5780. return ret;
  5781. }
  5782. int afe_enable_lpass_core_shared_clock(u16 port_id, u32 enable)
  5783. {
  5784. struct afe_lpass_core_shared_clk_config_command clk_cfg;
  5785. int index = 0;
  5786. int ret = 0;
  5787. index = q6audio_get_port_index(port_id);
  5788. if (index < 0 || index >= AFE_MAX_PORTS) {
  5789. pr_err("%s: AFE port index[%d] invalid!\n",
  5790. __func__, index);
  5791. return -EINVAL;
  5792. }
  5793. ret = q6audio_is_digital_pcm_interface(port_id);
  5794. if (ret < 0) {
  5795. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  5796. __func__, ret);
  5797. return -EINVAL;
  5798. }
  5799. ret = afe_q6_interface_prepare();
  5800. if (ret != 0) {
  5801. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5802. return ret;
  5803. }
  5804. mutex_lock(&this_afe.afe_cmd_lock);
  5805. clk_cfg.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5806. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5807. clk_cfg.hdr.pkt_size = sizeof(clk_cfg);
  5808. clk_cfg.hdr.src_port = 0;
  5809. clk_cfg.hdr.dest_port = 0;
  5810. clk_cfg.hdr.token = index;
  5811. clk_cfg.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  5812. clk_cfg.param.port_id = q6audio_get_port_id(port_id);
  5813. clk_cfg.param.payload_size = sizeof(clk_cfg) - sizeof(struct apr_hdr)
  5814. - sizeof(clk_cfg.param);
  5815. clk_cfg.param.payload_address_lsw = 0x00;
  5816. clk_cfg.param.payload_address_msw = 0x00;
  5817. clk_cfg.param.mem_map_handle = 0x00;
  5818. clk_cfg.pdata.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5819. clk_cfg.pdata.param_id = AFE_PARAM_ID_LPASS_CORE_SHARED_CLOCK_CONFIG;
  5820. clk_cfg.pdata.param_size = sizeof(clk_cfg.clk_cfg);
  5821. clk_cfg.clk_cfg.lpass_core_shared_clk_cfg_minor_version =
  5822. AFE_API_VERSION_LPASS_CORE_SHARED_CLK_CONFIG;
  5823. clk_cfg.clk_cfg.enable = enable;
  5824. pr_debug("%s: port id = %d, enable = %d\n",
  5825. __func__, q6audio_get_port_id(port_id), enable);
  5826. atomic_set(&this_afe.state, 1);
  5827. atomic_set(&this_afe.status, 0);
  5828. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &clk_cfg);
  5829. if (ret < 0) {
  5830. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  5831. __func__, port_id, ret);
  5832. ret = -EINVAL;
  5833. goto fail_cmd;
  5834. }
  5835. ret = wait_event_timeout(this_afe.wait[index],
  5836. (atomic_read(&this_afe.state) == 0),
  5837. msecs_to_jiffies(TIMEOUT_MS));
  5838. if (!ret) {
  5839. pr_err("%s: wait_event timeout\n", __func__);
  5840. ret = -EINVAL;
  5841. goto fail_cmd;
  5842. }
  5843. if (atomic_read(&this_afe.status) > 0) {
  5844. pr_err("%s: config cmd failed [%s]\n",
  5845. __func__, adsp_err_get_err_str(
  5846. atomic_read(&this_afe.status)));
  5847. ret = adsp_err_get_lnx_err_code(
  5848. atomic_read(&this_afe.status));
  5849. goto fail_cmd;
  5850. }
  5851. fail_cmd:
  5852. mutex_unlock(&this_afe.afe_cmd_lock);
  5853. return ret;
  5854. }
  5855. int q6afe_check_osr_clk_freq(u32 freq)
  5856. {
  5857. int ret = 0;
  5858. switch (freq) {
  5859. case Q6AFE_LPASS_OSR_CLK_12_P288_MHZ:
  5860. case Q6AFE_LPASS_OSR_CLK_8_P192_MHZ:
  5861. case Q6AFE_LPASS_OSR_CLK_6_P144_MHZ:
  5862. case Q6AFE_LPASS_OSR_CLK_4_P096_MHZ:
  5863. case Q6AFE_LPASS_OSR_CLK_3_P072_MHZ:
  5864. case Q6AFE_LPASS_OSR_CLK_2_P048_MHZ:
  5865. case Q6AFE_LPASS_OSR_CLK_1_P536_MHZ:
  5866. case Q6AFE_LPASS_OSR_CLK_1_P024_MHZ:
  5867. case Q6AFE_LPASS_OSR_CLK_768_kHZ:
  5868. case Q6AFE_LPASS_OSR_CLK_512_kHZ:
  5869. break;
  5870. default:
  5871. pr_err("%s: deafault freq 0x%x\n",
  5872. __func__, freq);
  5873. ret = -EINVAL;
  5874. }
  5875. return ret;
  5876. }
  5877. int afe_get_sp_th_vi_ftm_data(struct afe_sp_th_vi_get_param *th_vi)
  5878. {
  5879. int ret = -EINVAL;
  5880. int index = 0, port = SLIMBUS_4_TX;
  5881. if (!th_vi) {
  5882. pr_err("%s: Invalid params\n", __func__);
  5883. goto done;
  5884. }
  5885. if (this_afe.vi_tx_port != -1)
  5886. port = this_afe.vi_tx_port;
  5887. ret = q6audio_validate_port(port);
  5888. if (ret < 0) {
  5889. pr_err("%s: invalid port 0x%x ret %d\n", __func__, port, ret);
  5890. goto done;
  5891. }
  5892. index = q6audio_get_port_index(port);
  5893. if (index < 0) {
  5894. pr_err("%s: invalid port 0x%x, index %d\n",
  5895. __func__, port, index);
  5896. ret = -EINVAL;
  5897. goto done;
  5898. }
  5899. th_vi->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5900. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5901. th_vi->hdr.pkt_size = sizeof(*th_vi);
  5902. th_vi->hdr.src_port = 0;
  5903. th_vi->hdr.dest_port = 0;
  5904. th_vi->hdr.token = index;
  5905. th_vi->hdr.opcode = AFE_PORT_CMD_GET_PARAM_V2;
  5906. th_vi->get_param.mem_map_handle = 0;
  5907. th_vi->get_param.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  5908. th_vi->get_param.param_id = AFE_PARAM_ID_SP_V2_TH_VI_FTM_PARAMS;
  5909. th_vi->get_param.payload_address_lsw = 0;
  5910. th_vi->get_param.payload_address_msw = 0;
  5911. th_vi->get_param.payload_size = sizeof(*th_vi)
  5912. - sizeof(th_vi->get_param) - sizeof(th_vi->hdr);
  5913. th_vi->get_param.port_id = q6audio_get_port_id(port);
  5914. th_vi->pdata.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  5915. th_vi->pdata.param_id = AFE_PARAM_ID_SP_V2_TH_VI_FTM_PARAMS;
  5916. th_vi->pdata.param_size = sizeof(th_vi->param);
  5917. atomic_set(&this_afe.status, 0);
  5918. atomic_set(&this_afe.state, 1);
  5919. ret = apr_send_pkt(this_afe.apr, (uint32_t *)th_vi);
  5920. if (ret < 0) {
  5921. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  5922. __func__, port, th_vi->get_param.param_id, ret);
  5923. goto done;
  5924. }
  5925. ret = wait_event_timeout(this_afe.wait[index],
  5926. (atomic_read(&this_afe.state) == 0),
  5927. msecs_to_jiffies(TIMEOUT_MS));
  5928. if (!ret) {
  5929. pr_err("%s: wait_event timeout\n", __func__);
  5930. ret = -EINVAL;
  5931. goto done;
  5932. }
  5933. if (atomic_read(&this_afe.status) > 0) {
  5934. pr_err("%s: config cmd failed [%s]\n",
  5935. __func__, adsp_err_get_err_str(
  5936. atomic_read(&this_afe.status)));
  5937. ret = adsp_err_get_lnx_err_code(atomic_read(&this_afe.status));
  5938. goto done;
  5939. }
  5940. memcpy(&th_vi->param, &this_afe.th_vi_resp.param,
  5941. sizeof(this_afe.th_vi_resp.param));
  5942. pr_debug("%s: DC resistance %d %d temp %d %d status %d %d\n",
  5943. __func__, th_vi->param.dc_res_q24[SP_V2_SPKR_1],
  5944. th_vi->param.dc_res_q24[SP_V2_SPKR_2],
  5945. th_vi->param.temp_q22[SP_V2_SPKR_1],
  5946. th_vi->param.temp_q22[SP_V2_SPKR_2],
  5947. th_vi->param.status[SP_V2_SPKR_1],
  5948. th_vi->param.status[SP_V2_SPKR_2]);
  5949. ret = 0;
  5950. done:
  5951. return ret;
  5952. }
  5953. int afe_get_sp_ex_vi_ftm_data(struct afe_sp_ex_vi_get_param *ex_vi)
  5954. {
  5955. int ret = -EINVAL;
  5956. int index = 0, port = SLIMBUS_4_TX;
  5957. if (!ex_vi) {
  5958. pr_err("%s: Invalid params\n", __func__);
  5959. goto done;
  5960. }
  5961. if (this_afe.vi_tx_port != -1)
  5962. port = this_afe.vi_tx_port;
  5963. ret = q6audio_validate_port(port);
  5964. if (ret < 0) {
  5965. pr_err("%s: invalid port 0x%x ret %d\n", __func__, port, ret);
  5966. goto done;
  5967. }
  5968. index = q6audio_get_port_index(port);
  5969. if (index < 0) {
  5970. pr_err("%s: invalid index %d port 0x%x\n", __func__,
  5971. index, port);
  5972. ret = -EINVAL;
  5973. goto done;
  5974. }
  5975. ex_vi->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5976. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5977. ex_vi->hdr.pkt_size = sizeof(*ex_vi);
  5978. ex_vi->hdr.src_port = 0;
  5979. ex_vi->hdr.dest_port = 0;
  5980. ex_vi->hdr.token = index;
  5981. ex_vi->hdr.opcode = AFE_PORT_CMD_GET_PARAM_V2;
  5982. ex_vi->get_param.mem_map_handle = 0;
  5983. ex_vi->get_param.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI;
  5984. ex_vi->get_param.param_id = AFE_PARAM_ID_SP_V2_EX_VI_FTM_PARAMS;
  5985. ex_vi->get_param.payload_address_lsw = 0;
  5986. ex_vi->get_param.payload_address_msw = 0;
  5987. ex_vi->get_param.payload_size = sizeof(*ex_vi)
  5988. - sizeof(ex_vi->get_param) - sizeof(ex_vi->hdr);
  5989. ex_vi->get_param.port_id = q6audio_get_port_id(port);
  5990. ex_vi->pdata.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI;
  5991. ex_vi->pdata.param_id = AFE_PARAM_ID_SP_V2_EX_VI_FTM_PARAMS;
  5992. ex_vi->pdata.param_size = sizeof(ex_vi->param);
  5993. atomic_set(&this_afe.status, 0);
  5994. atomic_set(&this_afe.state, 1);
  5995. ret = apr_send_pkt(this_afe.apr, (uint32_t *)ex_vi);
  5996. if (ret < 0) {
  5997. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  5998. __func__, port, ex_vi->get_param.param_id, ret);
  5999. goto done;
  6000. }
  6001. ret = wait_event_timeout(this_afe.wait[index],
  6002. (atomic_read(&this_afe.state) == 0),
  6003. msecs_to_jiffies(TIMEOUT_MS));
  6004. if (!ret) {
  6005. pr_err("%s: wait_event timeout\n", __func__);
  6006. ret = -EINVAL;
  6007. goto done;
  6008. }
  6009. if (atomic_read(&this_afe.status) > 0) {
  6010. pr_err("%s: config cmd failed [%s]\n",
  6011. __func__, adsp_err_get_err_str(
  6012. atomic_read(&this_afe.status)));
  6013. ret = adsp_err_get_lnx_err_code(atomic_read(&this_afe.status));
  6014. goto done;
  6015. }
  6016. memcpy(&ex_vi->param, &this_afe.ex_vi_resp.param,
  6017. sizeof(this_afe.ex_vi_resp.param));
  6018. pr_debug("%s: freq %d %d resistance %d %d qfactor %d %d state %d %d\n",
  6019. __func__, ex_vi->param.freq_q20[SP_V2_SPKR_1],
  6020. ex_vi->param.freq_q20[SP_V2_SPKR_2],
  6021. ex_vi->param.resis_q24[SP_V2_SPKR_1],
  6022. ex_vi->param.resis_q24[SP_V2_SPKR_2],
  6023. ex_vi->param.qmct_q24[SP_V2_SPKR_1],
  6024. ex_vi->param.qmct_q24[SP_V2_SPKR_2],
  6025. ex_vi->param.status[SP_V2_SPKR_1],
  6026. ex_vi->param.status[SP_V2_SPKR_2]);
  6027. ret = 0;
  6028. done:
  6029. return ret;
  6030. }
  6031. /**
  6032. * afe_get_av_dev_drift -
  6033. * command to retrieve AV drift
  6034. *
  6035. * @timing_stats: timing stats to be updated with AV drift values
  6036. * @port: AFE port ID
  6037. *
  6038. * Returns 0 on success or error on failure
  6039. */
  6040. int afe_get_av_dev_drift(struct afe_param_id_dev_timing_stats *timing_stats,
  6041. u16 port)
  6042. {
  6043. int ret = -EINVAL;
  6044. int index = 0;
  6045. struct afe_av_dev_drift_get_param av_dev_drift;
  6046. if (!timing_stats) {
  6047. pr_err("%s: Invalid params\n", __func__);
  6048. goto exit;
  6049. }
  6050. ret = q6audio_validate_port(port);
  6051. if (ret < 0) {
  6052. pr_err("%s: invalid port 0x%x ret %d\n", __func__, port, ret);
  6053. ret = -EINVAL;
  6054. goto exit;
  6055. }
  6056. index = q6audio_get_port_index(port);
  6057. if (index < 0 || index >= AFE_MAX_PORTS) {
  6058. pr_err("%s: Invalid AFE port index[%d]\n",
  6059. __func__, index);
  6060. ret = -EINVAL;
  6061. goto exit;
  6062. }
  6063. memset(&av_dev_drift, 0, sizeof(struct afe_av_dev_drift_get_param));
  6064. av_dev_drift.hdr.hdr_field =
  6065. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6066. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6067. av_dev_drift.hdr.pkt_size = sizeof(av_dev_drift);
  6068. av_dev_drift.hdr.src_port = 0;
  6069. av_dev_drift.hdr.dest_port = 0;
  6070. av_dev_drift.hdr.token = index;
  6071. av_dev_drift.hdr.opcode = AFE_PORT_CMD_GET_PARAM_V2;
  6072. av_dev_drift.get_param.mem_map_handle = 0;
  6073. av_dev_drift.get_param.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6074. av_dev_drift.get_param.param_id = AFE_PARAM_ID_DEV_TIMING_STATS;
  6075. av_dev_drift.get_param.payload_address_lsw = 0;
  6076. av_dev_drift.get_param.payload_address_msw = 0;
  6077. av_dev_drift.get_param.payload_size = sizeof(av_dev_drift)
  6078. - sizeof(av_dev_drift.get_param) - sizeof(av_dev_drift.hdr);
  6079. av_dev_drift.get_param.port_id = q6audio_get_port_id(port);
  6080. av_dev_drift.pdata.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6081. av_dev_drift.pdata.param_id = AFE_PARAM_ID_DEV_TIMING_STATS;
  6082. av_dev_drift.pdata.param_size = sizeof(av_dev_drift.timing_stats);
  6083. atomic_set(&this_afe.status, 0);
  6084. atomic_set(&this_afe.state, 1);
  6085. ret = apr_send_pkt(this_afe.apr, (uint32_t *)&av_dev_drift);
  6086. if (ret < 0) {
  6087. pr_err("%s: get param port 0x%x param id[0x%x] failed %d\n",
  6088. __func__, port, av_dev_drift.get_param.param_id, ret);
  6089. goto exit;
  6090. }
  6091. ret = wait_event_timeout(this_afe.wait[index],
  6092. (atomic_read(&this_afe.state) == 0),
  6093. msecs_to_jiffies(TIMEOUT_MS));
  6094. if (!ret) {
  6095. pr_err("%s: wait_event timeout\n", __func__);
  6096. ret = -EINVAL;
  6097. goto exit;
  6098. }
  6099. if (atomic_read(&this_afe.status) > 0) {
  6100. pr_err("%s: config cmd failed [%s]\n",
  6101. __func__, adsp_err_get_err_str(
  6102. atomic_read(&this_afe.status)));
  6103. ret = adsp_err_get_lnx_err_code(
  6104. atomic_read(&this_afe.status));
  6105. goto exit;
  6106. }
  6107. memcpy(timing_stats, &this_afe.av_dev_drift_resp.timing_stats,
  6108. sizeof(this_afe.av_dev_drift_resp.timing_stats));
  6109. ret = 0;
  6110. exit:
  6111. return ret;
  6112. }
  6113. EXPORT_SYMBOL(afe_get_av_dev_drift);
  6114. int afe_spk_prot_get_calib_data(struct afe_spkr_prot_get_vi_calib *calib_resp)
  6115. {
  6116. int ret = -EINVAL;
  6117. int index = 0, port = SLIMBUS_4_TX;
  6118. if (!calib_resp) {
  6119. pr_err("%s: Invalid params\n", __func__);
  6120. goto fail_cmd;
  6121. }
  6122. if (this_afe.vi_tx_port != -1)
  6123. port = this_afe.vi_tx_port;
  6124. ret = q6audio_validate_port(port);
  6125. if (ret < 0) {
  6126. pr_err("%s: invalid port 0x%x ret %d\n", __func__, port, ret);
  6127. ret = -EINVAL;
  6128. goto fail_cmd;
  6129. }
  6130. index = q6audio_get_port_index(port);
  6131. if (index < 0 || index >= AFE_MAX_PORTS) {
  6132. pr_err("%s: AFE port index[%d] invalid!\n",
  6133. __func__, index);
  6134. ret = -EINVAL;
  6135. goto fail_cmd;
  6136. }
  6137. calib_resp->hdr.hdr_field =
  6138. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6139. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6140. calib_resp->hdr.pkt_size = sizeof(*calib_resp);
  6141. calib_resp->hdr.src_port = 0;
  6142. calib_resp->hdr.dest_port = 0;
  6143. calib_resp->hdr.token = index;
  6144. calib_resp->hdr.opcode = AFE_PORT_CMD_GET_PARAM_V2;
  6145. calib_resp->get_param.mem_map_handle = 0;
  6146. calib_resp->get_param.module_id = AFE_MODULE_FB_SPKR_PROT_VI_PROC_V2;
  6147. calib_resp->get_param.param_id = AFE_PARAM_ID_CALIB_RES_CFG_V2;
  6148. calib_resp->get_param.payload_address_lsw = 0;
  6149. calib_resp->get_param.payload_address_msw = 0;
  6150. calib_resp->get_param.payload_size = sizeof(*calib_resp)
  6151. - sizeof(calib_resp->get_param) - sizeof(calib_resp->hdr);
  6152. calib_resp->get_param.port_id = q6audio_get_port_id(port);
  6153. calib_resp->pdata.module_id = AFE_MODULE_FB_SPKR_PROT_VI_PROC_V2;
  6154. calib_resp->pdata.param_id = AFE_PARAM_ID_CALIB_RES_CFG_V2;
  6155. calib_resp->pdata.param_size = sizeof(calib_resp->res_cfg);
  6156. atomic_set(&this_afe.status, 0);
  6157. atomic_set(&this_afe.state, 1);
  6158. ret = apr_send_pkt(this_afe.apr, (uint32_t *)calib_resp);
  6159. if (ret < 0) {
  6160. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  6161. __func__, port, calib_resp->get_param.param_id, ret);
  6162. goto fail_cmd;
  6163. }
  6164. ret = wait_event_timeout(this_afe.wait[index],
  6165. (atomic_read(&this_afe.state) == 0),
  6166. msecs_to_jiffies(TIMEOUT_MS));
  6167. if (!ret) {
  6168. pr_err("%s: wait_event timeout\n", __func__);
  6169. ret = -EINVAL;
  6170. goto fail_cmd;
  6171. }
  6172. if (atomic_read(&this_afe.status) > 0) {
  6173. pr_err("%s: config cmd failed [%s]\n",
  6174. __func__, adsp_err_get_err_str(
  6175. atomic_read(&this_afe.status)));
  6176. ret = adsp_err_get_lnx_err_code(
  6177. atomic_read(&this_afe.status));
  6178. goto fail_cmd;
  6179. }
  6180. memcpy(&calib_resp->res_cfg, &this_afe.calib_data.res_cfg,
  6181. sizeof(this_afe.calib_data.res_cfg));
  6182. pr_info("%s: state %s resistance %d %d\n", __func__,
  6183. fbsp_state[calib_resp->res_cfg.th_vi_ca_state],
  6184. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_1],
  6185. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_2]);
  6186. ret = 0;
  6187. fail_cmd:
  6188. return ret;
  6189. }
  6190. /**
  6191. * afe_spk_prot_feed_back_cfg -
  6192. * command to setup spk protection feedback config
  6193. *
  6194. * @src_port: source port id
  6195. * @dst_port: destination port id
  6196. * @l_ch: left speaker active or not
  6197. * @r_ch: right speaker active or not
  6198. * @enable: flag to enable or disable
  6199. *
  6200. * Returns 0 on success or error on failure
  6201. */
  6202. int afe_spk_prot_feed_back_cfg(int src_port, int dst_port,
  6203. int l_ch, int r_ch, u32 enable)
  6204. {
  6205. int ret = -EINVAL;
  6206. union afe_spkr_prot_config prot_config;
  6207. int index = 0;
  6208. if (!enable) {
  6209. pr_debug("%s: Disable Feedback tx path", __func__);
  6210. this_afe.vi_tx_port = -1;
  6211. this_afe.vi_rx_port = -1;
  6212. return 0;
  6213. }
  6214. if ((q6audio_validate_port(src_port) < 0) ||
  6215. (q6audio_validate_port(dst_port) < 0)) {
  6216. pr_err("%s: invalid ports src 0x%x dst 0x%x",
  6217. __func__, src_port, dst_port);
  6218. goto fail_cmd;
  6219. }
  6220. if (!l_ch && !r_ch) {
  6221. pr_err("%s: error ch values zero\n", __func__);
  6222. goto fail_cmd;
  6223. }
  6224. pr_debug("%s: src_port 0x%x dst_port 0x%x l_ch %d r_ch %d\n",
  6225. __func__, src_port, dst_port, l_ch, r_ch);
  6226. memset(&prot_config, 0, sizeof(prot_config));
  6227. prot_config.feedback_path_cfg.dst_portid =
  6228. q6audio_get_port_id(dst_port);
  6229. if (l_ch) {
  6230. prot_config.feedback_path_cfg.chan_info[index++] = 1;
  6231. prot_config.feedback_path_cfg.chan_info[index++] = 2;
  6232. }
  6233. if (r_ch) {
  6234. prot_config.feedback_path_cfg.chan_info[index++] = 3;
  6235. prot_config.feedback_path_cfg.chan_info[index++] = 4;
  6236. }
  6237. prot_config.feedback_path_cfg.num_channels = index;
  6238. pr_debug("%s no of channels: %d\n", __func__, index);
  6239. prot_config.feedback_path_cfg.minor_version = 1;
  6240. ret = afe_spk_prot_prepare(src_port, dst_port,
  6241. AFE_PARAM_ID_FEEDBACK_PATH_CFG, &prot_config);
  6242. fail_cmd:
  6243. return ret;
  6244. }
  6245. EXPORT_SYMBOL(afe_spk_prot_feed_back_cfg);
  6246. static int get_cal_type_index(int32_t cal_type)
  6247. {
  6248. int ret = -EINVAL;
  6249. switch (cal_type) {
  6250. case AFE_COMMON_RX_CAL_TYPE:
  6251. ret = AFE_COMMON_RX_CAL;
  6252. break;
  6253. case AFE_COMMON_TX_CAL_TYPE:
  6254. ret = AFE_COMMON_TX_CAL;
  6255. break;
  6256. case AFE_AANC_CAL_TYPE:
  6257. ret = AFE_AANC_CAL;
  6258. break;
  6259. case AFE_HW_DELAY_CAL_TYPE:
  6260. ret = AFE_HW_DELAY_CAL;
  6261. break;
  6262. case AFE_FB_SPKR_PROT_CAL_TYPE:
  6263. ret = AFE_FB_SPKR_PROT_CAL;
  6264. break;
  6265. case AFE_SIDETONE_CAL_TYPE:
  6266. ret = AFE_SIDETONE_CAL;
  6267. break;
  6268. case AFE_SIDETONE_IIR_CAL_TYPE:
  6269. ret = AFE_SIDETONE_IIR_CAL;
  6270. break;
  6271. case AFE_TOPOLOGY_CAL_TYPE:
  6272. ret = AFE_TOPOLOGY_CAL;
  6273. break;
  6274. case AFE_CUST_TOPOLOGY_CAL_TYPE:
  6275. ret = AFE_CUST_TOPOLOGY_CAL;
  6276. break;
  6277. default:
  6278. pr_err("%s: invalid cal type %d!\n", __func__, cal_type);
  6279. }
  6280. return ret;
  6281. }
  6282. int afe_alloc_cal(int32_t cal_type, size_t data_size,
  6283. void *data)
  6284. {
  6285. int ret = 0;
  6286. int cal_index;
  6287. cal_index = get_cal_type_index(cal_type);
  6288. pr_debug("%s: cal_type = %d cal_index = %d\n",
  6289. __func__, cal_type, cal_index);
  6290. if (cal_index < 0) {
  6291. pr_err("%s: could not get cal index %d!\n",
  6292. __func__, cal_index);
  6293. ret = -EINVAL;
  6294. goto done;
  6295. }
  6296. ret = cal_utils_alloc_cal(data_size, data,
  6297. this_afe.cal_data[cal_index], 0, NULL);
  6298. if (ret < 0) {
  6299. pr_err("%s: cal_utils_alloc_block failed, ret = %d, cal type = %d!\n",
  6300. __func__, ret, cal_type);
  6301. ret = -EINVAL;
  6302. goto done;
  6303. }
  6304. done:
  6305. return ret;
  6306. }
  6307. static int afe_dealloc_cal(int32_t cal_type, size_t data_size,
  6308. void *data)
  6309. {
  6310. int ret = 0;
  6311. int cal_index;
  6312. pr_debug("%s:\n", __func__);
  6313. cal_index = get_cal_type_index(cal_type);
  6314. if (cal_index < 0) {
  6315. pr_err("%s: could not get cal index %d!\n",
  6316. __func__, cal_index);
  6317. ret = -EINVAL;
  6318. goto done;
  6319. }
  6320. ret = cal_utils_dealloc_cal(data_size, data,
  6321. this_afe.cal_data[cal_index]);
  6322. if (ret < 0) {
  6323. pr_err("%s: cal_utils_dealloc_block failed, ret = %d, cal type = %d!\n",
  6324. __func__, ret, cal_type);
  6325. ret = -EINVAL;
  6326. goto done;
  6327. }
  6328. done:
  6329. return ret;
  6330. }
  6331. static int afe_set_cal(int32_t cal_type, size_t data_size,
  6332. void *data)
  6333. {
  6334. int ret = 0;
  6335. int cal_index;
  6336. pr_debug("%s:\n", __func__);
  6337. cal_index = get_cal_type_index(cal_type);
  6338. if (cal_index < 0) {
  6339. pr_err("%s: could not get cal index %d!\n",
  6340. __func__, cal_index);
  6341. ret = -EINVAL;
  6342. goto done;
  6343. }
  6344. ret = cal_utils_set_cal(data_size, data,
  6345. this_afe.cal_data[cal_index], 0, NULL);
  6346. if (ret < 0) {
  6347. pr_err("%s: cal_utils_set_cal failed, ret = %d, cal type = %d!\n",
  6348. __func__, ret, cal_type);
  6349. ret = -EINVAL;
  6350. goto done;
  6351. }
  6352. if (cal_index == AFE_CUST_TOPOLOGY_CAL) {
  6353. mutex_lock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  6354. this_afe.set_custom_topology = 1;
  6355. pr_debug("%s:[AFE_CUSTOM_TOPOLOGY] ret = %d, cal type = %d!\n",
  6356. __func__, ret, cal_type);
  6357. mutex_unlock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  6358. }
  6359. done:
  6360. return ret;
  6361. }
  6362. static struct cal_block_data *afe_find_hw_delay_by_path(
  6363. struct cal_type_data *cal_type, int path)
  6364. {
  6365. struct list_head *ptr, *next;
  6366. struct cal_block_data *cal_block = NULL;
  6367. pr_debug("%s:\n", __func__);
  6368. list_for_each_safe(ptr, next,
  6369. &cal_type->cal_blocks) {
  6370. cal_block = list_entry(ptr,
  6371. struct cal_block_data, list);
  6372. if (((struct audio_cal_info_hw_delay *)cal_block->cal_info)
  6373. ->path == path) {
  6374. return cal_block;
  6375. }
  6376. }
  6377. return NULL;
  6378. }
  6379. static int afe_get_cal_hw_delay(int32_t path,
  6380. struct audio_cal_hw_delay_entry *entry)
  6381. {
  6382. int ret = 0;
  6383. int i;
  6384. struct cal_block_data *cal_block = NULL;
  6385. struct audio_cal_hw_delay_data *hw_delay_info = NULL;
  6386. pr_debug("%s:\n", __func__);
  6387. if (this_afe.cal_data[AFE_HW_DELAY_CAL] == NULL) {
  6388. pr_err("%s: AFE_HW_DELAY_CAL not initialized\n", __func__);
  6389. ret = -EINVAL;
  6390. goto done;
  6391. }
  6392. if (entry == NULL) {
  6393. pr_err("%s: entry is NULL\n", __func__);
  6394. ret = -EINVAL;
  6395. goto done;
  6396. }
  6397. if ((path >= MAX_PATH_TYPE) || (path < 0)) {
  6398. pr_err("%s: bad path: %d\n",
  6399. __func__, path);
  6400. ret = -EINVAL;
  6401. goto done;
  6402. }
  6403. mutex_lock(&this_afe.cal_data[AFE_HW_DELAY_CAL]->lock);
  6404. cal_block = afe_find_hw_delay_by_path(
  6405. this_afe.cal_data[AFE_HW_DELAY_CAL], path);
  6406. if (cal_block == NULL)
  6407. goto unlock;
  6408. hw_delay_info = &((struct audio_cal_info_hw_delay *)
  6409. cal_block->cal_info)->data;
  6410. if (hw_delay_info->num_entries > MAX_HW_DELAY_ENTRIES) {
  6411. pr_err("%s: invalid num entries: %d\n",
  6412. __func__, hw_delay_info->num_entries);
  6413. ret = -EINVAL;
  6414. goto unlock;
  6415. }
  6416. for (i = 0; i < hw_delay_info->num_entries; i++) {
  6417. if (hw_delay_info->entry[i].sample_rate ==
  6418. entry->sample_rate) {
  6419. entry->delay_usec = hw_delay_info->entry[i].delay_usec;
  6420. break;
  6421. }
  6422. }
  6423. if (i == hw_delay_info->num_entries) {
  6424. pr_err("%s: Unable to find delay for sample rate %d\n",
  6425. __func__, entry->sample_rate);
  6426. ret = -EFAULT;
  6427. goto unlock;
  6428. }
  6429. pr_debug("%s: Path = %d samplerate = %u usec = %u status %d\n",
  6430. __func__, path, entry->sample_rate, entry->delay_usec, ret);
  6431. unlock:
  6432. mutex_unlock(&this_afe.cal_data[AFE_HW_DELAY_CAL]->lock);
  6433. done:
  6434. return ret;
  6435. }
  6436. static int afe_set_cal_sp_th_vi_ftm_cfg(int32_t cal_type, size_t data_size,
  6437. void *data)
  6438. {
  6439. int ret = 0;
  6440. struct audio_cal_type_sp_th_vi_ftm_cfg *cal_data = data;
  6441. if (this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  6442. cal_data == NULL ||
  6443. data_size != sizeof(*cal_data))
  6444. goto done;
  6445. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  6446. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  6447. memcpy(&this_afe.th_ftm_cfg, &cal_data->cal_info,
  6448. sizeof(this_afe.th_ftm_cfg));
  6449. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  6450. done:
  6451. return ret;
  6452. }
  6453. static int afe_set_cal_sp_ex_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_ex_vi_ftm_cfg *cal_data = data;
  6458. if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_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_EX_VI_CAL]->lock);
  6464. memcpy(&this_afe.ex_ftm_cfg, &cal_data->cal_info,
  6465. sizeof(this_afe.ex_ftm_cfg));
  6466. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  6467. done:
  6468. return ret;
  6469. }
  6470. static int afe_set_cal_fb_spkr_prot(int32_t cal_type, size_t data_size,
  6471. void *data)
  6472. {
  6473. int ret = 0;
  6474. struct audio_cal_type_fb_spk_prot_cfg *cal_data = data;
  6475. pr_debug("%s:\n", __func__);
  6476. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  6477. goto done;
  6478. if (cal_data == NULL)
  6479. goto done;
  6480. if (data_size != sizeof(*cal_data))
  6481. goto done;
  6482. if (cal_data->cal_info.mode == MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS)
  6483. __pm_wakeup_event(&wl.ws, jiffies_to_msecs(WAKELOCK_TIMEOUT));
  6484. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  6485. memcpy(&this_afe.prot_cfg, &cal_data->cal_info,
  6486. sizeof(this_afe.prot_cfg));
  6487. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  6488. done:
  6489. return ret;
  6490. }
  6491. static int afe_get_cal_sp_th_vi_ftm_param(int32_t cal_type, size_t data_size,
  6492. void *data)
  6493. {
  6494. int i, ret = 0;
  6495. struct audio_cal_type_sp_th_vi_param *cal_data = data;
  6496. struct afe_sp_th_vi_get_param th_vi;
  6497. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  6498. if (this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  6499. cal_data == NULL ||
  6500. data_size != sizeof(*cal_data))
  6501. goto done;
  6502. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  6503. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  6504. cal_data->cal_info.status[i] = -EINVAL;
  6505. cal_data->cal_info.r_dc_q24[i] = -1;
  6506. cal_data->cal_info.temp_q22[i] = -1;
  6507. }
  6508. if (!afe_get_sp_th_vi_ftm_data(&th_vi)) {
  6509. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  6510. pr_debug("%s: ftm param status = %d\n",
  6511. __func__, th_vi.param.status[i]);
  6512. if (th_vi.param.status[i] == FBSP_IN_PROGRESS) {
  6513. cal_data->cal_info.status[i] = -EAGAIN;
  6514. } else if (th_vi.param.status[i] == FBSP_SUCCESS) {
  6515. cal_data->cal_info.status[i] = 0;
  6516. cal_data->cal_info.r_dc_q24[i] =
  6517. th_vi.param.dc_res_q24[i];
  6518. cal_data->cal_info.temp_q22[i] =
  6519. th_vi.param.temp_q22[i];
  6520. }
  6521. }
  6522. }
  6523. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  6524. done:
  6525. return ret;
  6526. }
  6527. static int afe_get_cal_sp_ex_vi_ftm_param(int32_t cal_type, size_t data_size,
  6528. void *data)
  6529. {
  6530. int i, ret = 0;
  6531. struct audio_cal_type_sp_ex_vi_param *cal_data = data;
  6532. struct afe_sp_ex_vi_get_param ex_vi;
  6533. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  6534. if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL ||
  6535. cal_data == NULL ||
  6536. data_size != sizeof(*cal_data))
  6537. goto done;
  6538. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  6539. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  6540. cal_data->cal_info.status[i] = -EINVAL;
  6541. cal_data->cal_info.freq_q20[i] = -1;
  6542. cal_data->cal_info.resis_q24[i] = -1;
  6543. cal_data->cal_info.qmct_q24[i] = -1;
  6544. }
  6545. if (!afe_get_sp_ex_vi_ftm_data(&ex_vi)) {
  6546. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  6547. pr_debug("%s: ftm param status = %d\n",
  6548. __func__, ex_vi.param.status[i]);
  6549. if (ex_vi.param.status[i] == FBSP_IN_PROGRESS) {
  6550. cal_data->cal_info.status[i] = -EAGAIN;
  6551. } else if (ex_vi.param.status[i] == FBSP_SUCCESS) {
  6552. cal_data->cal_info.status[i] = 0;
  6553. cal_data->cal_info.freq_q20[i] =
  6554. ex_vi.param.freq_q20[i];
  6555. cal_data->cal_info.resis_q24[i] =
  6556. ex_vi.param.resis_q24[i];
  6557. cal_data->cal_info.qmct_q24[i] =
  6558. ex_vi.param.qmct_q24[i];
  6559. }
  6560. }
  6561. }
  6562. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  6563. done:
  6564. return ret;
  6565. }
  6566. static int afe_get_cal_fb_spkr_prot(int32_t cal_type, size_t data_size,
  6567. void *data)
  6568. {
  6569. int ret = 0;
  6570. struct audio_cal_type_fb_spk_prot_status *cal_data = data;
  6571. struct afe_spkr_prot_get_vi_calib calib_resp;
  6572. pr_debug("%s:\n", __func__);
  6573. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  6574. goto done;
  6575. if (cal_data == NULL)
  6576. goto done;
  6577. if (data_size != sizeof(*cal_data))
  6578. goto done;
  6579. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  6580. if (this_afe.prot_cfg.mode == MSM_SPKR_PROT_CALIBRATED) {
  6581. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  6582. this_afe.prot_cfg.r0[SP_V2_SPKR_1];
  6583. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  6584. this_afe.prot_cfg.r0[SP_V2_SPKR_2];
  6585. cal_data->cal_info.status = 0;
  6586. } else if (this_afe.prot_cfg.mode ==
  6587. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS) {
  6588. /*Call AFE to query the status*/
  6589. cal_data->cal_info.status = -EINVAL;
  6590. cal_data->cal_info.r0[SP_V2_SPKR_1] = -1;
  6591. cal_data->cal_info.r0[SP_V2_SPKR_2] = -1;
  6592. if (!afe_spk_prot_get_calib_data(&calib_resp)) {
  6593. if (calib_resp.res_cfg.th_vi_ca_state ==
  6594. FBSP_IN_PROGRESS)
  6595. cal_data->cal_info.status = -EAGAIN;
  6596. else if (calib_resp.res_cfg.th_vi_ca_state ==
  6597. FBSP_SUCCESS) {
  6598. cal_data->cal_info.status = 0;
  6599. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  6600. calib_resp.res_cfg.r0_cali_q24[SP_V2_SPKR_1];
  6601. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  6602. calib_resp.res_cfg.r0_cali_q24[SP_V2_SPKR_2];
  6603. }
  6604. }
  6605. if (!cal_data->cal_info.status) {
  6606. this_afe.prot_cfg.mode =
  6607. MSM_SPKR_PROT_CALIBRATED;
  6608. this_afe.prot_cfg.r0[SP_V2_SPKR_1] =
  6609. cal_data->cal_info.r0[SP_V2_SPKR_1];
  6610. this_afe.prot_cfg.r0[SP_V2_SPKR_2] =
  6611. cal_data->cal_info.r0[SP_V2_SPKR_2];
  6612. }
  6613. } else {
  6614. /*Indicates calibration data is invalid*/
  6615. cal_data->cal_info.status = -EINVAL;
  6616. cal_data->cal_info.r0[SP_V2_SPKR_1] = -1;
  6617. cal_data->cal_info.r0[SP_V2_SPKR_2] = -1;
  6618. }
  6619. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  6620. __pm_relax(&wl.ws);
  6621. done:
  6622. return ret;
  6623. }
  6624. static int afe_map_cal_data(int32_t cal_type,
  6625. struct cal_block_data *cal_block)
  6626. {
  6627. int ret = 0;
  6628. int cal_index;
  6629. pr_debug("%s:\n", __func__);
  6630. cal_index = get_cal_type_index(cal_type);
  6631. if (cal_index < 0) {
  6632. pr_err("%s: could not get cal index %d!\n",
  6633. __func__, cal_index);
  6634. ret = -EINVAL;
  6635. goto done;
  6636. }
  6637. mutex_lock(&this_afe.afe_cmd_lock);
  6638. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  6639. ret = afe_cmd_memory_map(cal_block->cal_data.paddr,
  6640. cal_block->map_data.map_size);
  6641. atomic_set(&this_afe.mem_map_cal_index, -1);
  6642. if (ret < 0) {
  6643. pr_err("%s: mmap did not work! size = %zd ret %d\n",
  6644. __func__,
  6645. cal_block->map_data.map_size, ret);
  6646. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %zd\n",
  6647. __func__,
  6648. &cal_block->cal_data.paddr,
  6649. cal_block->map_data.map_size);
  6650. mutex_unlock(&this_afe.afe_cmd_lock);
  6651. goto done;
  6652. }
  6653. cal_block->map_data.q6map_handle = atomic_read(&this_afe.
  6654. mem_map_cal_handles[cal_index]);
  6655. mutex_unlock(&this_afe.afe_cmd_lock);
  6656. done:
  6657. return ret;
  6658. }
  6659. static int afe_unmap_cal_data(int32_t cal_type,
  6660. struct cal_block_data *cal_block)
  6661. {
  6662. int ret = 0;
  6663. int cal_index;
  6664. pr_debug("%s:\n", __func__);
  6665. cal_index = get_cal_type_index(cal_type);
  6666. if (cal_index < 0) {
  6667. pr_err("%s: could not get cal index %d!\n",
  6668. __func__, cal_index);
  6669. ret = -EINVAL;
  6670. goto done;
  6671. }
  6672. if (cal_block == NULL) {
  6673. pr_err("%s: Cal block is NULL!\n",
  6674. __func__);
  6675. goto done;
  6676. }
  6677. if (cal_block->map_data.q6map_handle == 0) {
  6678. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  6679. __func__);
  6680. goto done;
  6681. }
  6682. atomic_set(&this_afe.mem_map_cal_handles[cal_index],
  6683. cal_block->map_data.q6map_handle);
  6684. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  6685. ret = afe_cmd_memory_unmap_nowait(
  6686. cal_block->map_data.q6map_handle);
  6687. atomic_set(&this_afe.mem_map_cal_index, -1);
  6688. if (ret < 0) {
  6689. pr_err("%s: unmap did not work! cal_type %i ret %d\n",
  6690. __func__, cal_index, ret);
  6691. }
  6692. cal_block->map_data.q6map_handle = 0;
  6693. done:
  6694. return ret;
  6695. }
  6696. static void afe_delete_cal_data(void)
  6697. {
  6698. pr_debug("%s:\n", __func__);
  6699. cal_utils_destroy_cal_types(MAX_AFE_CAL_TYPES, this_afe.cal_data);
  6700. }
  6701. static int afe_init_cal_data(void)
  6702. {
  6703. int ret = 0;
  6704. struct cal_type_info cal_type_info[] = {
  6705. {{AFE_COMMON_RX_CAL_TYPE,
  6706. {afe_alloc_cal, afe_dealloc_cal, NULL,
  6707. afe_set_cal, NULL, NULL} },
  6708. {afe_map_cal_data, afe_unmap_cal_data,
  6709. cal_utils_match_buf_num} },
  6710. {{AFE_COMMON_TX_CAL_TYPE,
  6711. {afe_alloc_cal, afe_dealloc_cal, NULL,
  6712. afe_set_cal, NULL, NULL} },
  6713. {afe_map_cal_data, afe_unmap_cal_data,
  6714. cal_utils_match_buf_num} },
  6715. {{AFE_AANC_CAL_TYPE,
  6716. {afe_alloc_cal, afe_dealloc_cal, NULL,
  6717. afe_set_cal, NULL, NULL} },
  6718. {afe_map_cal_data, afe_unmap_cal_data,
  6719. cal_utils_match_buf_num} },
  6720. {{AFE_FB_SPKR_PROT_CAL_TYPE,
  6721. {NULL, NULL, NULL, afe_set_cal_fb_spkr_prot,
  6722. afe_get_cal_fb_spkr_prot, NULL} },
  6723. {NULL, NULL, cal_utils_match_buf_num} },
  6724. {{AFE_HW_DELAY_CAL_TYPE,
  6725. {NULL, NULL, NULL,
  6726. afe_set_cal, NULL, NULL} },
  6727. {NULL, NULL, cal_utils_match_buf_num} },
  6728. {{AFE_SIDETONE_CAL_TYPE,
  6729. {NULL, NULL, NULL,
  6730. afe_set_cal, NULL, NULL} },
  6731. {NULL, NULL, cal_utils_match_buf_num} },
  6732. {{AFE_SIDETONE_IIR_CAL_TYPE,
  6733. {NULL, NULL, NULL,
  6734. afe_set_cal, NULL, NULL} },
  6735. {NULL, NULL, cal_utils_match_buf_num} },
  6736. {{AFE_TOPOLOGY_CAL_TYPE,
  6737. {NULL, NULL, NULL,
  6738. afe_set_cal, NULL, NULL} },
  6739. {NULL, NULL,
  6740. cal_utils_match_buf_num} },
  6741. {{AFE_CUST_TOPOLOGY_CAL_TYPE,
  6742. {afe_alloc_cal, afe_dealloc_cal, NULL,
  6743. afe_set_cal, NULL, NULL} },
  6744. {afe_map_cal_data, afe_unmap_cal_data,
  6745. cal_utils_match_buf_num} },
  6746. {{AFE_FB_SPKR_PROT_TH_VI_CAL_TYPE,
  6747. {NULL, NULL, NULL, afe_set_cal_sp_th_vi_ftm_cfg,
  6748. afe_get_cal_sp_th_vi_ftm_param, NULL} },
  6749. {NULL, NULL, cal_utils_match_buf_num} },
  6750. {{AFE_FB_SPKR_PROT_EX_VI_CAL_TYPE,
  6751. {NULL, NULL, NULL, afe_set_cal_sp_ex_vi_ftm_cfg,
  6752. afe_get_cal_sp_ex_vi_ftm_param, NULL} },
  6753. {NULL, NULL, cal_utils_match_buf_num} },
  6754. };
  6755. pr_debug("%s:\n", __func__);
  6756. ret = cal_utils_create_cal_types(MAX_AFE_CAL_TYPES, this_afe.cal_data,
  6757. cal_type_info);
  6758. if (ret < 0) {
  6759. pr_err("%s: could not create cal type! %d\n",
  6760. __func__, ret);
  6761. ret = -EINVAL;
  6762. goto err;
  6763. }
  6764. return ret;
  6765. err:
  6766. afe_delete_cal_data();
  6767. return ret;
  6768. }
  6769. int afe_map_rtac_block(struct rtac_cal_block_data *cal_block)
  6770. {
  6771. int result = 0;
  6772. pr_debug("%s:\n", __func__);
  6773. if (cal_block == NULL) {
  6774. pr_err("%s: cal_block is NULL!\n",
  6775. __func__);
  6776. result = -EINVAL;
  6777. goto done;
  6778. }
  6779. if (cal_block->cal_data.paddr == 0) {
  6780. pr_debug("%s: No address to map!\n",
  6781. __func__);
  6782. result = -EINVAL;
  6783. goto done;
  6784. }
  6785. if (cal_block->map_data.map_size == 0) {
  6786. pr_debug("%s: map size is 0!\n",
  6787. __func__);
  6788. result = -EINVAL;
  6789. goto done;
  6790. }
  6791. result = afe_cmd_memory_map(cal_block->cal_data.paddr,
  6792. cal_block->map_data.map_size);
  6793. if (result < 0) {
  6794. pr_err("%s: afe_cmd_memory_map failed for addr = 0x%pK, size = %d, err %d\n",
  6795. __func__, &cal_block->cal_data.paddr,
  6796. cal_block->map_data.map_size, result);
  6797. return result;
  6798. }
  6799. cal_block->map_data.map_handle = this_afe.mmap_handle;
  6800. done:
  6801. return result;
  6802. }
  6803. int afe_unmap_rtac_block(uint32_t *mem_map_handle)
  6804. {
  6805. int result = 0;
  6806. pr_debug("%s:\n", __func__);
  6807. if (mem_map_handle == NULL) {
  6808. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  6809. __func__);
  6810. goto done;
  6811. }
  6812. if (*mem_map_handle == 0) {
  6813. pr_debug("%s: Map handle is 0, nothing to unmap\n",
  6814. __func__);
  6815. goto done;
  6816. }
  6817. result = afe_cmd_memory_unmap(*mem_map_handle);
  6818. if (result) {
  6819. pr_err("%s: AFE memory unmap failed %d, handle 0x%x\n",
  6820. __func__, result, *mem_map_handle);
  6821. goto done;
  6822. } else {
  6823. *mem_map_handle = 0;
  6824. }
  6825. done:
  6826. return result;
  6827. }
  6828. int __init afe_init(void)
  6829. {
  6830. int i = 0, ret;
  6831. atomic_set(&this_afe.state, 0);
  6832. atomic_set(&this_afe.status, 0);
  6833. atomic_set(&this_afe.mem_map_cal_index, -1);
  6834. this_afe.apr = NULL;
  6835. this_afe.dtmf_gen_rx_portid = -1;
  6836. this_afe.mmap_handle = 0;
  6837. this_afe.vi_tx_port = -1;
  6838. this_afe.vi_rx_port = -1;
  6839. this_afe.prot_cfg.mode = MSM_SPKR_PROT_DISABLED;
  6840. this_afe.th_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  6841. this_afe.ex_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  6842. mutex_init(&this_afe.afe_cmd_lock);
  6843. for (i = 0; i < AFE_MAX_PORTS; i++) {
  6844. this_afe.afe_cal_mode[i] = AFE_CAL_MODE_DEFAULT;
  6845. this_afe.afe_sample_rates[i] = 0;
  6846. this_afe.dev_acdb_id[i] = 0;
  6847. init_waitqueue_head(&this_afe.wait[i]);
  6848. }
  6849. wakeup_source_init(&wl.ws, "spkr-prot");
  6850. ret = afe_init_cal_data();
  6851. if (ret)
  6852. pr_err("%s: could not init cal data! %d\n", __func__, ret);
  6853. config_debug_fs_init();
  6854. return 0;
  6855. }
  6856. void afe_exit(void)
  6857. {
  6858. afe_delete_cal_data();
  6859. config_debug_fs_exit();
  6860. mutex_destroy(&this_afe.afe_cmd_lock);
  6861. wakeup_source_trash(&wl.ws);
  6862. }