q6afe.c 297 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/slab.h>
  5. #include <linux/debugfs.h>
  6. #include <linux/kernel.h>
  7. #include <linux/kthread.h>
  8. #include <linux/uaccess.h>
  9. #include <linux/wait.h>
  10. #include <linux/jiffies.h>
  11. #include <linux/sched.h>
  12. #include <linux/delay.h>
  13. #include <dsp/msm_audio_ion.h>
  14. #include <dsp/apr_audio-v2.h>
  15. #include <dsp/audio_cal_utils.h>
  16. #include <dsp/q6afe-v2.h>
  17. #include <dsp/q6audio-v2.h>
  18. #include <dsp/q6common.h>
  19. #include <dsp/q6core.h>
  20. #include <dsp/msm-audio-event-notify.h>
  21. #include <ipc/apr_tal.h>
  22. #include "adsp_err.h"
  23. #include "q6afecal-hwdep.h"
  24. #define WAKELOCK_TIMEOUT 5000
  25. #define AFE_CLK_TOKEN 1024
  26. enum {
  27. AFE_COMMON_RX_CAL = 0,
  28. AFE_COMMON_TX_CAL,
  29. AFE_LSM_TX_CAL,
  30. AFE_AANC_CAL,
  31. AFE_FB_SPKR_PROT_CAL,
  32. AFE_HW_DELAY_CAL,
  33. AFE_SIDETONE_CAL,
  34. AFE_SIDETONE_IIR_CAL,
  35. AFE_TOPOLOGY_CAL,
  36. AFE_LSM_TOPOLOGY_CAL,
  37. AFE_CUST_TOPOLOGY_CAL,
  38. AFE_FB_SPKR_PROT_TH_VI_CAL,
  39. AFE_FB_SPKR_PROT_EX_VI_CAL,
  40. AFE_FB_SPKR_PROT_V4_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 v_vali_state {
  61. V_VALI_FAILED,
  62. V_VALI_SUCCESS,
  63. V_VALI_INCORRECT_OP_MODE,
  64. V_VALI_INACTIVE,
  65. V_VALI_WARMUP,
  66. V_VALI_IN_PROGRESS,
  67. MAX_V_VALI_STATE
  68. };
  69. enum {
  70. USE_CALIBRATED_R0TO,
  71. USE_SAFE_R0TO
  72. };
  73. enum {
  74. QUICK_CALIB_DISABLE,
  75. QUICK_CALIB_ENABLE
  76. };
  77. enum {
  78. Q6AFE_MSM_SPKR_PROCESSING = 0,
  79. Q6AFE_MSM_SPKR_CALIBRATION,
  80. Q6AFE_MSM_SPKR_FTM_MODE,
  81. Q6AFE_MSM_SPKR_V_VALI_MODE
  82. };
  83. enum {
  84. APTX_AD_48 = 0,
  85. APTX_AD_44_1 = 1
  86. };
  87. enum {
  88. AFE_MATCHED_PORT_DISABLE,
  89. AFE_MATCHED_PORT_ENABLE
  90. };
  91. enum {
  92. AFE_FBSP_V4_EX_VI_MODE_NORMAL = 0,
  93. AFE_FBSP_V4_EX_VI_MODE_FTM = 1
  94. };
  95. struct wlock {
  96. struct wakeup_source *ws;
  97. };
  98. static struct wlock wl;
  99. struct afe_ctl {
  100. void *apr;
  101. atomic_t state;
  102. atomic_t status;
  103. atomic_t clk_state;
  104. atomic_t clk_status;
  105. wait_queue_head_t wait[AFE_MAX_PORTS];
  106. wait_queue_head_t wait_wakeup;
  107. wait_queue_head_t clk_wait;
  108. struct task_struct *task;
  109. wait_queue_head_t lpass_core_hw_wait;
  110. uint32_t lpass_hw_core_client_hdl[AFE_LPASS_CORE_HW_VOTE_MAX];
  111. void (*tx_cb)(uint32_t opcode,
  112. uint32_t token, uint32_t *payload, void *priv);
  113. void (*rx_cb)(uint32_t opcode,
  114. uint32_t token, uint32_t *payload, void *priv);
  115. void *tx_private_data;
  116. void *rx_private_data;
  117. uint32_t mmap_handle;
  118. void (*pri_spdif_tx_cb)(uint32_t opcode,
  119. uint32_t token, uint32_t *payload, void *priv);
  120. void (*sec_spdif_tx_cb)(uint32_t opcode,
  121. uint32_t token, uint32_t *payload, void *priv);
  122. void *pri_spdif_tx_private_data;
  123. void *sec_spdif_tx_private_data;
  124. int pri_spdif_config_change;
  125. int sec_spdif_config_change;
  126. struct work_struct afe_spdif_work;
  127. int topology[AFE_MAX_PORTS];
  128. struct cal_type_data *cal_data[MAX_AFE_CAL_TYPES];
  129. atomic_t mem_map_cal_handles[MAX_AFE_CAL_TYPES];
  130. atomic_t mem_map_cal_index;
  131. u32 afe_cal_mode[AFE_MAX_PORTS];
  132. u16 dtmf_gen_rx_portid;
  133. struct audio_cal_info_spk_prot_cfg prot_cfg;
  134. struct afe_spkr_prot_calib_get_resp calib_data;
  135. struct audio_cal_info_sp_th_vi_ftm_cfg th_ftm_cfg;
  136. struct audio_cal_info_sp_th_vi_v_vali_cfg v_vali_cfg;
  137. struct audio_cal_info_sp_ex_vi_ftm_cfg ex_ftm_cfg;
  138. struct afe_sp_th_vi_get_param_resp th_vi_resp;
  139. struct afe_sp_th_vi_v_vali_get_param_resp th_vi_v_vali_resp;
  140. struct afe_sp_ex_vi_get_param_resp ex_vi_resp;
  141. struct afe_sp_rx_tmax_xmax_logging_resp xt_logging_resp;
  142. struct afe_sp_v4_th_vi_calib_resp spv4_calib_data;
  143. struct afe_sp_v4_param_vi_channel_map_cfg v4_ch_map_cfg;
  144. struct afe_sp_v4_gen_get_param_resp *spv4_get_param_resp_ptr;
  145. uint32_t spv4_rcvd_param_size;
  146. struct afe_av_dev_drift_get_param_resp av_dev_drift_resp;
  147. struct afe_doa_tracking_mon_get_param_resp doa_tracking_mon_resp;
  148. int vi_tx_port;
  149. int vi_rx_port;
  150. uint32_t afe_sample_rates[AFE_MAX_PORTS];
  151. struct aanc_data aanc_info;
  152. struct mutex afe_cmd_lock;
  153. struct mutex afe_apr_lock;
  154. struct mutex afe_clk_lock;
  155. int set_custom_topology;
  156. int dev_acdb_id[AFE_MAX_PORTS];
  157. routing_cb rt_cb;
  158. struct audio_uevent_data *uevent_data;
  159. /* cal info for AFE */
  160. struct afe_fw_info *fw_data;
  161. u32 island_mode[AFE_MAX_PORTS];
  162. struct vad_config vad_cfg[AFE_MAX_PORTS];
  163. struct work_struct afe_dc_work;
  164. struct notifier_block event_notifier;
  165. /* FTM spk params */
  166. uint32_t initial_cal;
  167. uint32_t v_vali_flag;
  168. };
  169. static atomic_t afe_ports_mad_type[SLIMBUS_PORT_LAST - SLIMBUS_0_RX];
  170. static unsigned long afe_configured_cmd;
  171. static struct afe_ctl this_afe;
  172. #define TIMEOUT_MS 1000
  173. #define Q6AFE_MAX_VOLUME 0x3FFF
  174. static int pcm_afe_instance[2];
  175. static int proxy_afe_instance[2];
  176. bool afe_close_done[2] = {true, true};
  177. static bool proxy_afe_started = false;
  178. #define SIZEOF_CFG_CMD(y) \
  179. (sizeof(struct apr_hdr) + sizeof(u16) + (sizeof(struct y)))
  180. static int afe_get_cal_hw_delay(int32_t path,
  181. struct audio_cal_hw_delay_entry *entry);
  182. static int remap_cal_data(struct cal_block_data *cal_block, int cal_index);
  183. int afe_get_spk_initial_cal(void)
  184. {
  185. return this_afe.initial_cal;
  186. }
  187. void afe_get_spk_r0(int *spk_r0)
  188. {
  189. uint16_t i = 0;
  190. for (; i < SP_V2_NUM_MAX_SPKRS; i++)
  191. spk_r0[i] = this_afe.prot_cfg.r0[i];
  192. }
  193. void afe_get_spk_t0(int *spk_t0)
  194. {
  195. uint16_t i = 0;
  196. for (; i < SP_V2_NUM_MAX_SPKRS; i++)
  197. spk_t0[i] = this_afe.prot_cfg.t0[i];
  198. }
  199. int afe_get_spk_v_vali_flag(void)
  200. {
  201. return this_afe.v_vali_flag;
  202. }
  203. void afe_get_spk_v_vali_sts(int *spk_v_vali_sts)
  204. {
  205. uint16_t i = 0;
  206. for (; i < SP_V2_NUM_MAX_SPKRS; i++)
  207. spk_v_vali_sts[i] =
  208. this_afe.th_vi_v_vali_resp.param.status[i];
  209. }
  210. void afe_set_spk_initial_cal(int initial_cal)
  211. {
  212. this_afe.initial_cal = initial_cal;
  213. }
  214. void afe_set_spk_v_vali_flag(int v_vali_flag)
  215. {
  216. this_afe.v_vali_flag = v_vali_flag;
  217. }
  218. int afe_get_topology(int port_id)
  219. {
  220. int topology;
  221. int port_index = afe_get_port_index(port_id);
  222. if ((port_index < 0) || (port_index >= AFE_MAX_PORTS)) {
  223. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  224. topology = -EINVAL;
  225. goto done;
  226. }
  227. topology = this_afe.topology[port_index];
  228. done:
  229. return topology;
  230. }
  231. /**
  232. * afe_set_aanc_info -
  233. * Update AFE AANC info
  234. *
  235. * @q6_aanc_info: AFE AANC info params
  236. *
  237. */
  238. void afe_set_aanc_info(struct aanc_data *q6_aanc_info)
  239. {
  240. this_afe.aanc_info.aanc_active = q6_aanc_info->aanc_active;
  241. this_afe.aanc_info.aanc_rx_port = q6_aanc_info->aanc_rx_port;
  242. this_afe.aanc_info.aanc_tx_port = q6_aanc_info->aanc_tx_port;
  243. pr_debug("%s: aanc active is %d rx port is 0x%x, tx port is 0x%x\n",
  244. __func__,
  245. this_afe.aanc_info.aanc_active,
  246. this_afe.aanc_info.aanc_rx_port,
  247. this_afe.aanc_info.aanc_tx_port);
  248. }
  249. EXPORT_SYMBOL(afe_set_aanc_info);
  250. static void afe_callback_debug_print(struct apr_client_data *data)
  251. {
  252. uint32_t *payload;
  253. payload = data->payload;
  254. if (data->payload_size >= 8)
  255. pr_debug("%s: code = 0x%x PL#0[0x%x], PL#1[0x%x], size = %d\n",
  256. __func__, data->opcode, payload[0], payload[1],
  257. data->payload_size);
  258. else if (data->payload_size >= 4)
  259. pr_debug("%s: code = 0x%x PL#0[0x%x], size = %d\n",
  260. __func__, data->opcode, payload[0],
  261. data->payload_size);
  262. else
  263. pr_debug("%s: code = 0x%x, size = %d\n",
  264. __func__, data->opcode, data->payload_size);
  265. }
  266. static void av_dev_drift_afe_cb_handler(uint32_t opcode, uint32_t *payload,
  267. uint32_t payload_size)
  268. {
  269. u32 param_id;
  270. size_t expected_size =
  271. sizeof(u32) + sizeof(struct afe_param_id_dev_timing_stats);
  272. /* Get param ID depending on command type */
  273. param_id = (opcode == AFE_PORT_CMDRSP_GET_PARAM_V3) ? payload[3] :
  274. payload[2];
  275. if (param_id != AFE_PARAM_ID_DEV_TIMING_STATS) {
  276. pr_err("%s: Unrecognized param ID %d\n", __func__, param_id);
  277. return;
  278. }
  279. switch (opcode) {
  280. case AFE_PORT_CMDRSP_GET_PARAM_V2:
  281. expected_size += sizeof(struct param_hdr_v1);
  282. if (payload_size < expected_size) {
  283. pr_err("%s: Error: received size %d, expected size %zu\n",
  284. __func__, payload_size, expected_size);
  285. return;
  286. }
  287. /* Repack response to add IID */
  288. this_afe.av_dev_drift_resp.status = payload[0];
  289. this_afe.av_dev_drift_resp.pdata.module_id = payload[1];
  290. this_afe.av_dev_drift_resp.pdata.instance_id = INSTANCE_ID_0;
  291. this_afe.av_dev_drift_resp.pdata.param_id = payload[2];
  292. this_afe.av_dev_drift_resp.pdata.param_size = payload[3];
  293. memcpy(&this_afe.av_dev_drift_resp.timing_stats, &payload[4],
  294. sizeof(struct afe_param_id_dev_timing_stats));
  295. break;
  296. case AFE_PORT_CMDRSP_GET_PARAM_V3:
  297. expected_size += sizeof(struct param_hdr_v3);
  298. if (payload_size < expected_size) {
  299. pr_err("%s: Error: received size %d, expected size %zu\n",
  300. __func__, payload_size, expected_size);
  301. return;
  302. }
  303. memcpy(&this_afe.av_dev_drift_resp, payload,
  304. sizeof(this_afe.av_dev_drift_resp));
  305. break;
  306. default:
  307. pr_err("%s: Unrecognized command %d\n", __func__, opcode);
  308. return;
  309. }
  310. if (!this_afe.av_dev_drift_resp.status) {
  311. atomic_set(&this_afe.state, 0);
  312. } else {
  313. pr_debug("%s: av_dev_drift_resp status: %d\n", __func__,
  314. this_afe.av_dev_drift_resp.status);
  315. atomic_set(&this_afe.state, -1);
  316. }
  317. }
  318. static void doa_tracking_mon_afe_cb_handler(uint32_t opcode, uint32_t *payload,
  319. uint32_t payload_size)
  320. {
  321. size_t expected_size =
  322. sizeof(u32) + sizeof(struct doa_tracking_mon_param);
  323. if (payload[0]) {
  324. atomic_set(&this_afe.status, payload[0]);
  325. atomic_set(&this_afe.state, 0);
  326. pr_err("%s: doa_tracking_mon_resp status: %d payload size %d\n",
  327. __func__, payload[0], payload_size);
  328. return;
  329. }
  330. switch (opcode) {
  331. case AFE_PORT_CMDRSP_GET_PARAM_V2:
  332. expected_size += sizeof(struct param_hdr_v1);
  333. if (payload_size < expected_size) {
  334. pr_err("%s: Error: received size %d, expected size %zu\n",
  335. __func__, payload_size, expected_size);
  336. return;
  337. }
  338. /* Repack response to add IID */
  339. this_afe.doa_tracking_mon_resp.status = payload[0];
  340. this_afe.doa_tracking_mon_resp.pdata.module_id = payload[1];
  341. this_afe.doa_tracking_mon_resp.pdata.instance_id =
  342. INSTANCE_ID_0;
  343. this_afe.doa_tracking_mon_resp.pdata.param_id = payload[2];
  344. this_afe.doa_tracking_mon_resp.pdata.param_size = payload[3];
  345. memcpy(&this_afe.doa_tracking_mon_resp.doa, &payload[4],
  346. sizeof(struct doa_tracking_mon_param));
  347. break;
  348. case AFE_PORT_CMDRSP_GET_PARAM_V3:
  349. expected_size += sizeof(struct param_hdr_v3);
  350. if (payload_size < expected_size) {
  351. pr_err("%s: Error: received size %d, expected size %zu\n",
  352. __func__, payload_size, expected_size);
  353. return;
  354. }
  355. memcpy(&this_afe.doa_tracking_mon_resp, payload,
  356. sizeof(this_afe.doa_tracking_mon_resp));
  357. break;
  358. default:
  359. pr_err("%s: Unrecognized command %d\n", __func__, opcode);
  360. return;
  361. }
  362. atomic_set(&this_afe.state, 0);
  363. }
  364. static int32_t sp_make_afe_callback(uint32_t opcode, uint32_t *payload,
  365. uint32_t payload_size)
  366. {
  367. struct param_hdr_v3 param_hdr;
  368. u32 *data_dest = NULL;
  369. u32 *data_start = NULL;
  370. size_t expected_size = sizeof(u32);
  371. uint32_t num_ch = 0;
  372. memset(&param_hdr, 0, sizeof(param_hdr));
  373. /* Set command specific details */
  374. switch (opcode) {
  375. case AFE_PORT_CMDRSP_GET_PARAM_V2:
  376. if (payload_size < (5 * sizeof(uint32_t))) {
  377. pr_err("%s: Error: size %d is less than expected\n",
  378. __func__, payload_size);
  379. return -EINVAL;
  380. }
  381. expected_size += sizeof(struct param_hdr_v1);
  382. param_hdr.module_id = payload[1];
  383. param_hdr.instance_id = INSTANCE_ID_0;
  384. param_hdr.param_id = payload[2];
  385. param_hdr.param_size = payload[3];
  386. data_start = &payload[4];
  387. break;
  388. case AFE_PORT_CMDRSP_GET_PARAM_V3:
  389. if (payload_size < (6 * sizeof(uint32_t))) {
  390. pr_err("%s: Error: size %d is less than expected\n",
  391. __func__, payload_size);
  392. return -EINVAL;
  393. }
  394. expected_size += sizeof(struct param_hdr_v3);
  395. if (payload_size < expected_size) {
  396. pr_err("%s: Error: size %d is less than expected\n",
  397. __func__, payload_size);
  398. return -EINVAL;
  399. }
  400. memcpy(&param_hdr, &payload[1], sizeof(struct param_hdr_v3));
  401. data_start = &payload[5];
  402. break;
  403. default:
  404. pr_err("%s: Unrecognized command %d\n", __func__, opcode);
  405. return -EINVAL;
  406. }
  407. switch (param_hdr.param_id) {
  408. case AFE_PARAM_ID_CALIB_RES_CFG_V2:
  409. expected_size += sizeof(struct asm_calib_res_cfg);
  410. data_dest = (u32 *) &this_afe.calib_data;
  411. break;
  412. case AFE_PARAM_ID_SP_V2_TH_VI_FTM_PARAMS:
  413. expected_size += sizeof(struct afe_sp_th_vi_ftm_params);
  414. data_dest = (u32 *) &this_afe.th_vi_resp;
  415. break;
  416. case AFE_PARAM_ID_SP_V2_TH_VI_V_VALI_PARAMS:
  417. expected_size += sizeof(struct afe_sp_th_vi_v_vali_params);
  418. data_dest = (u32 *) &this_afe.th_vi_v_vali_resp;
  419. break;
  420. case AFE_PARAM_ID_SP_V2_EX_VI_FTM_PARAMS:
  421. expected_size += sizeof(struct afe_sp_ex_vi_ftm_params);
  422. data_dest = (u32 *) &this_afe.ex_vi_resp;
  423. break;
  424. case AFE_PARAM_ID_SP_RX_TMAX_XMAX_LOGGING:
  425. expected_size += sizeof(
  426. struct afe_sp_rx_tmax_xmax_logging_param);
  427. data_dest = (u32 *) &this_afe.xt_logging_resp;
  428. break;
  429. case AFE_PARAM_ID_SP_V4_CALIB_RES_CFG:
  430. expected_size += sizeof(
  431. struct afe_sp_v4_param_th_vi_calib_res_cfg);
  432. data_dest = (u32 *) &this_afe.spv4_calib_data;
  433. break;
  434. case AFE_PARAM_ID_SP_V4_TH_VI_FTM_PARAMS:
  435. num_ch = data_start[0];
  436. this_afe.spv4_rcvd_param_size =
  437. sizeof(struct afe_sp_v4_gen_get_param_resp) +
  438. sizeof(struct afe_sp_v4_param_th_vi_ftm_params) +
  439. (num_ch * sizeof(struct afe_sp_v4_channel_ftm_params));
  440. this_afe.spv4_get_param_resp_ptr =
  441. kzalloc(this_afe.spv4_rcvd_param_size, GFP_ATOMIC);
  442. data_dest = (u32 *)this_afe.spv4_get_param_resp_ptr;
  443. expected_size +=
  444. sizeof(struct afe_sp_v4_param_th_vi_ftm_params) +
  445. (num_ch * sizeof(struct afe_sp_v4_channel_ftm_params));
  446. break;
  447. case AFE_PARAM_ID_SP_V4_TH_VI_V_VALI_PARAMS:
  448. num_ch = data_start[0];
  449. this_afe.spv4_rcvd_param_size =
  450. sizeof(struct afe_sp_v4_gen_get_param_resp) +
  451. sizeof(struct afe_sp_v4_param_th_vi_v_vali_params) +
  452. (num_ch *
  453. sizeof(struct afe_sp_v4_channel_v_vali_params));
  454. this_afe.spv4_get_param_resp_ptr =
  455. kzalloc(this_afe.spv4_rcvd_param_size, GFP_ATOMIC);
  456. data_dest = (u32 *)this_afe.spv4_get_param_resp_ptr;
  457. expected_size +=
  458. sizeof(struct afe_sp_v4_param_th_vi_v_vali_params) +
  459. (num_ch *
  460. sizeof(struct afe_sp_v4_channel_v_vali_params));
  461. break;
  462. case AFE_PARAM_ID_SP_V4_EX_VI_FTM_PARAMS:
  463. num_ch = data_start[0];
  464. this_afe.spv4_rcvd_param_size =
  465. sizeof(struct afe_sp_v4_gen_get_param_resp) +
  466. sizeof(struct afe_sp_v4_param_ex_vi_ftm_params) +
  467. (num_ch *
  468. sizeof(struct afe_sp_v4_channel_ex_vi_ftm_params));
  469. this_afe.spv4_get_param_resp_ptr =
  470. kzalloc(this_afe.spv4_rcvd_param_size, GFP_ATOMIC);
  471. data_dest = (u32 *)this_afe.spv4_get_param_resp_ptr;
  472. expected_size +=
  473. sizeof(struct afe_sp_v4_param_ex_vi_ftm_params) +
  474. (num_ch *
  475. sizeof(struct afe_sp_v4_channel_ex_vi_ftm_params));
  476. break;
  477. case AFE_PARAM_ID_SP_V4_RX_TMAX_XMAX_LOGGING:
  478. num_ch = data_start[0];
  479. this_afe.spv4_rcvd_param_size =
  480. sizeof(struct afe_sp_v4_gen_get_param_resp) +
  481. sizeof(struct afe_sp_v4_param_tmax_xmax_logging) +
  482. (num_ch *
  483. sizeof(struct afe_sp_v4_channel_tmax_xmax_params));
  484. this_afe.spv4_get_param_resp_ptr =
  485. kzalloc(this_afe.spv4_rcvd_param_size, GFP_ATOMIC);
  486. data_dest = (u32 *)this_afe.spv4_get_param_resp_ptr;
  487. expected_size +=
  488. sizeof(struct afe_sp_v4_param_tmax_xmax_logging) +
  489. (num_ch *
  490. sizeof(struct afe_sp_v4_channel_tmax_xmax_params));
  491. break;
  492. default:
  493. pr_err("%s: Unrecognized param ID %d\n", __func__,
  494. param_hdr.param_id);
  495. return -EINVAL;
  496. }
  497. if (!data_dest)
  498. return -ENOMEM;
  499. if (payload_size < expected_size) {
  500. pr_err(
  501. "%s: Error: received size %d, expected size %zu for param %d\n",
  502. __func__, payload_size, expected_size,
  503. param_hdr.param_id);
  504. return -EINVAL;
  505. }
  506. data_dest[0] = payload[0];
  507. memcpy(&data_dest[1], &param_hdr, sizeof(struct param_hdr_v3));
  508. memcpy(&data_dest[5], data_start, param_hdr.param_size);
  509. if (!data_dest[0]) {
  510. atomic_set(&this_afe.state, 0);
  511. } else {
  512. pr_debug("%s: status: %d", __func__, data_dest[0]);
  513. atomic_set(&this_afe.state, -1);
  514. }
  515. return 0;
  516. }
  517. static void afe_notify_dc_presence(void)
  518. {
  519. pr_debug("%s: DC detected\n", __func__);
  520. msm_aud_evt_notifier_call_chain(MSM_AUD_DC_EVENT, NULL);
  521. schedule_work(&this_afe.afe_dc_work);
  522. }
  523. static void afe_notify_dc_presence_work_fn(struct work_struct *work)
  524. {
  525. int ret = 0;
  526. char event[] = "DC_PRESENCE=TRUE";
  527. ret = q6core_send_uevent(this_afe.uevent_data, event);
  528. if (ret)
  529. pr_err("%s: Send UEvent %s failed :%d\n",
  530. __func__, event, ret);
  531. }
  532. static int afe_aud_event_notify(struct notifier_block *self,
  533. unsigned long action, void *data)
  534. {
  535. switch (action) {
  536. case SWR_WAKE_IRQ_REGISTER:
  537. afe_send_cmd_wakeup_register(data, true);
  538. break;
  539. case SWR_WAKE_IRQ_DEREGISTER:
  540. afe_send_cmd_wakeup_register(data, false);
  541. break;
  542. default:
  543. pr_err("%s: invalid event type: %lu\n", __func__, action);
  544. return -EINVAL;
  545. }
  546. return 0;
  547. }
  548. static void afe_notify_spdif_fmt_update_work_fn(struct work_struct *work)
  549. {
  550. int ret = 0;
  551. char event_pri[] = "PRI_SPDIF_TX=MEDIA_CONFIG_CHANGE";
  552. char event_sec[] = "SEC_SPDIF_TX=MEDIA_CONFIG_CHANGE";
  553. if (this_afe.pri_spdif_config_change) {
  554. this_afe.pri_spdif_config_change = 0;
  555. ret = q6core_send_uevent(this_afe.uevent_data, event_pri);
  556. if (ret)
  557. pr_err("%s: Send UEvent %s failed :%d\n",
  558. __func__, event_pri, ret);
  559. }
  560. if (this_afe.sec_spdif_config_change) {
  561. this_afe.sec_spdif_config_change = 0;
  562. ret = q6core_send_uevent(this_afe.uevent_data, event_sec);
  563. if (ret)
  564. pr_err("%s: Send UEvent %s failed :%d\n",
  565. __func__, event_sec, ret);
  566. }
  567. }
  568. static void afe_notify_spdif_fmt_update(void *payload)
  569. {
  570. struct afe_port_mod_evt_rsp_hdr *evt_pl;
  571. evt_pl = (struct afe_port_mod_evt_rsp_hdr *)payload;
  572. if (evt_pl->port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX)
  573. this_afe.pri_spdif_config_change = 1;
  574. else
  575. this_afe.sec_spdif_config_change = 1;
  576. schedule_work(&this_afe.afe_spdif_work);
  577. }
  578. static bool afe_token_is_valid(uint32_t token)
  579. {
  580. if (token >= AFE_MAX_PORTS) {
  581. pr_err("%s: token %d is invalid.\n", __func__, token);
  582. return false;
  583. }
  584. return true;
  585. }
  586. static int32_t afe_callback(struct apr_client_data *data, void *priv)
  587. {
  588. uint16_t i = 0;
  589. if (!data) {
  590. pr_err("%s: Invalid param data\n", __func__);
  591. return -EINVAL;
  592. }
  593. if (data->opcode == RESET_EVENTS) {
  594. pr_debug("%s: reset event = %d %d apr[%pK]\n",
  595. __func__,
  596. data->reset_event, data->reset_proc, this_afe.apr);
  597. cal_utils_clear_cal_block_q6maps(MAX_AFE_CAL_TYPES,
  598. this_afe.cal_data);
  599. /* Reset the custom topology mode: to resend again to AFE. */
  600. mutex_lock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  601. this_afe.set_custom_topology = 1;
  602. mutex_unlock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  603. rtac_clear_mapping(AFE_RTAC_CAL);
  604. if (this_afe.apr) {
  605. apr_reset(this_afe.apr);
  606. atomic_set(&this_afe.state, 0);
  607. this_afe.apr = NULL;
  608. rtac_set_afe_handle(this_afe.apr);
  609. }
  610. /* Reset the core client handle in SSR/PDR use cases */
  611. mutex_lock(&this_afe.afe_cmd_lock);
  612. for (i = 0; i < AFE_LPASS_CORE_HW_VOTE_MAX; i++)
  613. this_afe.lpass_hw_core_client_hdl[i] = 0;
  614. mutex_unlock(&this_afe.afe_cmd_lock);
  615. /*
  616. * Pass reset events to proxy driver, if cb is registered
  617. */
  618. if (this_afe.tx_cb) {
  619. this_afe.tx_cb(data->opcode, data->token,
  620. data->payload,
  621. this_afe.tx_private_data);
  622. this_afe.tx_cb = NULL;
  623. }
  624. if (this_afe.rx_cb) {
  625. this_afe.rx_cb(data->opcode, data->token,
  626. data->payload,
  627. this_afe.rx_private_data);
  628. this_afe.rx_cb = NULL;
  629. }
  630. return 0;
  631. }
  632. afe_callback_debug_print(data);
  633. if (data->opcode == AFE_PORT_CMDRSP_GET_PARAM_V2 ||
  634. data->opcode == AFE_PORT_CMDRSP_GET_PARAM_V3) {
  635. uint32_t *payload = data->payload;
  636. uint32_t param_id;
  637. uint32_t param_id_pos = 0;
  638. if (!payload || (data->token >= AFE_MAX_PORTS)) {
  639. pr_err("%s: Error: size %d payload %pK token %d\n",
  640. __func__, data->payload_size,
  641. payload, data->token);
  642. return -EINVAL;
  643. }
  644. if (rtac_make_afe_callback(data->payload,
  645. data->payload_size))
  646. return 0;
  647. if (data->opcode == AFE_PORT_CMDRSP_GET_PARAM_V3)
  648. param_id_pos = 4;
  649. else
  650. param_id_pos = 3;
  651. if (data->payload_size >= param_id_pos * sizeof(uint32_t))
  652. param_id = payload[param_id_pos - 1];
  653. else {
  654. pr_err("%s: Error: size %d is less than expected\n",
  655. __func__, data->payload_size);
  656. return -EINVAL;
  657. }
  658. if (param_id == AUDPROC_PARAM_ID_FFV_DOA_TRACKING_MONITOR) {
  659. doa_tracking_mon_afe_cb_handler(data->opcode,
  660. data->payload, data->payload_size);
  661. } else if (param_id == AFE_PARAM_ID_DEV_TIMING_STATS) {
  662. av_dev_drift_afe_cb_handler(data->opcode, data->payload,
  663. data->payload_size);
  664. } else {
  665. if (sp_make_afe_callback(data->opcode, data->payload,
  666. data->payload_size))
  667. return -EINVAL;
  668. }
  669. if (afe_token_is_valid(data->token))
  670. wake_up(&this_afe.wait[data->token]);
  671. else
  672. return -EINVAL;
  673. } else if (data->opcode == AFE_EVENT_MBHC_DETECTION_SW_WA) {
  674. msm_aud_evt_notifier_call_chain(SWR_WAKE_IRQ_EVENT, NULL);
  675. } else if (data->opcode ==
  676. AFE_CMD_RSP_REMOTE_LPASS_CORE_HW_VOTE_REQUEST) {
  677. uint32_t *payload = data->payload;
  678. pr_debug("%s: AFE_CMD_RSP_REMOTE_LPASS_CORE_HW_VOTE_REQUEST handle %d\n",
  679. __func__, payload[0]);
  680. if (data->token < AFE_LPASS_CORE_HW_VOTE_MAX)
  681. this_afe.lpass_hw_core_client_hdl[data->token] =
  682. payload[0];
  683. atomic_set(&this_afe.clk_state, 0);
  684. atomic_set(&this_afe.clk_status, 0);
  685. wake_up(&this_afe.lpass_core_hw_wait);
  686. } else if (data->payload_size) {
  687. uint32_t *payload;
  688. uint16_t port_id = 0;
  689. payload = data->payload;
  690. if (data->opcode == APR_BASIC_RSP_RESULT) {
  691. if (data->payload_size < (2 * sizeof(uint32_t))) {
  692. pr_err("%s: Error: size %d is less than expected\n",
  693. __func__, data->payload_size);
  694. return -EINVAL;
  695. }
  696. pr_debug("%s:opcode = 0x%x cmd = 0x%x status = 0x%x token=%d\n",
  697. __func__, data->opcode,
  698. payload[0], payload[1], data->token);
  699. /* payload[1] contains the error status for response */
  700. if (payload[1] != 0) {
  701. if(data->token == AFE_CLK_TOKEN)
  702. atomic_set(&this_afe.clk_status, payload[1]);
  703. else
  704. atomic_set(&this_afe.status, payload[1]);
  705. pr_err("%s: cmd = 0x%x returned error = 0x%x\n",
  706. __func__, payload[0], payload[1]);
  707. }
  708. switch (payload[0]) {
  709. case AFE_PORT_CMD_SET_PARAM_V2:
  710. case AFE_PORT_CMD_SET_PARAM_V3:
  711. if (rtac_make_afe_callback(payload,
  712. data->payload_size))
  713. return 0;
  714. case AFE_PORT_CMD_DEVICE_STOP:
  715. case AFE_PORT_CMD_DEVICE_START:
  716. case AFE_PSEUDOPORT_CMD_START:
  717. case AFE_PSEUDOPORT_CMD_STOP:
  718. case AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS:
  719. case AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS:
  720. case AFE_SERVICE_CMD_UNREGISTER_RT_PORT_DRIVER:
  721. case AFE_PORTS_CMD_DTMF_CTL:
  722. case AFE_SVC_CMD_SET_PARAM:
  723. case AFE_SVC_CMD_SET_PARAM_V2:
  724. case AFE_PORT_CMD_MOD_EVENT_CFG:
  725. if(data->token == AFE_CLK_TOKEN) {
  726. atomic_set(&this_afe.clk_state, 0);
  727. wake_up(&this_afe.clk_wait);
  728. } else {
  729. atomic_set(&this_afe.state, 0);
  730. if (afe_token_is_valid(data->token))
  731. wake_up(&this_afe.wait[data->token]);
  732. else
  733. return -EINVAL;
  734. }
  735. break;
  736. case AFE_SERVICE_CMD_REGISTER_RT_PORT_DRIVER:
  737. break;
  738. case AFE_PORT_DATA_CMD_RT_PROXY_PORT_WRITE_V2:
  739. port_id = RT_PROXY_PORT_001_TX;
  740. break;
  741. case AFE_PORT_DATA_CMD_RT_PROXY_PORT_READ_V2:
  742. port_id = RT_PROXY_PORT_001_RX;
  743. break;
  744. case AFE_CMD_ADD_TOPOLOGIES:
  745. atomic_set(&this_afe.state, 0);
  746. if (afe_token_is_valid(data->token))
  747. wake_up(&this_afe.wait[data->token]);
  748. else
  749. return -EINVAL;
  750. pr_debug("%s: AFE_CMD_ADD_TOPOLOGIES cmd 0x%x\n",
  751. __func__, payload[1]);
  752. break;
  753. case AFE_PORT_CMD_GET_PARAM_V2:
  754. case AFE_PORT_CMD_GET_PARAM_V3:
  755. /*
  756. * Should only come here if there is an APR
  757. * error or malformed APR packet. Otherwise
  758. * response will be returned as
  759. * AFE_PORT_CMDRSP_GET_PARAM_V2/3
  760. */
  761. pr_debug("%s: AFE Get Param opcode 0x%x token 0x%x src %d dest %d\n",
  762. __func__, data->opcode, data->token,
  763. data->src_port, data->dest_port);
  764. if (payload[1] != 0) {
  765. pr_err("%s: AFE Get Param failed with error %d\n",
  766. __func__, payload[1]);
  767. if (rtac_make_afe_callback(
  768. payload,
  769. data->payload_size))
  770. return 0;
  771. }
  772. atomic_set(&this_afe.state, payload[1]);
  773. if (afe_token_is_valid(data->token))
  774. wake_up(&this_afe.wait[data->token]);
  775. else
  776. return -EINVAL;
  777. break;
  778. case AFE_CMD_REMOTE_LPASS_CORE_HW_VOTE_REQUEST:
  779. case AFE_CMD_REMOTE_LPASS_CORE_HW_DEVOTE_REQUEST:
  780. atomic_set(&this_afe.clk_state, 0);
  781. if (payload[1] != 0)
  782. atomic_set(&this_afe.clk_status,
  783. payload[1]);
  784. wake_up(&this_afe.lpass_core_hw_wait);
  785. break;
  786. case AFE_SVC_CMD_EVENT_CFG:
  787. atomic_set(&this_afe.state, payload[1]);
  788. wake_up(&this_afe.wait_wakeup);
  789. break;
  790. default:
  791. pr_err("%s: Unknown cmd 0x%x\n", __func__,
  792. payload[0]);
  793. break;
  794. }
  795. } else if (data->opcode ==
  796. AFE_SERVICE_CMDRSP_SHARED_MEM_MAP_REGIONS) {
  797. pr_debug("%s: mmap_handle: 0x%x, cal index %d\n",
  798. __func__, payload[0],
  799. atomic_read(&this_afe.mem_map_cal_index));
  800. if (atomic_read(&this_afe.mem_map_cal_index) != -1)
  801. atomic_set(&this_afe.mem_map_cal_handles[
  802. atomic_read(
  803. &this_afe.mem_map_cal_index)],
  804. (uint32_t)payload[0]);
  805. else
  806. this_afe.mmap_handle = payload[0];
  807. atomic_set(&this_afe.state, 0);
  808. if (afe_token_is_valid(data->token))
  809. wake_up(&this_afe.wait[data->token]);
  810. else
  811. return -EINVAL;
  812. } else if (data->opcode == AFE_EVENT_RT_PROXY_PORT_STATUS) {
  813. port_id = (uint16_t)(0x0000FFFF & payload[0]);
  814. } else if (data->opcode == AFE_PORT_MOD_EVENT) {
  815. u32 flag_dc_presence[2];
  816. uint32_t *payload = data->payload;
  817. struct afe_port_mod_evt_rsp_hdr *evt_pl =
  818. (struct afe_port_mod_evt_rsp_hdr *)payload;
  819. if (!payload || (data->token >= AFE_MAX_PORTS)) {
  820. pr_err("%s: Error: size %d payload %pK token %d\n",
  821. __func__, data->payload_size,
  822. payload, data->token);
  823. return -EINVAL;
  824. }
  825. if ((evt_pl->module_id == AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI) &&
  826. (evt_pl->event_id == AFE_PORT_SP_DC_DETECTION_EVENT) &&
  827. (evt_pl->payload_size == sizeof(flag_dc_presence))) {
  828. memcpy(&flag_dc_presence,
  829. (uint8_t *)payload +
  830. sizeof(struct afe_port_mod_evt_rsp_hdr),
  831. evt_pl->payload_size);
  832. if (flag_dc_presence[0] == 1 ||
  833. flag_dc_presence[1] == 1) {
  834. afe_notify_dc_presence();
  835. }
  836. } else if ((evt_pl->module_id ==
  837. AFE_MODULE_SPEAKER_PROTECTION_V4_VI) &&
  838. (evt_pl->event_id ==
  839. AFE_PORT_SP_DC_DETECTION_EVENT)) {
  840. bool dc_detected = false;
  841. uint32_t *num_channels =
  842. (uint32_t *)((uint8_t *)payload +
  843. sizeof(struct afe_port_mod_evt_rsp_hdr));
  844. uint32_t *dc_presence_flag = num_channels + 1;
  845. for (i = 0; i < *num_channels; i++) {
  846. if (dc_presence_flag[i] == 1)
  847. dc_detected = true;
  848. }
  849. if (dc_detected)
  850. afe_notify_dc_presence();
  851. } else if (evt_pl->port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX) {
  852. if (this_afe.pri_spdif_tx_cb) {
  853. this_afe.pri_spdif_tx_cb(data->opcode,
  854. data->token, data->payload,
  855. this_afe.pri_spdif_tx_private_data);
  856. }
  857. afe_notify_spdif_fmt_update(data->payload);
  858. } else if (evt_pl->port_id == AFE_PORT_ID_SECONDARY_SPDIF_TX) {
  859. if (this_afe.sec_spdif_tx_cb) {
  860. this_afe.sec_spdif_tx_cb(data->opcode,
  861. data->token, data->payload,
  862. this_afe.sec_spdif_tx_private_data);
  863. }
  864. afe_notify_spdif_fmt_update(data->payload);
  865. } else {
  866. pr_debug("%s: mod ID = 0x%x event_id = 0x%x\n",
  867. __func__, evt_pl->module_id,
  868. evt_pl->event_id);
  869. }
  870. }
  871. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  872. switch (port_id) {
  873. case RT_PROXY_PORT_001_TX: {
  874. if (this_afe.tx_cb) {
  875. this_afe.tx_cb(data->opcode, data->token,
  876. data->payload,
  877. this_afe.tx_private_data);
  878. }
  879. break;
  880. }
  881. case RT_PROXY_PORT_001_RX:
  882. case RT_PROXY_PORT_002_RX:
  883. {
  884. if (this_afe.rx_cb) {
  885. this_afe.rx_cb(data->opcode, data->token,
  886. data->payload,
  887. this_afe.rx_private_data);
  888. }
  889. break;
  890. }
  891. default:
  892. pr_debug("%s: default case 0x%x\n", __func__, port_id);
  893. break;
  894. }
  895. }
  896. return 0;
  897. }
  898. /**
  899. * afe_get_port_type -
  900. * Retrieve AFE port type whether RX or TX
  901. *
  902. * @port_id: AFE Port ID number
  903. *
  904. * Returns RX/TX type.
  905. */
  906. int afe_get_port_type(u16 port_id)
  907. {
  908. int ret = MSM_AFE_PORT_TYPE_RX;
  909. switch (port_id) {
  910. case VOICE_RECORD_RX:
  911. case VOICE_RECORD_TX:
  912. ret = MSM_AFE_PORT_TYPE_TX;
  913. break;
  914. case VOICE_PLAYBACK_TX:
  915. case VOICE2_PLAYBACK_TX:
  916. ret = MSM_AFE_PORT_TYPE_RX;
  917. break;
  918. default:
  919. /* Odd numbered ports are TX and Rx are Even numbered */
  920. if (port_id & 0x1)
  921. ret = MSM_AFE_PORT_TYPE_TX;
  922. else
  923. ret = MSM_AFE_PORT_TYPE_RX;
  924. break;
  925. }
  926. return ret;
  927. }
  928. EXPORT_SYMBOL(afe_get_port_type);
  929. int afe_sizeof_cfg_cmd(u16 port_id)
  930. {
  931. int ret_size;
  932. switch (port_id) {
  933. case PRIMARY_I2S_RX:
  934. case PRIMARY_I2S_TX:
  935. case SECONDARY_I2S_RX:
  936. case SECONDARY_I2S_TX:
  937. case MI2S_RX:
  938. case MI2S_TX:
  939. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  940. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  941. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  942. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  943. case AFE_PORT_ID_QUINARY_MI2S_RX:
  944. case AFE_PORT_ID_QUINARY_MI2S_TX:
  945. case AFE_PORT_ID_SENARY_MI2S_RX:
  946. case AFE_PORT_ID_SENARY_MI2S_TX:
  947. ret_size = SIZEOF_CFG_CMD(afe_param_id_i2s_cfg);
  948. break;
  949. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  950. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  951. ret_size = SIZEOF_CFG_CMD(afe_param_id_meta_i2s_cfg);
  952. break;
  953. case HDMI_RX:
  954. case DISPLAY_PORT_RX:
  955. ret_size =
  956. SIZEOF_CFG_CMD(afe_param_id_hdmi_multi_chan_audio_cfg);
  957. break;
  958. case AFE_PORT_ID_PRIMARY_SPDIF_RX:
  959. case AFE_PORT_ID_PRIMARY_SPDIF_TX:
  960. case AFE_PORT_ID_SECONDARY_SPDIF_RX:
  961. case AFE_PORT_ID_SECONDARY_SPDIF_TX:
  962. ret_size =
  963. SIZEOF_CFG_CMD(afe_param_id_spdif_cfg_v2);
  964. break;
  965. case SLIMBUS_0_RX:
  966. case SLIMBUS_0_TX:
  967. case SLIMBUS_1_RX:
  968. case SLIMBUS_1_TX:
  969. case SLIMBUS_2_RX:
  970. case SLIMBUS_2_TX:
  971. case SLIMBUS_3_RX:
  972. case SLIMBUS_3_TX:
  973. case SLIMBUS_4_RX:
  974. case SLIMBUS_4_TX:
  975. case SLIMBUS_5_RX:
  976. case SLIMBUS_5_TX:
  977. case SLIMBUS_6_RX:
  978. case SLIMBUS_6_TX:
  979. case SLIMBUS_7_RX:
  980. case SLIMBUS_7_TX:
  981. case SLIMBUS_8_RX:
  982. case SLIMBUS_8_TX:
  983. case SLIMBUS_9_RX:
  984. case SLIMBUS_9_TX:
  985. ret_size = SIZEOF_CFG_CMD(afe_param_id_slimbus_cfg);
  986. break;
  987. case VOICE_PLAYBACK_TX:
  988. case VOICE2_PLAYBACK_TX:
  989. case VOICE_RECORD_RX:
  990. case VOICE_RECORD_TX:
  991. ret_size = SIZEOF_CFG_CMD(afe_param_id_pseudo_port_cfg);
  992. break;
  993. case RT_PROXY_PORT_001_RX:
  994. case RT_PROXY_PORT_001_TX:
  995. case RT_PROXY_PORT_002_RX:
  996. case RT_PROXY_PORT_002_TX:
  997. ret_size = SIZEOF_CFG_CMD(afe_param_id_rt_proxy_port_cfg);
  998. break;
  999. case AFE_PORT_ID_USB_RX:
  1000. case AFE_PORT_ID_USB_TX:
  1001. ret_size = SIZEOF_CFG_CMD(afe_param_id_usb_audio_cfg);
  1002. break;
  1003. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  1004. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  1005. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  1006. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  1007. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  1008. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  1009. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  1010. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  1011. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  1012. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  1013. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  1014. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  1015. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  1016. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  1017. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  1018. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  1019. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  1020. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  1021. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  1022. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  1023. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  1024. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  1025. ret_size = SIZEOF_CFG_CMD(afe_param_id_cdc_dma_cfg_t);
  1026. break;
  1027. case AFE_PORT_ID_PRIMARY_PCM_RX:
  1028. case AFE_PORT_ID_PRIMARY_PCM_TX:
  1029. case AFE_PORT_ID_SECONDARY_PCM_RX:
  1030. case AFE_PORT_ID_SECONDARY_PCM_TX:
  1031. case AFE_PORT_ID_TERTIARY_PCM_RX:
  1032. case AFE_PORT_ID_TERTIARY_PCM_TX:
  1033. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  1034. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  1035. case AFE_PORT_ID_QUINARY_PCM_RX:
  1036. case AFE_PORT_ID_QUINARY_PCM_TX:
  1037. case AFE_PORT_ID_SENARY_PCM_RX:
  1038. case AFE_PORT_ID_SENARY_PCM_TX:
  1039. default:
  1040. pr_debug("%s: default case 0x%x\n", __func__, port_id);
  1041. ret_size = SIZEOF_CFG_CMD(afe_param_id_pcm_cfg);
  1042. break;
  1043. }
  1044. return ret_size;
  1045. }
  1046. /**
  1047. * afe_q6_interface_prepare -
  1048. * wrapper API to check Q6 AFE registered to APR otherwise registers
  1049. *
  1050. * Returns 0 on success or error on failure.
  1051. */
  1052. int afe_q6_interface_prepare(void)
  1053. {
  1054. int ret = 0;
  1055. pr_debug("%s:\n", __func__);
  1056. if (this_afe.apr == NULL) {
  1057. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  1058. 0xFFFFFFFF, &this_afe);
  1059. if (this_afe.apr == NULL) {
  1060. pr_err("%s: Unable to register AFE\n", __func__);
  1061. ret = -ENETRESET;
  1062. }
  1063. rtac_set_afe_handle(this_afe.apr);
  1064. }
  1065. return ret;
  1066. }
  1067. EXPORT_SYMBOL(afe_q6_interface_prepare);
  1068. /*
  1069. * afe_apr_send_pkt : returns 0 on success, negative otherwise.
  1070. */
  1071. static int afe_apr_send_pkt(void *data, wait_queue_head_t *wait)
  1072. {
  1073. int ret;
  1074. mutex_lock(&this_afe.afe_apr_lock);
  1075. if (wait)
  1076. atomic_set(&this_afe.state, 1);
  1077. atomic_set(&this_afe.status, 0);
  1078. ret = apr_send_pkt(this_afe.apr, data);
  1079. if (ret > 0) {
  1080. if (wait) {
  1081. ret = wait_event_timeout(*wait,
  1082. (atomic_read(&this_afe.state) == 0),
  1083. msecs_to_jiffies(2 * TIMEOUT_MS));
  1084. if (!ret) {
  1085. pr_err_ratelimited("%s: request timedout\n",
  1086. __func__);
  1087. ret = -ETIMEDOUT;
  1088. trace_printk("%s: wait for ADSP response timed out\n",
  1089. __func__);
  1090. } else if (atomic_read(&this_afe.status) > 0) {
  1091. pr_err("%s: DSP returned error[%s]\n", __func__,
  1092. adsp_err_get_err_str(atomic_read(
  1093. &this_afe.status)));
  1094. ret = adsp_err_get_lnx_err_code(
  1095. atomic_read(&this_afe.status));
  1096. } else {
  1097. ret = 0;
  1098. }
  1099. } else {
  1100. ret = 0;
  1101. }
  1102. } else if (ret == 0) {
  1103. pr_err("%s: packet not transmitted\n", __func__);
  1104. /* apr_send_pkt can return 0 when nothing is transmitted */
  1105. ret = -EINVAL;
  1106. }
  1107. pr_debug("%s: leave %d\n", __func__, ret);
  1108. mutex_unlock(&this_afe.afe_apr_lock);
  1109. return ret;
  1110. }
  1111. /*
  1112. * afe_apr_send_clk_pkt : returns 0 on success, negative otherwise.
  1113. */
  1114. static int afe_apr_send_clk_pkt(void *data, wait_queue_head_t *wait)
  1115. {
  1116. int ret;
  1117. if (wait)
  1118. atomic_set(&this_afe.clk_state, 1);
  1119. atomic_set(&this_afe.clk_status, 0);
  1120. ret = apr_send_pkt(this_afe.apr, data);
  1121. if (ret > 0) {
  1122. if (wait) {
  1123. ret = wait_event_timeout(*wait,
  1124. (atomic_read(&this_afe.clk_state) == 0),
  1125. msecs_to_jiffies(2 * TIMEOUT_MS));
  1126. if (!ret) {
  1127. pr_err("%s: timeout\n", __func__);
  1128. ret = -ETIMEDOUT;
  1129. } else if (atomic_read(&this_afe.clk_status) > 0) {
  1130. pr_err("%s: DSP returned error[%s]\n", __func__,
  1131. adsp_err_get_err_str(atomic_read(
  1132. &this_afe.clk_status)));
  1133. ret = adsp_err_get_lnx_err_code(
  1134. atomic_read(&this_afe.clk_status));
  1135. } else {
  1136. ret = 0;
  1137. }
  1138. } else {
  1139. ret = 0;
  1140. }
  1141. } else if (ret == 0) {
  1142. pr_err("%s: packet not transmitted\n", __func__);
  1143. /* apr_send_pkt can return 0 when nothing is transmitted */
  1144. ret = -EINVAL;
  1145. }
  1146. pr_debug("%s: leave %d\n", __func__, ret);
  1147. return ret;
  1148. }
  1149. /* This function shouldn't be called directly. Instead call q6afe_set_params. */
  1150. static int q6afe_set_params_v2(u16 port_id, int index,
  1151. struct mem_mapping_hdr *mem_hdr,
  1152. u8 *packed_param_data, u32 packed_data_size)
  1153. {
  1154. struct afe_port_cmd_set_param_v2 *set_param = NULL;
  1155. uint32_t size = sizeof(struct afe_port_cmd_set_param_v2);
  1156. int rc = 0;
  1157. if (packed_param_data != NULL)
  1158. size += packed_data_size;
  1159. set_param = kzalloc(size, GFP_KERNEL);
  1160. if (set_param == NULL)
  1161. return -ENOMEM;
  1162. set_param->apr_hdr.hdr_field =
  1163. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1164. APR_PKT_VER);
  1165. set_param->apr_hdr.pkt_size = size;
  1166. set_param->apr_hdr.src_port = 0;
  1167. set_param->apr_hdr.dest_port = 0;
  1168. set_param->apr_hdr.token = index;
  1169. set_param->apr_hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  1170. set_param->port_id = port_id;
  1171. if (packed_data_size > U16_MAX) {
  1172. pr_err("%s: Invalid data size for set params V2 %d\n", __func__,
  1173. packed_data_size);
  1174. rc = -EINVAL;
  1175. goto done;
  1176. }
  1177. set_param->payload_size = packed_data_size;
  1178. if (mem_hdr != NULL) {
  1179. set_param->mem_hdr = *mem_hdr;
  1180. } else if (packed_param_data != NULL) {
  1181. memcpy(&set_param->param_data, packed_param_data,
  1182. packed_data_size);
  1183. } else {
  1184. pr_err("%s: Both memory header and param data are NULL\n",
  1185. __func__);
  1186. rc = -EINVAL;
  1187. goto done;
  1188. }
  1189. rc = afe_apr_send_pkt(set_param, &this_afe.wait[index]);
  1190. done:
  1191. kfree(set_param);
  1192. return rc;
  1193. }
  1194. /* This function shouldn't be called directly. Instead call q6afe_set_params. */
  1195. static int q6afe_set_params_v3(u16 port_id, int index,
  1196. struct mem_mapping_hdr *mem_hdr,
  1197. u8 *packed_param_data, u32 packed_data_size)
  1198. {
  1199. struct afe_port_cmd_set_param_v3 *set_param = NULL;
  1200. uint32_t size = sizeof(struct afe_port_cmd_set_param_v3);
  1201. int rc = 0;
  1202. if (packed_param_data != NULL)
  1203. size += packed_data_size;
  1204. set_param = kzalloc(size, GFP_KERNEL);
  1205. if (set_param == NULL)
  1206. return -ENOMEM;
  1207. set_param->apr_hdr.hdr_field =
  1208. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1209. APR_PKT_VER);
  1210. set_param->apr_hdr.pkt_size = size;
  1211. set_param->apr_hdr.src_port = 0;
  1212. set_param->apr_hdr.dest_port = 0;
  1213. set_param->apr_hdr.token = index;
  1214. set_param->apr_hdr.opcode = AFE_PORT_CMD_SET_PARAM_V3;
  1215. set_param->port_id = port_id;
  1216. set_param->payload_size = packed_data_size;
  1217. if (mem_hdr != NULL) {
  1218. set_param->mem_hdr = *mem_hdr;
  1219. } else if (packed_param_data != NULL) {
  1220. memcpy(&set_param->param_data, packed_param_data,
  1221. packed_data_size);
  1222. } else {
  1223. pr_err("%s: Both memory header and param data are NULL\n",
  1224. __func__);
  1225. rc = -EINVAL;
  1226. goto done;
  1227. }
  1228. rc = afe_apr_send_pkt(set_param, &this_afe.wait[index]);
  1229. done:
  1230. kfree(set_param);
  1231. return rc;
  1232. }
  1233. static int q6afe_set_params(u16 port_id, int index,
  1234. struct mem_mapping_hdr *mem_hdr,
  1235. u8 *packed_param_data, u32 packed_data_size)
  1236. {
  1237. int ret = 0;
  1238. ret = afe_q6_interface_prepare();
  1239. if (ret != 0) {
  1240. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  1241. return ret;
  1242. }
  1243. port_id = q6audio_get_port_id(port_id);
  1244. ret = q6audio_validate_port(port_id);
  1245. if (ret < 0) {
  1246. pr_err("%s: Not a valid port id = 0x%x ret %d\n", __func__,
  1247. port_id, ret);
  1248. return -EINVAL;
  1249. }
  1250. if (index < 0 || index >= AFE_MAX_PORTS) {
  1251. pr_err("%s: AFE port index[%d] invalid\n", __func__, index);
  1252. return -EINVAL;
  1253. }
  1254. if (q6common_is_instance_id_supported())
  1255. return q6afe_set_params_v3(port_id, index, mem_hdr,
  1256. packed_param_data, packed_data_size);
  1257. else
  1258. return q6afe_set_params_v2(port_id, index, mem_hdr,
  1259. packed_param_data, packed_data_size);
  1260. }
  1261. static int q6afe_pack_and_set_param_in_band(u16 port_id, int index,
  1262. struct param_hdr_v3 param_hdr,
  1263. u8 *param_data)
  1264. {
  1265. u8 *packed_param_data = NULL;
  1266. int packed_data_size = sizeof(union param_hdrs) + param_hdr.param_size;
  1267. int ret;
  1268. packed_param_data = kzalloc(packed_data_size, GFP_KERNEL);
  1269. if (packed_param_data == NULL)
  1270. return -ENOMEM;
  1271. ret = q6common_pack_pp_params(packed_param_data, &param_hdr, param_data,
  1272. &packed_data_size);
  1273. if (ret) {
  1274. pr_err("%s: Failed to pack param header and data, error %d\n",
  1275. __func__, ret);
  1276. goto fail_cmd;
  1277. }
  1278. ret = q6afe_set_params(port_id, index, NULL, packed_param_data,
  1279. packed_data_size);
  1280. fail_cmd:
  1281. kfree(packed_param_data);
  1282. return ret;
  1283. }
  1284. static int q6afe_set_aanc_level(void)
  1285. {
  1286. struct param_hdr_v3 param_hdr;
  1287. struct afe_param_id_aanc_noise_reduction aanc_noise_level;
  1288. int ret = 0;
  1289. uint16_t tx_port = 0;
  1290. if (!this_afe.aanc_info.aanc_active)
  1291. return -EINVAL;
  1292. pr_debug("%s: level: %d\n", __func__, this_afe.aanc_info.level);
  1293. memset(&aanc_noise_level, 0, sizeof(aanc_noise_level));
  1294. aanc_noise_level.minor_version = 1;
  1295. aanc_noise_level.ad_beta = this_afe.aanc_info.level;
  1296. memset(&param_hdr, 0, sizeof(param_hdr));
  1297. param_hdr.module_id = AFE_MODULE_AANC;
  1298. param_hdr.instance_id = INSTANCE_ID_0;
  1299. param_hdr.param_id = AFE_PARAM_ID_AANC_NOISE_REDUCTION;
  1300. param_hdr.param_size = sizeof(struct afe_param_id_aanc_noise_reduction);
  1301. tx_port = this_afe.aanc_info.aanc_tx_port;
  1302. ret = q6afe_pack_and_set_param_in_band(tx_port,
  1303. q6audio_get_port_index(tx_port),
  1304. param_hdr,
  1305. (u8 *) &aanc_noise_level);
  1306. if (ret)
  1307. pr_err("%s: AANC noise level enable failed for tx_port 0x%x ret %d\n",
  1308. __func__, tx_port, ret);
  1309. return ret;
  1310. }
  1311. /**
  1312. * afe_set_aanc_noise_level - controls aanc noise reduction strength
  1313. *
  1314. * @level: Noise level to be controlled
  1315. *
  1316. * Returns 0 on success or error on failure.
  1317. */
  1318. int afe_set_aanc_noise_level(int level)
  1319. {
  1320. int ret = 0;
  1321. if (this_afe.aanc_info.level == level)
  1322. return ret;
  1323. mutex_lock(&this_afe.afe_cmd_lock);
  1324. this_afe.aanc_info.level = level;
  1325. ret = q6afe_set_aanc_level();
  1326. mutex_unlock(&this_afe.afe_cmd_lock);
  1327. return ret;
  1328. }
  1329. EXPORT_SYMBOL(afe_set_aanc_noise_level);
  1330. /* This function shouldn't be called directly. Instead call q6afe_get_param. */
  1331. static int q6afe_get_params_v2(u16 port_id, int index,
  1332. struct mem_mapping_hdr *mem_hdr,
  1333. struct param_hdr_v3 *param_hdr)
  1334. {
  1335. struct afe_port_cmd_get_param_v2 afe_get_param;
  1336. u32 param_size = param_hdr->param_size;
  1337. memset(&afe_get_param, 0, sizeof(afe_get_param));
  1338. afe_get_param.apr_hdr.hdr_field =
  1339. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1340. APR_PKT_VER);
  1341. afe_get_param.apr_hdr.pkt_size = sizeof(afe_get_param);
  1342. afe_get_param.apr_hdr.src_port = 0;
  1343. afe_get_param.apr_hdr.dest_port = 0;
  1344. afe_get_param.apr_hdr.token = index;
  1345. afe_get_param.apr_hdr.opcode = AFE_PORT_CMD_GET_PARAM_V2;
  1346. afe_get_param.port_id = port_id;
  1347. afe_get_param.payload_size = sizeof(struct param_hdr_v1) + param_size;
  1348. if (mem_hdr != NULL)
  1349. afe_get_param.mem_hdr = *mem_hdr;
  1350. /* Set MID and PID in command */
  1351. afe_get_param.module_id = param_hdr->module_id;
  1352. afe_get_param.param_id = param_hdr->param_id;
  1353. /* Set param header in payload */
  1354. afe_get_param.param_hdr.module_id = param_hdr->module_id;
  1355. afe_get_param.param_hdr.param_id = param_hdr->param_id;
  1356. afe_get_param.param_hdr.param_size = param_size;
  1357. return afe_apr_send_pkt(&afe_get_param, &this_afe.wait[index]);
  1358. }
  1359. /* This function shouldn't be called directly. Instead call q6afe_get_param. */
  1360. static int q6afe_get_params_v3(u16 port_id, int index,
  1361. struct mem_mapping_hdr *mem_hdr,
  1362. struct param_hdr_v3 *param_hdr)
  1363. {
  1364. struct afe_port_cmd_get_param_v3 afe_get_param;
  1365. memset(&afe_get_param, 0, sizeof(afe_get_param));
  1366. afe_get_param.apr_hdr.hdr_field =
  1367. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1368. APR_PKT_VER);
  1369. afe_get_param.apr_hdr.pkt_size = sizeof(afe_get_param);
  1370. afe_get_param.apr_hdr.src_port = 0;
  1371. afe_get_param.apr_hdr.dest_port = 0;
  1372. afe_get_param.apr_hdr.token = index;
  1373. afe_get_param.apr_hdr.opcode = AFE_PORT_CMD_GET_PARAM_V3;
  1374. afe_get_param.port_id = port_id;
  1375. if (mem_hdr != NULL)
  1376. afe_get_param.mem_hdr = *mem_hdr;
  1377. /* Set param header in command, no payload in V3 */
  1378. afe_get_param.param_hdr = *param_hdr;
  1379. return afe_apr_send_pkt(&afe_get_param, &this_afe.wait[index]);
  1380. }
  1381. /*
  1382. * Calling functions copy param data directly from this_afe. Do not copy data
  1383. * back to caller here.
  1384. */
  1385. static int q6afe_get_params(u16 port_id, struct mem_mapping_hdr *mem_hdr,
  1386. struct param_hdr_v3 *param_hdr)
  1387. {
  1388. int index;
  1389. int ret;
  1390. ret = afe_q6_interface_prepare();
  1391. if (ret != 0) {
  1392. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  1393. return ret;
  1394. }
  1395. port_id = q6audio_get_port_id(port_id);
  1396. ret = q6audio_validate_port(port_id);
  1397. if (ret < 0) {
  1398. pr_err("%s: Not a valid port id = 0x%x ret %d\n", __func__,
  1399. port_id, ret);
  1400. return -EINVAL;
  1401. }
  1402. index = q6audio_get_port_index(port_id);
  1403. if (index < 0 || index >= AFE_MAX_PORTS) {
  1404. pr_err("%s: AFE port index[%d] invalid\n", __func__, index);
  1405. return -EINVAL;
  1406. }
  1407. if (q6common_is_instance_id_supported())
  1408. return q6afe_get_params_v3(port_id, index, NULL, param_hdr);
  1409. else
  1410. return q6afe_get_params_v2(port_id, index, NULL, param_hdr);
  1411. }
  1412. /*
  1413. * This function shouldn't be called directly. Instead call
  1414. * q6afe_svc_set_params.
  1415. */
  1416. static int q6afe_svc_set_params_v1(int index, struct mem_mapping_hdr *mem_hdr,
  1417. u8 *packed_param_data, u32 packed_data_size)
  1418. {
  1419. struct afe_svc_cmd_set_param_v1 *svc_set_param = NULL;
  1420. uint32_t size = sizeof(struct afe_svc_cmd_set_param_v1);
  1421. int rc = 0;
  1422. if (packed_param_data != NULL)
  1423. size += packed_data_size;
  1424. svc_set_param = kzalloc(size, GFP_KERNEL);
  1425. if (svc_set_param == NULL)
  1426. return -ENOMEM;
  1427. svc_set_param->apr_hdr.hdr_field =
  1428. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1429. APR_PKT_VER);
  1430. svc_set_param->apr_hdr.pkt_size = size;
  1431. svc_set_param->apr_hdr.src_port = 0;
  1432. svc_set_param->apr_hdr.dest_port = 0;
  1433. svc_set_param->apr_hdr.token = index;
  1434. svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM;
  1435. svc_set_param->payload_size = packed_data_size;
  1436. if (mem_hdr != NULL) {
  1437. /* Out of band case. */
  1438. svc_set_param->mem_hdr = *mem_hdr;
  1439. } else if (packed_param_data != NULL) {
  1440. /* In band case. */
  1441. memcpy(&svc_set_param->param_data, packed_param_data,
  1442. packed_data_size);
  1443. } else {
  1444. pr_err("%s: Both memory header and param data are NULL\n",
  1445. __func__);
  1446. rc = -EINVAL;
  1447. goto done;
  1448. }
  1449. rc = afe_apr_send_pkt(svc_set_param, &this_afe.wait[index]);
  1450. done:
  1451. kfree(svc_set_param);
  1452. return rc;
  1453. }
  1454. /*
  1455. * This function shouldn't be called directly. Instead call
  1456. * q6afe_svc_set_params.
  1457. */
  1458. static int q6afe_svc_set_params_v2(int index, struct mem_mapping_hdr *mem_hdr,
  1459. u8 *packed_param_data, u32 packed_data_size)
  1460. {
  1461. struct afe_svc_cmd_set_param_v2 *svc_set_param = NULL;
  1462. uint16_t size = sizeof(struct afe_svc_cmd_set_param_v2);
  1463. int rc = 0;
  1464. if (packed_param_data != NULL)
  1465. size += packed_data_size;
  1466. svc_set_param = kzalloc(size, GFP_KERNEL);
  1467. if (svc_set_param == NULL)
  1468. return -ENOMEM;
  1469. svc_set_param->apr_hdr.hdr_field =
  1470. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1471. APR_PKT_VER);
  1472. svc_set_param->apr_hdr.pkt_size = size;
  1473. svc_set_param->apr_hdr.src_port = 0;
  1474. svc_set_param->apr_hdr.dest_port = 0;
  1475. svc_set_param->apr_hdr.token = index;
  1476. svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM_V2;
  1477. svc_set_param->payload_size = packed_data_size;
  1478. if (mem_hdr != NULL) {
  1479. /* Out of band case. */
  1480. svc_set_param->mem_hdr = *mem_hdr;
  1481. } else if (packed_param_data != NULL) {
  1482. /* In band case. */
  1483. memcpy(&svc_set_param->param_data, packed_param_data,
  1484. packed_data_size);
  1485. } else {
  1486. pr_err("%s: Both memory header and param data are NULL\n",
  1487. __func__);
  1488. rc = -EINVAL;
  1489. goto done;
  1490. }
  1491. rc = afe_apr_send_pkt(svc_set_param, &this_afe.wait[index]);
  1492. done:
  1493. kfree(svc_set_param);
  1494. return rc;
  1495. }
  1496. /*
  1497. * This function shouldn't be called directly. Instead call
  1498. * q6afe_clk_set_params.
  1499. */
  1500. static int q6afe_clk_set_params_v1(int index, struct mem_mapping_hdr *mem_hdr,
  1501. u8 *packed_param_data, u32 packed_data_size)
  1502. {
  1503. struct afe_svc_cmd_set_param_v1 *svc_set_param = NULL;
  1504. uint32_t size = sizeof(struct afe_svc_cmd_set_param_v1);
  1505. int rc = 0;
  1506. if (packed_param_data != NULL)
  1507. size += packed_data_size;
  1508. svc_set_param = kzalloc(size, GFP_KERNEL);
  1509. if (svc_set_param == NULL)
  1510. return -ENOMEM;
  1511. svc_set_param->apr_hdr.hdr_field =
  1512. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1513. APR_PKT_VER);
  1514. svc_set_param->apr_hdr.pkt_size = size;
  1515. svc_set_param->apr_hdr.src_port = 0;
  1516. svc_set_param->apr_hdr.dest_port = 0;
  1517. svc_set_param->apr_hdr.token = AFE_CLK_TOKEN;
  1518. svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM;
  1519. svc_set_param->payload_size = packed_data_size;
  1520. if (mem_hdr != NULL) {
  1521. /* Out of band case. */
  1522. svc_set_param->mem_hdr = *mem_hdr;
  1523. } else if (packed_param_data != NULL) {
  1524. /* In band case. */
  1525. memcpy(&svc_set_param->param_data, packed_param_data,
  1526. packed_data_size);
  1527. } else {
  1528. pr_err("%s: Both memory header and param data are NULL\n",
  1529. __func__);
  1530. rc = -EINVAL;
  1531. goto done;
  1532. }
  1533. rc = afe_apr_send_clk_pkt(svc_set_param, &this_afe.clk_wait);
  1534. done:
  1535. kfree(svc_set_param);
  1536. return rc;
  1537. }
  1538. /*
  1539. * This function shouldn't be called directly. Instead call
  1540. * q6afe_clk_set_params.
  1541. */
  1542. static int q6afe_clk_set_params_v2(int index, struct mem_mapping_hdr *mem_hdr,
  1543. u8 *packed_param_data, u32 packed_data_size)
  1544. {
  1545. struct afe_svc_cmd_set_param_v2 *svc_set_param = NULL;
  1546. uint16_t size = sizeof(struct afe_svc_cmd_set_param_v2);
  1547. int rc = 0;
  1548. if (packed_param_data != NULL)
  1549. size += packed_data_size;
  1550. svc_set_param = kzalloc(size, GFP_KERNEL);
  1551. if (svc_set_param == NULL)
  1552. return -ENOMEM;
  1553. svc_set_param->apr_hdr.hdr_field =
  1554. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1555. APR_PKT_VER);
  1556. svc_set_param->apr_hdr.pkt_size = size;
  1557. svc_set_param->apr_hdr.src_port = 0;
  1558. svc_set_param->apr_hdr.dest_port = 0;
  1559. svc_set_param->apr_hdr.token = AFE_CLK_TOKEN;
  1560. svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM_V2;
  1561. svc_set_param->payload_size = packed_data_size;
  1562. if (mem_hdr != NULL) {
  1563. /* Out of band case. */
  1564. svc_set_param->mem_hdr = *mem_hdr;
  1565. } else if (packed_param_data != NULL) {
  1566. /* In band case. */
  1567. memcpy(&svc_set_param->param_data, packed_param_data,
  1568. packed_data_size);
  1569. } else {
  1570. pr_err("%s: Both memory header and param data are NULL\n",
  1571. __func__);
  1572. rc = -EINVAL;
  1573. goto done;
  1574. }
  1575. rc = afe_apr_send_clk_pkt(svc_set_param, &this_afe.clk_wait);
  1576. done:
  1577. kfree(svc_set_param);
  1578. return rc;
  1579. }
  1580. static int q6afe_clk_set_params(int index, struct mem_mapping_hdr *mem_hdr,
  1581. u8 *packed_param_data, u32 packed_data_size,
  1582. bool is_iid_supported)
  1583. {
  1584. int ret;
  1585. ret = afe_q6_interface_prepare();
  1586. if (ret != 0) {
  1587. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  1588. return ret;
  1589. }
  1590. if (is_iid_supported)
  1591. return q6afe_clk_set_params_v2(index, mem_hdr,
  1592. packed_param_data,
  1593. packed_data_size);
  1594. else
  1595. return q6afe_clk_set_params_v1(index, mem_hdr,
  1596. packed_param_data,
  1597. packed_data_size);
  1598. }
  1599. static int q6afe_svc_set_params(int index, struct mem_mapping_hdr *mem_hdr,
  1600. u8 *packed_param_data, u32 packed_data_size,
  1601. bool is_iid_supported)
  1602. {
  1603. int ret;
  1604. ret = afe_q6_interface_prepare();
  1605. if (ret != 0) {
  1606. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  1607. return ret;
  1608. }
  1609. if (is_iid_supported)
  1610. return q6afe_svc_set_params_v2(index, mem_hdr,
  1611. packed_param_data,
  1612. packed_data_size);
  1613. else
  1614. return q6afe_svc_set_params_v1(index, mem_hdr,
  1615. packed_param_data,
  1616. packed_data_size);
  1617. }
  1618. static int q6afe_svc_pack_and_set_param_in_band(int index,
  1619. struct param_hdr_v3 param_hdr,
  1620. u8 *param_data)
  1621. {
  1622. u8 *packed_param_data = NULL;
  1623. u32 packed_data_size =
  1624. sizeof(struct param_hdr_v3) + param_hdr.param_size;
  1625. int ret = 0;
  1626. bool is_iid_supported = q6common_is_instance_id_supported();
  1627. packed_param_data = kzalloc(packed_data_size, GFP_KERNEL);
  1628. if (!packed_param_data)
  1629. return -ENOMEM;
  1630. ret = q6common_pack_pp_params_v2(packed_param_data, &param_hdr,
  1631. param_data, &packed_data_size,
  1632. is_iid_supported);
  1633. if (ret) {
  1634. pr_err("%s: Failed to pack parameter header and data, error %d\n",
  1635. __func__, ret);
  1636. goto done;
  1637. }
  1638. if (param_hdr.module_id == AFE_MODULE_CLOCK_SET)
  1639. ret = q6afe_clk_set_params(index, NULL, packed_param_data,
  1640. packed_data_size, is_iid_supported);
  1641. else
  1642. ret = q6afe_svc_set_params(index, NULL, packed_param_data,
  1643. packed_data_size, is_iid_supported);
  1644. done:
  1645. kfree(packed_param_data);
  1646. return ret;
  1647. }
  1648. static int afe_send_cal_block(u16 port_id, struct cal_block_data *cal_block)
  1649. {
  1650. struct mem_mapping_hdr mem_hdr;
  1651. int payload_size = 0;
  1652. int result = 0;
  1653. memset(&mem_hdr, 0, sizeof(mem_hdr));
  1654. if (!cal_block) {
  1655. pr_debug("%s: No AFE cal to send!\n", __func__);
  1656. result = -EINVAL;
  1657. goto done;
  1658. }
  1659. if (cal_block->cal_data.size <= 0) {
  1660. pr_debug("%s: AFE cal has invalid size!\n", __func__);
  1661. result = -EINVAL;
  1662. goto done;
  1663. }
  1664. payload_size = cal_block->cal_data.size;
  1665. mem_hdr.data_payload_addr_lsw =
  1666. lower_32_bits(cal_block->cal_data.paddr);
  1667. mem_hdr.data_payload_addr_msw =
  1668. msm_audio_populate_upper_32_bits(cal_block->cal_data.paddr);
  1669. mem_hdr.mem_map_handle = cal_block->map_data.q6map_handle;
  1670. pr_debug("%s: AFE cal sent for device port = 0x%x, cal size = %zd, cal addr = 0x%pK\n",
  1671. __func__, port_id,
  1672. cal_block->cal_data.size, &cal_block->cal_data.paddr);
  1673. result = q6afe_set_params(port_id, q6audio_get_port_index(port_id),
  1674. &mem_hdr, NULL, payload_size);
  1675. if (result)
  1676. pr_err("%s: AFE cal for port 0x%x failed %d\n",
  1677. __func__, port_id, result);
  1678. done:
  1679. return result;
  1680. }
  1681. static int afe_send_custom_topology_block(struct cal_block_data *cal_block)
  1682. {
  1683. int result = 0;
  1684. int index = 0;
  1685. struct cmd_set_topologies afe_cal;
  1686. if (!cal_block) {
  1687. pr_err("%s: No AFE SVC cal to send!\n", __func__);
  1688. return -EINVAL;
  1689. }
  1690. if (cal_block->cal_data.size <= 0) {
  1691. pr_err("%s: AFE SVC cal has invalid size: %zd!\n",
  1692. __func__, cal_block->cal_data.size);
  1693. return -EINVAL;
  1694. }
  1695. afe_cal.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  1696. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  1697. afe_cal.hdr.pkt_size = sizeof(afe_cal);
  1698. afe_cal.hdr.src_port = 0;
  1699. afe_cal.hdr.dest_port = 0;
  1700. afe_cal.hdr.token = index;
  1701. afe_cal.hdr.opcode = AFE_CMD_ADD_TOPOLOGIES;
  1702. afe_cal.payload_size = cal_block->cal_data.size;
  1703. afe_cal.payload_addr_lsw =
  1704. lower_32_bits(cal_block->cal_data.paddr);
  1705. afe_cal.payload_addr_msw =
  1706. msm_audio_populate_upper_32_bits(cal_block->cal_data.paddr);
  1707. afe_cal.mem_map_handle = cal_block->map_data.q6map_handle;
  1708. pr_debug("%s:cmd_id:0x%x calsize:%zd memmap_hdl:0x%x caladdr:0x%pK",
  1709. __func__, AFE_CMD_ADD_TOPOLOGIES, cal_block->cal_data.size,
  1710. afe_cal.mem_map_handle, &cal_block->cal_data.paddr);
  1711. result = afe_apr_send_pkt(&afe_cal, &this_afe.wait[index]);
  1712. if (result)
  1713. pr_err("%s: AFE send topology for command 0x%x failed %d\n",
  1714. __func__, AFE_CMD_ADD_TOPOLOGIES, result);
  1715. return result;
  1716. }
  1717. static void afe_send_custom_topology(void)
  1718. {
  1719. struct cal_block_data *cal_block = NULL;
  1720. int cal_index = AFE_CUST_TOPOLOGY_CAL;
  1721. int ret;
  1722. if (this_afe.cal_data[cal_index] == NULL) {
  1723. pr_err("%s: cal_index %d not allocated!\n",
  1724. __func__, cal_index);
  1725. return;
  1726. }
  1727. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  1728. if (!this_afe.set_custom_topology)
  1729. goto unlock;
  1730. this_afe.set_custom_topology = 0;
  1731. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  1732. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  1733. pr_err("%s cal_block not found!!\n", __func__);
  1734. goto unlock;
  1735. }
  1736. pr_debug("%s: Sending cal_index cal %d\n", __func__, cal_index);
  1737. ret = remap_cal_data(cal_block, cal_index);
  1738. if (ret) {
  1739. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  1740. __func__, cal_index);
  1741. goto unlock;
  1742. }
  1743. ret = afe_send_custom_topology_block(cal_block);
  1744. if (ret < 0) {
  1745. pr_err("%s: No cal sent for cal_index %d! ret %d\n",
  1746. __func__, cal_index, ret);
  1747. goto unlock;
  1748. }
  1749. pr_debug("%s:sent custom topology for AFE\n", __func__);
  1750. unlock:
  1751. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  1752. }
  1753. static int afe_spk_ramp_dn_cfg(int port)
  1754. {
  1755. struct param_hdr_v3 param_info;
  1756. int ret = -EINVAL;
  1757. memset(&param_info, 0, sizeof(param_info));
  1758. if (afe_get_port_type(port) != MSM_AFE_PORT_TYPE_RX) {
  1759. pr_debug("%s: port doesn't match 0x%x\n", __func__, port);
  1760. return 0;
  1761. }
  1762. if (this_afe.prot_cfg.mode == MSM_SPKR_PROT_DISABLED ||
  1763. (this_afe.vi_rx_port != port)) {
  1764. pr_debug("%s: spkr protection disabled port 0x%x %d 0x%x\n",
  1765. __func__, port, ret, this_afe.vi_rx_port);
  1766. return 0;
  1767. }
  1768. param_info.module_id = AFE_MODULE_FB_SPKR_PROT_V2_RX;
  1769. param_info.instance_id = INSTANCE_ID_0;
  1770. param_info.param_id = AFE_PARAM_ID_FBSP_PTONE_RAMP_CFG;
  1771. param_info.param_size = 0;
  1772. ret = q6afe_pack_and_set_param_in_band(port,
  1773. q6audio_get_port_index(port),
  1774. param_info, NULL);
  1775. if (ret) {
  1776. pr_err("%s: Failed to set speaker ramp duration param, err %d\n",
  1777. __func__, ret);
  1778. goto fail_cmd;
  1779. }
  1780. /* dsp needs atleast 15ms to ramp down pilot tone*/
  1781. usleep_range(15000, 15010);
  1782. ret = 0;
  1783. fail_cmd:
  1784. pr_debug("%s: config.pdata.param_id 0x%x status %d\n", __func__,
  1785. param_info.param_id, ret);
  1786. return ret;
  1787. }
  1788. static int afe_spk_prot_prepare(int src_port, int dst_port, int param_id,
  1789. union afe_spkr_prot_config *prot_config, uint32_t param_size)
  1790. {
  1791. struct param_hdr_v3 param_info;
  1792. int ret = -EINVAL;
  1793. memset(&param_info, 0, sizeof(param_info));
  1794. ret = q6audio_validate_port(src_port);
  1795. if (ret < 0) {
  1796. pr_err("%s: Invalid src port 0x%x ret %d", __func__, src_port,
  1797. ret);
  1798. ret = -EINVAL;
  1799. goto fail_cmd;
  1800. }
  1801. ret = q6audio_validate_port(dst_port);
  1802. if (ret < 0) {
  1803. pr_err("%s: Invalid dst port 0x%x ret %d", __func__,
  1804. dst_port, ret);
  1805. ret = -EINVAL;
  1806. goto fail_cmd;
  1807. }
  1808. switch (param_id) {
  1809. case AFE_PARAM_ID_FBSP_MODE_RX_CFG:
  1810. case AFE_PARAM_ID_SP_RX_LIMITER_TH:
  1811. param_info.module_id = AFE_MODULE_FB_SPKR_PROT_V2_RX;
  1812. break;
  1813. case AFE_PARAM_ID_SP_V4_OP_MODE:
  1814. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_RX;
  1815. break;
  1816. case AFE_PARAM_ID_FEEDBACK_PATH_CFG:
  1817. this_afe.vi_tx_port = src_port;
  1818. this_afe.vi_rx_port = dst_port;
  1819. param_info.module_id = AFE_MODULE_FEEDBACK;
  1820. break;
  1821. /*
  1822. * AFE_PARAM_ID_SPKR_CALIB_VI_PROC_CFG_V2 is same as
  1823. * AFE_PARAM_ID_SP_V2_TH_VI_MODE_CFG. V_VALI_CFG uses
  1824. * same module TH_VI.
  1825. */
  1826. case AFE_PARAM_ID_SPKR_CALIB_VI_PROC_CFG_V2:
  1827. case AFE_PARAM_ID_SP_V2_TH_VI_FTM_CFG:
  1828. case AFE_PARAM_ID_SP_V2_TH_VI_V_VALI_CFG:
  1829. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  1830. break;
  1831. case AFE_PARAM_ID_SP_V2_EX_VI_MODE_CFG:
  1832. case AFE_PARAM_ID_SP_V2_EX_VI_FTM_CFG:
  1833. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI;
  1834. break;
  1835. case AFE_PARAM_ID_SP_V4_VI_CHANNEL_MAP_CFG:
  1836. case AFE_PARAM_ID_SP_V4_VI_OP_MODE_CFG:
  1837. case AFE_PARAM_ID_SP_V4_VI_R0T0_CFG:
  1838. case AFE_PARAM_ID_SP_V4_TH_VI_FTM_CFG:
  1839. case AFE_PARAM_ID_SP_V4_TH_VI_V_VALI_CFG:
  1840. case AFE_PARAM_ID_SP_V4_EX_VI_MODE_CFG:
  1841. case AFE_PARAM_ID_SP_V4_EX_VI_FTM_CFG:
  1842. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  1843. break;
  1844. default:
  1845. pr_err("%s: default case 0x%x\n", __func__, param_id);
  1846. goto fail_cmd;
  1847. }
  1848. param_info.instance_id = INSTANCE_ID_0;
  1849. param_info.param_id = param_id;
  1850. param_info.param_size = param_size;
  1851. ret = q6afe_pack_and_set_param_in_band(src_port,
  1852. q6audio_get_port_index(src_port),
  1853. param_info, (u8 *) prot_config);
  1854. if (ret)
  1855. pr_err("%s: port = 0x%x param = 0x%x failed %d\n", __func__,
  1856. src_port, param_id, ret);
  1857. fail_cmd:
  1858. pr_debug("%s: config.pdata.param_id 0x%x status %d 0x%x\n", __func__,
  1859. param_info.param_id, ret, src_port);
  1860. return ret;
  1861. }
  1862. static int afe_spkr_prot_reg_event_cfg(u16 port_id, uint32_t module_id)
  1863. {
  1864. struct afe_port_cmd_event_cfg *config;
  1865. struct afe_port_cmd_mod_evt_cfg_payload pl;
  1866. int index;
  1867. int ret;
  1868. int num_events = 1;
  1869. int cmd_size = sizeof(struct afe_port_cmd_event_cfg) +
  1870. (num_events * sizeof(struct afe_port_cmd_mod_evt_cfg_payload));
  1871. config = kzalloc(cmd_size, GFP_KERNEL);
  1872. if (!config)
  1873. return -ENOMEM;
  1874. index = q6audio_get_port_index(port_id);
  1875. if (index < 0) {
  1876. pr_err("%s: Invalid index number: %d\n", __func__, index);
  1877. ret = -EINVAL;
  1878. goto fail_idx;
  1879. }
  1880. memset(&pl, 0, sizeof(pl));
  1881. pl.module_id = module_id;
  1882. pl.event_id = AFE_PORT_SP_DC_DETECTION_EVENT;
  1883. pl.reg_flag = AFE_MODULE_REGISTER_EVENT_FLAG;
  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 = cmd_size;
  1887. config->hdr.src_port = 0;
  1888. config->hdr.dest_port = 0;
  1889. config->hdr.token = index;
  1890. config->hdr.opcode = AFE_PORT_CMD_MOD_EVENT_CFG;
  1891. config->port_id = q6audio_get_port_id(port_id);
  1892. config->num_events = num_events;
  1893. config->version = 1;
  1894. memcpy(config->payload, &pl, sizeof(pl));
  1895. ret = afe_apr_send_pkt((uint32_t *) config, &this_afe.wait[index]);
  1896. fail_idx:
  1897. kfree(config);
  1898. return ret;
  1899. }
  1900. static void afe_send_cal_spv4_tx(int port_id)
  1901. {
  1902. union afe_spkr_prot_config afe_spk_config;
  1903. uint32_t size = 0;
  1904. void *tmp_ptr = NULL;
  1905. struct afe_sp_v4_param_th_vi_r0t0_cfg *th_vi_r0t0_cfg = NULL;
  1906. struct afe_sp_v4_channel_r0t0 *ch_r0t0_cfg = NULL;
  1907. struct afe_sp_v4_param_th_vi_ftm_cfg *th_vi_ftm_cfg = NULL;
  1908. struct afe_sp_v4_channel_ftm_cfg *ch_ftm_cfg = NULL;
  1909. struct afe_sp_v4_param_th_vi_v_vali_cfg *th_vi_v_vali_cfg = NULL;
  1910. struct afe_sp_v4_channel_v_vali_cfg *ch_v_vali_cfg = NULL;
  1911. struct afe_sp_v4_param_ex_vi_ftm_cfg *ex_vi_ftm_cfg = NULL;
  1912. struct afe_sp_v4_channel_ex_vi_ftm *ch_ex_vi_ftm_cfg = NULL;
  1913. pr_debug("%s: Entry.. port_id %d\n", __func__, port_id);
  1914. if (this_afe.vi_tx_port == port_id) {
  1915. memcpy(&afe_spk_config.v4_ch_map_cfg, &this_afe.v4_ch_map_cfg,
  1916. sizeof(struct afe_sp_v4_param_vi_channel_map_cfg));
  1917. if (afe_spk_prot_prepare(port_id, this_afe.vi_rx_port,
  1918. AFE_PARAM_ID_SP_V4_VI_CHANNEL_MAP_CFG, &afe_spk_config,
  1919. sizeof(struct afe_sp_v4_param_vi_channel_map_cfg)))
  1920. pr_info("%s: SPKR_CALIB_CHANNEL_MAP_CFG failed\n",
  1921. __func__);
  1922. }
  1923. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL ||
  1924. this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  1925. this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL) {
  1926. pr_info("%s: Returning as no cal data cached\n", __func__);
  1927. return;
  1928. }
  1929. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  1930. if ((this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED) &&
  1931. (this_afe.vi_tx_port == port_id) &&
  1932. (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9)) {
  1933. if (this_afe.prot_cfg.mode ==
  1934. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS) {
  1935. afe_spk_config.v4_vi_op_mode.th_operation_mode =
  1936. Q6AFE_MSM_SPKR_CALIBRATION;
  1937. afe_spk_config.v4_vi_op_mode.th_quick_calib_flag =
  1938. this_afe.prot_cfg.quick_calib_flag;
  1939. } else {
  1940. afe_spk_config.v4_vi_op_mode.th_operation_mode =
  1941. Q6AFE_MSM_SPKR_PROCESSING;
  1942. }
  1943. if (this_afe.th_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE)
  1944. afe_spk_config.v4_vi_op_mode.th_operation_mode =
  1945. Q6AFE_MSM_SPKR_FTM_MODE;
  1946. else if (this_afe.v_vali_cfg.mode ==
  1947. MSM_SPKR_PROT_IN_V_VALI_MODE)
  1948. afe_spk_config.v4_vi_op_mode.th_operation_mode =
  1949. Q6AFE_MSM_SPKR_V_VALI_MODE;
  1950. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_NOT_CALIBRATED) {
  1951. struct afe_sp_v4_param_vi_op_mode_cfg *v4_vi_op_mode;
  1952. v4_vi_op_mode = &afe_spk_config.v4_vi_op_mode;
  1953. v4_vi_op_mode->th_r0t0_selection_flag[SP_V2_SPKR_1] =
  1954. USE_CALIBRATED_R0TO;
  1955. v4_vi_op_mode->th_r0t0_selection_flag[SP_V2_SPKR_2] =
  1956. USE_CALIBRATED_R0TO;
  1957. } else {
  1958. struct afe_sp_v4_param_vi_op_mode_cfg *v4_vi_op_mode;
  1959. v4_vi_op_mode = &afe_spk_config.v4_vi_op_mode;
  1960. v4_vi_op_mode->th_r0t0_selection_flag[SP_V2_SPKR_1] =
  1961. USE_SAFE_R0TO;
  1962. v4_vi_op_mode->th_r0t0_selection_flag[SP_V2_SPKR_2] =
  1963. USE_SAFE_R0TO;
  1964. }
  1965. afe_spk_config.v4_vi_op_mode.num_speakers = SP_V2_NUM_MAX_SPKRS;
  1966. if (afe_spk_prot_prepare(port_id, 0,
  1967. AFE_PARAM_ID_SP_V4_VI_OP_MODE_CFG,
  1968. &afe_spk_config,
  1969. sizeof(struct afe_sp_v4_param_vi_op_mode_cfg)))
  1970. pr_info("%s: SPKR_CALIB_VI_PROC_CFG failed\n",
  1971. __func__);
  1972. size = sizeof(struct afe_sp_v4_param_th_vi_r0t0_cfg) +
  1973. (SP_V2_NUM_MAX_SPKRS * sizeof(struct afe_sp_v4_channel_r0t0));
  1974. tmp_ptr = kzalloc(size, GFP_KERNEL);
  1975. if (!tmp_ptr) {
  1976. mutex_unlock(
  1977. &this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  1978. return;
  1979. }
  1980. memset(tmp_ptr, 0, size);
  1981. th_vi_r0t0_cfg =
  1982. (struct afe_sp_v4_param_th_vi_r0t0_cfg *)tmp_ptr;
  1983. ch_r0t0_cfg =
  1984. (struct afe_sp_v4_channel_r0t0 *)(th_vi_r0t0_cfg + 1);
  1985. th_vi_r0t0_cfg->num_speakers = SP_V2_NUM_MAX_SPKRS;
  1986. ch_r0t0_cfg[SP_V2_SPKR_1].r0_cali_q24 =
  1987. (uint32_t) this_afe.prot_cfg.r0[SP_V2_SPKR_1];
  1988. ch_r0t0_cfg[SP_V2_SPKR_2].r0_cali_q24 =
  1989. (uint32_t) this_afe.prot_cfg.r0[SP_V2_SPKR_2];
  1990. ch_r0t0_cfg[SP_V2_SPKR_1].t0_cali_q6 =
  1991. (uint32_t) this_afe.prot_cfg.t0[SP_V2_SPKR_1];
  1992. ch_r0t0_cfg[SP_V2_SPKR_2].t0_cali_q6 =
  1993. (uint32_t) this_afe.prot_cfg.t0[SP_V2_SPKR_2];
  1994. if (afe_spk_prot_prepare(port_id, 0,
  1995. AFE_PARAM_ID_SP_V4_VI_R0T0_CFG,
  1996. (union afe_spkr_prot_config *)tmp_ptr, size))
  1997. pr_info("%s: th vi ftm cfg failed\n", __func__);
  1998. kfree(tmp_ptr);
  1999. }
  2000. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2001. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2002. if ((this_afe.th_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE) &&
  2003. (this_afe.vi_tx_port == port_id) &&
  2004. (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9)) {
  2005. size = sizeof(struct afe_sp_v4_param_th_vi_ftm_cfg) +
  2006. (SP_V2_NUM_MAX_SPKRS*sizeof(struct afe_sp_v4_channel_ftm_cfg));
  2007. tmp_ptr = kzalloc(size, GFP_KERNEL);
  2008. if (!tmp_ptr) {
  2009. mutex_unlock(
  2010. &this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2011. return;
  2012. }
  2013. memset(tmp_ptr, 0, size);
  2014. th_vi_ftm_cfg = (struct afe_sp_v4_param_th_vi_ftm_cfg *)tmp_ptr;
  2015. ch_ftm_cfg =
  2016. (struct afe_sp_v4_channel_ftm_cfg *)(th_vi_ftm_cfg+1);
  2017. th_vi_ftm_cfg->num_ch = SP_V2_NUM_MAX_SPKRS;
  2018. ch_ftm_cfg[SP_V2_SPKR_1].wait_time_ms =
  2019. this_afe.th_ftm_cfg.wait_time[SP_V2_SPKR_1];
  2020. ch_ftm_cfg[SP_V2_SPKR_2].wait_time_ms =
  2021. this_afe.th_ftm_cfg.wait_time[SP_V2_SPKR_2];
  2022. ch_ftm_cfg[SP_V2_SPKR_1].ftm_time_ms =
  2023. this_afe.th_ftm_cfg.ftm_time[SP_V2_SPKR_1];
  2024. ch_ftm_cfg[SP_V2_SPKR_2].ftm_time_ms =
  2025. this_afe.th_ftm_cfg.ftm_time[SP_V2_SPKR_2];
  2026. if (afe_spk_prot_prepare(port_id, 0,
  2027. AFE_PARAM_ID_SP_V4_TH_VI_FTM_CFG,
  2028. (union afe_spkr_prot_config *)tmp_ptr, size))
  2029. pr_info("%s: th vi ftm cfg failed\n", __func__);
  2030. kfree(tmp_ptr);
  2031. this_afe.th_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2032. } else if ((this_afe.v_vali_cfg.mode ==
  2033. MSM_SPKR_PROT_IN_V_VALI_MODE) &&
  2034. (this_afe.vi_tx_port == port_id)) {
  2035. size = sizeof(struct afe_sp_v4_param_th_vi_v_vali_cfg) +
  2036. (SP_V2_NUM_MAX_SPKRS *
  2037. sizeof(struct afe_sp_v4_channel_v_vali_cfg));
  2038. tmp_ptr = kzalloc(size, GFP_KERNEL);
  2039. if (!tmp_ptr) {
  2040. mutex_unlock(
  2041. &this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2042. return;
  2043. }
  2044. memset(tmp_ptr, 0, size);
  2045. th_vi_v_vali_cfg =
  2046. (struct afe_sp_v4_param_th_vi_v_vali_cfg *)tmp_ptr;
  2047. ch_v_vali_cfg =
  2048. (struct afe_sp_v4_channel_v_vali_cfg *)(th_vi_v_vali_cfg + 1);
  2049. th_vi_v_vali_cfg->num_ch = SP_V2_NUM_MAX_SPKRS;
  2050. ch_v_vali_cfg[SP_V2_SPKR_1].wait_time_ms =
  2051. this_afe.v_vali_cfg.wait_time[SP_V2_SPKR_1];
  2052. ch_v_vali_cfg[SP_V2_SPKR_2].wait_time_ms =
  2053. this_afe.v_vali_cfg.wait_time[SP_V2_SPKR_2];
  2054. ch_v_vali_cfg[SP_V2_SPKR_1].vali_time_ms =
  2055. this_afe.v_vali_cfg.vali_time[SP_V2_SPKR_1];
  2056. ch_v_vali_cfg[SP_V2_SPKR_2].vali_time_ms =
  2057. this_afe.v_vali_cfg.vali_time[SP_V2_SPKR_2];
  2058. if (afe_spk_prot_prepare(port_id, 0,
  2059. AFE_PARAM_ID_SP_V4_TH_VI_V_VALI_CFG,
  2060. (union afe_spkr_prot_config *)tmp_ptr, size))
  2061. pr_info("%s: th vi v-vali cfg failed\n", __func__);
  2062. kfree(tmp_ptr);
  2063. this_afe.v_vali_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2064. }
  2065. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2066. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2067. if ((this_afe.ex_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE) &&
  2068. (this_afe.vi_tx_port == port_id) &&
  2069. (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9)) {
  2070. size = sizeof(struct afe_sp_v4_param_ex_vi_ftm_cfg) +
  2071. (SP_V2_NUM_MAX_SPKRS *
  2072. sizeof(struct afe_sp_v4_channel_ex_vi_ftm));
  2073. tmp_ptr = kzalloc(size, GFP_KERNEL);
  2074. if (!tmp_ptr) {
  2075. mutex_unlock(
  2076. &this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2077. return;
  2078. }
  2079. memset(tmp_ptr, 0, size);
  2080. ex_vi_ftm_cfg = (struct afe_sp_v4_param_ex_vi_ftm_cfg *)tmp_ptr;
  2081. ch_ex_vi_ftm_cfg =
  2082. (struct afe_sp_v4_channel_ex_vi_ftm *)(ex_vi_ftm_cfg + 1);
  2083. afe_spk_config.v4_ex_vi_mode_cfg.operation_mode =
  2084. AFE_FBSP_V4_EX_VI_MODE_FTM;
  2085. if (afe_spk_prot_prepare(port_id, 0,
  2086. AFE_PARAM_ID_SP_V4_EX_VI_MODE_CFG,
  2087. &afe_spk_config,
  2088. sizeof(struct afe_sp_v4_param_ex_vi_mode_cfg)))
  2089. pr_info("%s: ex vi mode cfg failed\n", __func__);
  2090. ex_vi_ftm_cfg->num_ch = SP_V2_NUM_MAX_SPKRS;
  2091. ch_ex_vi_ftm_cfg[SP_V2_SPKR_1].wait_time_ms =
  2092. this_afe.ex_ftm_cfg.wait_time[SP_V2_SPKR_1];
  2093. ch_ex_vi_ftm_cfg[SP_V2_SPKR_2].wait_time_ms =
  2094. this_afe.ex_ftm_cfg.wait_time[SP_V2_SPKR_2];
  2095. ch_ex_vi_ftm_cfg[SP_V2_SPKR_1].ftm_time_ms =
  2096. this_afe.ex_ftm_cfg.ftm_time[SP_V2_SPKR_1];
  2097. ch_ex_vi_ftm_cfg[SP_V2_SPKR_2].ftm_time_ms =
  2098. this_afe.ex_ftm_cfg.ftm_time[SP_V2_SPKR_2];
  2099. if (afe_spk_prot_prepare(port_id, 0,
  2100. AFE_PARAM_ID_SP_V4_EX_VI_FTM_CFG,
  2101. (union afe_spkr_prot_config *)tmp_ptr, size))
  2102. pr_info("%s: ex vi ftm cfg failed\n", __func__);
  2103. kfree(tmp_ptr);
  2104. this_afe.ex_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2105. }
  2106. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2107. /* Register for DC detection event if speaker protection is enabled */
  2108. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
  2109. (this_afe.vi_tx_port == port_id)) {
  2110. afe_spkr_prot_reg_event_cfg(port_id,
  2111. AFE_MODULE_SPEAKER_PROTECTION_V4_VI);
  2112. }
  2113. }
  2114. static void afe_send_cal_spkr_prot_tx(int port_id)
  2115. {
  2116. union afe_spkr_prot_config afe_spk_config;
  2117. if (q6core_get_avcs_api_version_per_service(
  2118. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  2119. afe_send_cal_spv4_tx(port_id);
  2120. return;
  2121. }
  2122. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL ||
  2123. this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  2124. this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL)
  2125. return;
  2126. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2127. if ((this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED) &&
  2128. (this_afe.vi_tx_port == port_id)) {
  2129. if (this_afe.prot_cfg.mode ==
  2130. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS) {
  2131. afe_spk_config.vi_proc_cfg.operation_mode =
  2132. Q6AFE_MSM_SPKR_CALIBRATION;
  2133. afe_spk_config.vi_proc_cfg.quick_calib_flag =
  2134. this_afe.prot_cfg.quick_calib_flag;
  2135. } else {
  2136. afe_spk_config.vi_proc_cfg.operation_mode =
  2137. Q6AFE_MSM_SPKR_PROCESSING;
  2138. }
  2139. if (this_afe.th_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE)
  2140. afe_spk_config.vi_proc_cfg.operation_mode =
  2141. Q6AFE_MSM_SPKR_FTM_MODE;
  2142. else if (this_afe.v_vali_cfg.mode ==
  2143. MSM_SPKR_PROT_IN_V_VALI_MODE)
  2144. afe_spk_config.vi_proc_cfg.operation_mode =
  2145. Q6AFE_MSM_SPKR_V_VALI_MODE;
  2146. afe_spk_config.vi_proc_cfg.minor_version = 1;
  2147. afe_spk_config.vi_proc_cfg.r0_cali_q24[SP_V2_SPKR_1] =
  2148. (uint32_t) this_afe.prot_cfg.r0[SP_V2_SPKR_1];
  2149. afe_spk_config.vi_proc_cfg.r0_cali_q24[SP_V2_SPKR_2] =
  2150. (uint32_t) this_afe.prot_cfg.r0[SP_V2_SPKR_2];
  2151. afe_spk_config.vi_proc_cfg.t0_cali_q6[SP_V2_SPKR_1] =
  2152. (uint32_t) this_afe.prot_cfg.t0[SP_V2_SPKR_1];
  2153. afe_spk_config.vi_proc_cfg.t0_cali_q6[SP_V2_SPKR_2] =
  2154. (uint32_t) this_afe.prot_cfg.t0[SP_V2_SPKR_2];
  2155. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_NOT_CALIBRATED) {
  2156. struct asm_spkr_calib_vi_proc_cfg *vi_proc_cfg;
  2157. vi_proc_cfg = &afe_spk_config.vi_proc_cfg;
  2158. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_1] =
  2159. USE_CALIBRATED_R0TO;
  2160. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_2] =
  2161. USE_CALIBRATED_R0TO;
  2162. } else {
  2163. struct asm_spkr_calib_vi_proc_cfg *vi_proc_cfg;
  2164. vi_proc_cfg = &afe_spk_config.vi_proc_cfg;
  2165. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_1] =
  2166. USE_SAFE_R0TO;
  2167. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_2] =
  2168. USE_SAFE_R0TO;
  2169. }
  2170. if (afe_spk_prot_prepare(port_id, 0,
  2171. AFE_PARAM_ID_SPKR_CALIB_VI_PROC_CFG_V2,
  2172. &afe_spk_config, sizeof(union afe_spkr_prot_config)))
  2173. pr_err("%s: SPKR_CALIB_VI_PROC_CFG failed\n",
  2174. __func__);
  2175. }
  2176. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2177. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2178. if ((this_afe.th_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE) &&
  2179. (this_afe.vi_tx_port == port_id)) {
  2180. afe_spk_config.th_vi_ftm_cfg.minor_version = 1;
  2181. afe_spk_config.th_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_1] =
  2182. this_afe.th_ftm_cfg.wait_time[SP_V2_SPKR_1];
  2183. afe_spk_config.th_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_2] =
  2184. this_afe.th_ftm_cfg.wait_time[SP_V2_SPKR_2];
  2185. afe_spk_config.th_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_1] =
  2186. this_afe.th_ftm_cfg.ftm_time[SP_V2_SPKR_1];
  2187. afe_spk_config.th_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_2] =
  2188. this_afe.th_ftm_cfg.ftm_time[SP_V2_SPKR_2];
  2189. if (afe_spk_prot_prepare(port_id, 0,
  2190. AFE_PARAM_ID_SP_V2_TH_VI_FTM_CFG,
  2191. &afe_spk_config,
  2192. sizeof(union afe_spkr_prot_config)))
  2193. pr_err("%s: th vi ftm cfg failed\n", __func__);
  2194. this_afe.th_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2195. } else if ((this_afe.v_vali_cfg.mode ==
  2196. MSM_SPKR_PROT_IN_V_VALI_MODE) &&
  2197. (this_afe.vi_tx_port == port_id)) {
  2198. afe_spk_config.th_vi_v_vali_cfg.minor_version = 1;
  2199. afe_spk_config.th_vi_v_vali_cfg.wait_time_ms[SP_V2_SPKR_1] =
  2200. this_afe.v_vali_cfg.wait_time[SP_V2_SPKR_1];
  2201. afe_spk_config.th_vi_v_vali_cfg.wait_time_ms[SP_V2_SPKR_2] =
  2202. this_afe.v_vali_cfg.wait_time[SP_V2_SPKR_2];
  2203. afe_spk_config.th_vi_v_vali_cfg.vali_time_ms[SP_V2_SPKR_1] =
  2204. this_afe.v_vali_cfg.vali_time[SP_V2_SPKR_1];
  2205. afe_spk_config.th_vi_v_vali_cfg.vali_time_ms[SP_V2_SPKR_2] =
  2206. this_afe.v_vali_cfg.vali_time[SP_V2_SPKR_2];
  2207. if (afe_spk_prot_prepare(port_id, 0,
  2208. AFE_PARAM_ID_SP_V2_TH_VI_V_VALI_CFG,
  2209. &afe_spk_config,
  2210. sizeof(union afe_spkr_prot_config)))
  2211. pr_err("%s: th vi v-vali cfg failed\n", __func__);
  2212. this_afe.v_vali_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2213. }
  2214. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2215. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2216. if ((this_afe.ex_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE) &&
  2217. (this_afe.vi_tx_port == port_id)) {
  2218. afe_spk_config.ex_vi_mode_cfg.minor_version = 1;
  2219. afe_spk_config.ex_vi_mode_cfg.operation_mode =
  2220. Q6AFE_MSM_SPKR_FTM_MODE;
  2221. if (afe_spk_prot_prepare(port_id, 0,
  2222. AFE_PARAM_ID_SP_V2_EX_VI_MODE_CFG,
  2223. &afe_spk_config,
  2224. sizeof(union afe_spkr_prot_config)))
  2225. pr_err("%s: ex vi mode cfg failed\n", __func__);
  2226. afe_spk_config.ex_vi_ftm_cfg.minor_version = 1;
  2227. afe_spk_config.ex_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_1] =
  2228. this_afe.ex_ftm_cfg.wait_time[SP_V2_SPKR_1];
  2229. afe_spk_config.ex_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_2] =
  2230. this_afe.ex_ftm_cfg.wait_time[SP_V2_SPKR_2];
  2231. afe_spk_config.ex_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_1] =
  2232. this_afe.ex_ftm_cfg.ftm_time[SP_V2_SPKR_1];
  2233. afe_spk_config.ex_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_2] =
  2234. this_afe.ex_ftm_cfg.ftm_time[SP_V2_SPKR_2];
  2235. if (afe_spk_prot_prepare(port_id, 0,
  2236. AFE_PARAM_ID_SP_V2_EX_VI_FTM_CFG,
  2237. &afe_spk_config,
  2238. sizeof(union afe_spkr_prot_config)))
  2239. pr_err("%s: ex vi ftm cfg failed\n", __func__);
  2240. this_afe.ex_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2241. }
  2242. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2243. /* Register for DC detection event if speaker protection is enabled */
  2244. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
  2245. (this_afe.vi_tx_port == port_id)) {
  2246. afe_spkr_prot_reg_event_cfg(port_id,
  2247. AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI);
  2248. }
  2249. }
  2250. static void afe_send_cal_spv4_rx(int port_id)
  2251. {
  2252. union afe_spkr_prot_config afe_spk_config;
  2253. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  2254. return;
  2255. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2256. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
  2257. (this_afe.vi_rx_port == port_id) &&
  2258. (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9)) {
  2259. if (this_afe.prot_cfg.mode ==
  2260. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS)
  2261. afe_spk_config.v4_op_mode.mode =
  2262. Q6AFE_MSM_SPKR_CALIBRATION;
  2263. else
  2264. afe_spk_config.v4_op_mode.mode =
  2265. Q6AFE_MSM_SPKR_PROCESSING;
  2266. if (afe_spk_prot_prepare(port_id, 0,
  2267. AFE_PARAM_ID_SP_V4_OP_MODE,
  2268. &afe_spk_config, sizeof(union afe_spkr_prot_config)))
  2269. pr_info("%s: RX MODE_VI_PROC_CFG failed\n",
  2270. __func__);
  2271. }
  2272. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2273. }
  2274. static void afe_send_cal_spkr_prot_rx(int port_id)
  2275. {
  2276. union afe_spkr_prot_config afe_spk_config;
  2277. union afe_spkr_prot_config afe_spk_limiter_config;
  2278. if (q6core_get_avcs_api_version_per_service(
  2279. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  2280. afe_send_cal_spv4_rx(port_id);
  2281. return;
  2282. }
  2283. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  2284. goto done;
  2285. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2286. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
  2287. (this_afe.vi_rx_port == port_id)) {
  2288. if (this_afe.prot_cfg.mode ==
  2289. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS)
  2290. afe_spk_config.mode_rx_cfg.mode =
  2291. Q6AFE_MSM_SPKR_CALIBRATION;
  2292. else
  2293. afe_spk_config.mode_rx_cfg.mode =
  2294. Q6AFE_MSM_SPKR_PROCESSING;
  2295. afe_spk_config.mode_rx_cfg.minor_version = 1;
  2296. if (afe_spk_prot_prepare(port_id, 0,
  2297. AFE_PARAM_ID_FBSP_MODE_RX_CFG,
  2298. &afe_spk_config, sizeof(union afe_spkr_prot_config)))
  2299. pr_err("%s: RX MODE_VI_PROC_CFG failed\n",
  2300. __func__);
  2301. if (afe_spk_config.mode_rx_cfg.mode ==
  2302. Q6AFE_MSM_SPKR_PROCESSING) {
  2303. if (this_afe.prot_cfg.sp_version >=
  2304. AFE_API_VERSION_SUPPORT_SPV3) {
  2305. afe_spk_limiter_config.limiter_th_cfg.
  2306. minor_version = 1;
  2307. afe_spk_limiter_config.limiter_th_cfg.
  2308. lim_thr_per_calib_q27[SP_V2_SPKR_1] =
  2309. this_afe.prot_cfg.limiter_th[SP_V2_SPKR_1];
  2310. afe_spk_limiter_config.limiter_th_cfg.
  2311. lim_thr_per_calib_q27[SP_V2_SPKR_2] =
  2312. this_afe.prot_cfg.limiter_th[SP_V2_SPKR_2];
  2313. if (afe_spk_prot_prepare(port_id, 0,
  2314. AFE_PARAM_ID_SP_RX_LIMITER_TH,
  2315. &afe_spk_limiter_config,
  2316. sizeof(union afe_spkr_prot_config)))
  2317. pr_err("%s: SP_RX_LIMITER_TH failed.\n",
  2318. __func__);
  2319. } else {
  2320. pr_debug("%s: SPv3 failed to apply on AFE API version=%d.\n",
  2321. __func__,
  2322. this_afe.prot_cfg.sp_version);
  2323. }
  2324. }
  2325. }
  2326. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2327. done:
  2328. return;
  2329. }
  2330. static int afe_send_hw_delay(u16 port_id, u32 rate)
  2331. {
  2332. struct audio_cal_hw_delay_entry delay_entry;
  2333. struct afe_param_id_device_hw_delay_cfg hw_delay;
  2334. struct param_hdr_v3 param_info;
  2335. int ret = -EINVAL;
  2336. pr_debug("%s:\n", __func__);
  2337. memset(&delay_entry, 0, sizeof(delay_entry));
  2338. memset(&param_info, 0, sizeof(param_info));
  2339. delay_entry.sample_rate = rate;
  2340. if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_TX)
  2341. ret = afe_get_cal_hw_delay(TX_DEVICE, &delay_entry);
  2342. else if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX)
  2343. ret = afe_get_cal_hw_delay(RX_DEVICE, &delay_entry);
  2344. /*
  2345. * HW delay is only used for IMS calls to sync audio with video
  2346. * It is only needed for devices & sample rates used for IMS video
  2347. * calls. Values are received from ACDB calbration files
  2348. */
  2349. if (ret != 0) {
  2350. pr_debug("%s: debug: HW delay info not available %d\n",
  2351. __func__, ret);
  2352. goto fail_cmd;
  2353. }
  2354. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2355. param_info.instance_id = INSTANCE_ID_0;
  2356. param_info.param_id = AFE_PARAM_ID_DEVICE_HW_DELAY;
  2357. param_info.param_size = sizeof(hw_delay);
  2358. hw_delay.delay_in_us = delay_entry.delay_usec;
  2359. hw_delay.device_hw_delay_minor_version =
  2360. AFE_API_VERSION_DEVICE_HW_DELAY;
  2361. ret = q6afe_pack_and_set_param_in_band(port_id,
  2362. q6audio_get_port_index(port_id),
  2363. param_info, (u8 *) &hw_delay);
  2364. if (ret)
  2365. pr_err("%s: AFE hw delay for port 0x%x failed %d\n",
  2366. __func__, port_id, ret);
  2367. fail_cmd:
  2368. pr_info("%s: port_id 0x%x rate %u delay_usec %d status %d\n",
  2369. __func__, port_id, rate, delay_entry.delay_usec, ret);
  2370. return ret;
  2371. }
  2372. static struct cal_block_data *afe_find_cal_topo_id_by_port(
  2373. struct cal_type_data *cal_type, u16 port_id)
  2374. {
  2375. struct list_head *ptr, *next;
  2376. struct cal_block_data *cal_block = NULL;
  2377. int32_t path;
  2378. struct audio_cal_info_afe_top *afe_top;
  2379. int afe_port_index = q6audio_get_port_index(port_id);
  2380. if (afe_port_index < 0)
  2381. goto err_exit;
  2382. list_for_each_safe(ptr, next,
  2383. &cal_type->cal_blocks) {
  2384. cal_block = list_entry(ptr,
  2385. struct cal_block_data, list);
  2386. /* Skip cal_block if it is already marked stale */
  2387. if (cal_utils_is_cal_stale(cal_block))
  2388. continue;
  2389. pr_info("%s: port id: 0x%x, dev_acdb_id: %d\n", __func__,
  2390. port_id, this_afe.dev_acdb_id[afe_port_index]);
  2391. path = ((afe_get_port_type(port_id) ==
  2392. MSM_AFE_PORT_TYPE_TX)?(TX_DEVICE):(RX_DEVICE));
  2393. afe_top =
  2394. (struct audio_cal_info_afe_top *)cal_block->cal_info;
  2395. if (afe_top->path == path) {
  2396. if (this_afe.dev_acdb_id[afe_port_index] > 0) {
  2397. if (afe_top->acdb_id ==
  2398. this_afe.dev_acdb_id[afe_port_index]) {
  2399. pr_info("%s: top_id:%x acdb_id:%d afe_port_id:0x%x\n",
  2400. __func__, afe_top->topology,
  2401. afe_top->acdb_id,
  2402. q6audio_get_port_id(port_id));
  2403. return cal_block;
  2404. }
  2405. } else {
  2406. pr_info("%s: top_id:%x acdb_id:%d afe_port:0x%x\n",
  2407. __func__, afe_top->topology, afe_top->acdb_id,
  2408. q6audio_get_port_id(port_id));
  2409. return cal_block;
  2410. }
  2411. }
  2412. }
  2413. err_exit:
  2414. return NULL;
  2415. }
  2416. /*
  2417. * Retrieving cal_block will mark cal_block as stale.
  2418. * Hence it cannot be reused or resent unless the flag
  2419. * is reset.
  2420. */
  2421. static int afe_get_cal_topology_id(u16 port_id, u32 *topology_id,
  2422. int cal_type_index)
  2423. {
  2424. int ret = 0;
  2425. struct cal_block_data *cal_block = NULL;
  2426. struct audio_cal_info_afe_top *afe_top_info = NULL;
  2427. if (this_afe.cal_data[cal_type_index] == NULL) {
  2428. pr_err("%s: cal_type %d not initialized\n", __func__,
  2429. cal_type_index);
  2430. return -EINVAL;
  2431. }
  2432. if (topology_id == NULL) {
  2433. pr_err("%s: topology_id is NULL\n", __func__);
  2434. return -EINVAL;
  2435. }
  2436. *topology_id = 0;
  2437. mutex_lock(&this_afe.cal_data[cal_type_index]->lock);
  2438. cal_block = afe_find_cal_topo_id_by_port(
  2439. this_afe.cal_data[cal_type_index], port_id);
  2440. if (cal_block == NULL) {
  2441. pr_err("%s: cal_type %d not initialized for this port %d\n",
  2442. __func__, cal_type_index, port_id);
  2443. ret = -EINVAL;
  2444. goto unlock;
  2445. }
  2446. afe_top_info = ((struct audio_cal_info_afe_top *)
  2447. cal_block->cal_info);
  2448. if (!afe_top_info->topology) {
  2449. pr_err("%s: invalid topology id : [%d, %d]\n",
  2450. __func__, afe_top_info->acdb_id, afe_top_info->topology);
  2451. ret = -EINVAL;
  2452. goto unlock;
  2453. }
  2454. *topology_id = (u32)afe_top_info->topology;
  2455. cal_utils_mark_cal_used(cal_block);
  2456. pr_info("%s: port_id = 0x%x acdb_id = %d topology_id = 0x%x cal_type_index=%d ret=%d\n",
  2457. __func__, port_id, afe_top_info->acdb_id,
  2458. afe_top_info->topology, cal_type_index, ret);
  2459. unlock:
  2460. mutex_unlock(&this_afe.cal_data[cal_type_index]->lock);
  2461. return ret;
  2462. }
  2463. static int afe_send_port_topology_id(u16 port_id)
  2464. {
  2465. struct afe_param_id_set_topology_cfg topology;
  2466. struct param_hdr_v3 param_info;
  2467. u32 topology_id = 0;
  2468. int index = 0;
  2469. int ret = 0;
  2470. memset(&topology, 0, sizeof(topology));
  2471. memset(&param_info, 0, sizeof(param_info));
  2472. index = q6audio_get_port_index(port_id);
  2473. if (index < 0 || index >= AFE_MAX_PORTS) {
  2474. pr_err("%s: AFE port index[%d] invalid!\n",
  2475. __func__, index);
  2476. return -EINVAL;
  2477. }
  2478. ret = afe_get_cal_topology_id(port_id, &topology_id, AFE_TOPOLOGY_CAL);
  2479. if (ret < 0) {
  2480. pr_debug("%s: Check for LSM topology\n", __func__);
  2481. ret = afe_get_cal_topology_id(port_id, &topology_id,
  2482. AFE_LSM_TOPOLOGY_CAL);
  2483. }
  2484. if (ret || !topology_id) {
  2485. pr_debug("%s: AFE port[%d] get_cal_topology[%d] invalid!\n",
  2486. __func__, port_id, topology_id);
  2487. goto done;
  2488. }
  2489. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2490. param_info.instance_id = INSTANCE_ID_0;
  2491. param_info.param_id = AFE_PARAM_ID_SET_TOPOLOGY;
  2492. param_info.param_size = sizeof(topology);
  2493. topology.minor_version = AFE_API_VERSION_TOPOLOGY_V1;
  2494. topology.topology_id = topology_id;
  2495. ret = q6afe_pack_and_set_param_in_band(port_id,
  2496. q6audio_get_port_index(port_id),
  2497. param_info, (u8 *) &topology);
  2498. if (ret) {
  2499. pr_err("%s: AFE set topology id enable for port 0x%x failed %d\n",
  2500. __func__, port_id, ret);
  2501. goto done;
  2502. }
  2503. this_afe.topology[index] = topology_id;
  2504. rtac_update_afe_topology(port_id);
  2505. done:
  2506. pr_info("%s: AFE set topology id 0x%x enable for port 0x%x ret %d\n",
  2507. __func__, topology_id, port_id, ret);
  2508. return ret;
  2509. }
  2510. static int afe_get_island_mode(u16 port_id, u32 *island_mode)
  2511. {
  2512. int ret = 0;
  2513. int index = 0;
  2514. *island_mode = 0;
  2515. index = q6audio_get_port_index(port_id);
  2516. if (index < 0 || index >= AFE_MAX_PORTS) {
  2517. pr_err("%s: AFE port index[%d] invalid!\n",
  2518. __func__, index);
  2519. return -EINVAL;
  2520. }
  2521. *island_mode = this_afe.island_mode[index];
  2522. return ret;
  2523. }
  2524. /*
  2525. * afe_send_port_island_mode -
  2526. * for sending island mode to AFE
  2527. *
  2528. * @port_id: AFE port id number
  2529. *
  2530. * Returns 0 on success or error on failure.
  2531. */
  2532. int afe_send_port_island_mode(u16 port_id)
  2533. {
  2534. struct afe_param_id_island_cfg_t island_cfg;
  2535. struct param_hdr_v3 param_info;
  2536. u32 island_mode = 0;
  2537. int ret = 0;
  2538. if (!(q6core_get_avcs_api_version_per_service(
  2539. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V4)) {
  2540. pr_debug("%s: AFE port[%d] API version is invalid!\n",
  2541. __func__, port_id);
  2542. return 0;
  2543. }
  2544. memset(&island_cfg, 0, sizeof(island_cfg));
  2545. memset(&param_info, 0, sizeof(param_info));
  2546. ret = afe_get_island_mode(port_id, &island_mode);
  2547. if (ret) {
  2548. pr_err("%s: AFE port[%d] get island mode is invalid!\n",
  2549. __func__, port_id);
  2550. return ret;
  2551. }
  2552. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2553. param_info.instance_id = INSTANCE_ID_0;
  2554. param_info.param_id = AFE_PARAM_ID_ISLAND_CONFIG;
  2555. param_info.param_size = sizeof(island_cfg);
  2556. island_cfg.island_cfg_minor_version = AFE_API_VERSION_ISLAND_CONFIG;
  2557. island_cfg.island_enable = island_mode;
  2558. ret = q6afe_pack_and_set_param_in_band(port_id,
  2559. q6audio_get_port_index(port_id),
  2560. param_info, (u8 *) &island_cfg);
  2561. if (ret) {
  2562. pr_err("%s: AFE set island mode enable for port 0x%x failed %d\n",
  2563. __func__, port_id, ret);
  2564. return ret;
  2565. }
  2566. pr_debug("%s: AFE set island mode 0x%x enable for port 0x%x ret %d\n",
  2567. __func__, island_mode, port_id, ret);
  2568. trace_printk("%s: AFE set island mode 0x%x enable for port 0x%x ret %d\n",
  2569. __func__, island_mode, port_id, ret);
  2570. return ret;
  2571. }
  2572. EXPORT_SYMBOL(afe_send_port_island_mode);
  2573. static int afe_get_vad_preroll_cfg(u16 port_id, u32 *preroll_cfg)
  2574. {
  2575. int ret = 0;
  2576. int index = 0;
  2577. *preroll_cfg = 0;
  2578. index = q6audio_get_port_index(port_id);
  2579. if (index < 0 || index >= AFE_MAX_PORTS) {
  2580. pr_err("%s: AFE port index[%d] invalid!\n",
  2581. __func__, index);
  2582. return -EINVAL;
  2583. }
  2584. *preroll_cfg = this_afe.vad_cfg[index].pre_roll;
  2585. return ret;
  2586. }
  2587. int afe_send_port_vad_cfg_params(u16 port_id)
  2588. {
  2589. struct afe_param_id_vad_cfg_t vad_cfg;
  2590. struct afe_mod_enable_param vad_enable;
  2591. struct param_hdr_v3 param_info;
  2592. u32 pre_roll_cfg = 0;
  2593. struct firmware_cal *hwdep_cal = NULL;
  2594. int ret = 0;
  2595. uint16_t port_index = 0;
  2596. if (!(q6core_get_avcs_api_version_per_service(
  2597. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V4)) {
  2598. pr_err("%s: AFE port[%d]: AFE API version doesn't support VAD config\n",
  2599. __func__, port_id);
  2600. return 0;
  2601. }
  2602. port_index = afe_get_port_index(port_id);
  2603. if (this_afe.vad_cfg[port_index].is_enable) {
  2604. memset(&vad_cfg, 0, sizeof(vad_cfg));
  2605. memset(&param_info, 0, sizeof(param_info));
  2606. ret = afe_get_vad_preroll_cfg(port_id, &pre_roll_cfg);
  2607. if (ret) {
  2608. pr_err("%s: AFE port[%d] get preroll cfg is invalid!\n",
  2609. __func__, port_id);
  2610. return ret;
  2611. }
  2612. param_info.module_id = AFE_MODULE_VAD;
  2613. param_info.instance_id = INSTANCE_ID_0;
  2614. param_info.param_id = AFE_PARAM_ID_VAD_CFG;
  2615. param_info.param_size = sizeof(vad_cfg);
  2616. vad_cfg.vad_cfg_minor_version = AFE_API_VERSION_VAD_CFG;
  2617. vad_cfg.pre_roll_in_ms = pre_roll_cfg;
  2618. ret = q6afe_pack_and_set_param_in_band(port_id,
  2619. q6audio_get_port_index(port_id),
  2620. param_info, (u8 *) &vad_cfg);
  2621. if (ret) {
  2622. pr_err("%s: AFE set vad cfg for port 0x%x failed %d\n",
  2623. __func__, port_id, ret);
  2624. return ret;
  2625. }
  2626. memset(&param_info, 0, sizeof(param_info));
  2627. hwdep_cal = q6afecal_get_fw_cal(this_afe.fw_data,
  2628. Q6AFE_VAD_CORE_CAL);
  2629. if (!hwdep_cal) {
  2630. pr_err("%s: error in retrieving vad core calibration",
  2631. __func__);
  2632. return -EINVAL;
  2633. }
  2634. param_info.module_id = AFE_MODULE_VAD;
  2635. param_info.instance_id = INSTANCE_ID_0;
  2636. param_info.param_id = AFE_PARAM_ID_VAD_CORE_CFG;
  2637. param_info.param_size = hwdep_cal->size;
  2638. ret = q6afe_pack_and_set_param_in_band(port_id,
  2639. q6audio_get_port_index(port_id),
  2640. param_info,
  2641. (u8 *) hwdep_cal->data);
  2642. if (ret) {
  2643. pr_err("%s: AFE set vad cfg for port 0x%x failed %d\n",
  2644. __func__, port_id, ret);
  2645. return ret;
  2646. }
  2647. }
  2648. if (q6core_get_avcs_api_version_per_service(
  2649. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V6) {
  2650. memset(&vad_enable, 0, sizeof(vad_enable));
  2651. memset(&param_info, 0, sizeof(param_info));
  2652. param_info.module_id = AFE_MODULE_VAD;
  2653. param_info.instance_id = INSTANCE_ID_0;
  2654. param_info.param_id = AFE_PARAM_ID_ENABLE;
  2655. param_info.param_size = sizeof(vad_enable);
  2656. port_index = afe_get_port_index(port_id);
  2657. vad_enable.enable = this_afe.vad_cfg[port_index].is_enable;
  2658. ret = q6afe_pack_and_set_param_in_band(port_id,
  2659. q6audio_get_port_index(port_id),
  2660. param_info, (u8 *) &vad_enable);
  2661. if (ret) {
  2662. pr_err("%s: AFE set vad enable for port 0x%x failed %d\n",
  2663. __func__, port_id, ret);
  2664. return ret;
  2665. }
  2666. }
  2667. pr_debug("%s: AFE set preroll cfg %d vad core cfg port 0x%x ret %d\n",
  2668. __func__, pre_roll_cfg, port_id, ret);
  2669. return ret;
  2670. }
  2671. EXPORT_SYMBOL(afe_send_port_vad_cfg_params);
  2672. static int remap_cal_data(struct cal_block_data *cal_block, int cal_index)
  2673. {
  2674. int ret = 0;
  2675. if (cal_block->map_data.dma_buf == NULL) {
  2676. pr_err("%s: No ION allocation for cal index %d!\n",
  2677. __func__, cal_index);
  2678. ret = -EINVAL;
  2679. goto done;
  2680. }
  2681. if ((cal_block->map_data.map_size > 0) &&
  2682. (cal_block->map_data.q6map_handle == 0)) {
  2683. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  2684. ret = afe_cmd_memory_map(cal_block->cal_data.paddr,
  2685. cal_block->map_data.map_size);
  2686. atomic_set(&this_afe.mem_map_cal_index, -1);
  2687. if (ret < 0) {
  2688. pr_err("%s: mmap did not work! size = %zd ret %d\n",
  2689. __func__,
  2690. cal_block->map_data.map_size, ret);
  2691. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %zd\n",
  2692. __func__,
  2693. &cal_block->cal_data.paddr,
  2694. cal_block->map_data.map_size);
  2695. goto done;
  2696. }
  2697. cal_block->map_data.q6map_handle = atomic_read(&this_afe.
  2698. mem_map_cal_handles[cal_index]);
  2699. }
  2700. done:
  2701. return ret;
  2702. }
  2703. static struct cal_block_data *afe_find_cal(int cal_index, int port_id)
  2704. {
  2705. struct list_head *ptr, *next;
  2706. struct cal_block_data *cal_block = NULL;
  2707. struct audio_cal_info_afe *afe_cal_info = NULL;
  2708. int afe_port_index = q6audio_get_port_index(port_id);
  2709. pr_info("%s: cal_index %d port_id 0x%x port_index %d\n", __func__,
  2710. cal_index, port_id, afe_port_index);
  2711. if (afe_port_index < 0) {
  2712. pr_err("%s: Error getting AFE port index %d\n",
  2713. __func__, afe_port_index);
  2714. goto exit;
  2715. }
  2716. list_for_each_safe(ptr, next,
  2717. &this_afe.cal_data[cal_index]->cal_blocks) {
  2718. cal_block = list_entry(ptr, struct cal_block_data, list);
  2719. afe_cal_info = cal_block->cal_info;
  2720. pr_info("%s: acdb_id %d dev_acdb_id %d sample_rate %d afe_sample_rates %d\n",
  2721. __func__, afe_cal_info->acdb_id,
  2722. this_afe.dev_acdb_id[afe_port_index],
  2723. afe_cal_info->sample_rate,
  2724. this_afe.afe_sample_rates[afe_port_index]);
  2725. if ((afe_cal_info->acdb_id ==
  2726. this_afe.dev_acdb_id[afe_port_index]) &&
  2727. (afe_cal_info->sample_rate ==
  2728. this_afe.afe_sample_rates[afe_port_index])) {
  2729. pr_info("%s: cal block is a match, size is %zd\n",
  2730. __func__, cal_block->cal_data.size);
  2731. goto exit;
  2732. }
  2733. }
  2734. pr_info("%s: no matching cal_block found\n", __func__);
  2735. cal_block = NULL;
  2736. exit:
  2737. return cal_block;
  2738. }
  2739. static int send_afe_cal_type(int cal_index, int port_id)
  2740. {
  2741. struct cal_block_data *cal_block = NULL;
  2742. int ret;
  2743. int afe_port_index = q6audio_get_port_index(port_id);
  2744. pr_info("%s: cal_index is %d\n", __func__, cal_index);
  2745. if (this_afe.cal_data[cal_index] == NULL) {
  2746. pr_warn("%s: cal_index %d not allocated!\n",
  2747. __func__, cal_index);
  2748. ret = -EINVAL;
  2749. goto done;
  2750. }
  2751. if (afe_port_index < 0) {
  2752. pr_err("%s: Error getting AFE port index %d\n",
  2753. __func__, afe_port_index);
  2754. ret = -EINVAL;
  2755. goto done;
  2756. }
  2757. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  2758. pr_info("%s: dev_acdb_id[%d] is %d\n",
  2759. __func__, afe_port_index,
  2760. this_afe.dev_acdb_id[afe_port_index]);
  2761. if (((cal_index == AFE_COMMON_RX_CAL) ||
  2762. (cal_index == AFE_COMMON_TX_CAL) ||
  2763. (cal_index == AFE_LSM_TX_CAL)) &&
  2764. (this_afe.dev_acdb_id[afe_port_index] > 0))
  2765. cal_block = afe_find_cal(cal_index, port_id);
  2766. else
  2767. cal_block = cal_utils_get_only_cal_block(
  2768. this_afe.cal_data[cal_index]);
  2769. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  2770. pr_err("%s cal_block not found!!\n", __func__);
  2771. ret = -EINVAL;
  2772. goto unlock;
  2773. }
  2774. pr_info("%s: Sending cal_index cal %d\n", __func__, cal_index);
  2775. ret = remap_cal_data(cal_block, cal_index);
  2776. if (ret) {
  2777. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  2778. __func__, cal_index);
  2779. ret = -EINVAL;
  2780. goto unlock;
  2781. }
  2782. ret = afe_send_cal_block(port_id, cal_block);
  2783. if (ret < 0)
  2784. pr_err("%s: No cal sent for cal_index %d, port_id = 0x%x! ret %d\n",
  2785. __func__, cal_index, port_id, ret);
  2786. cal_utils_mark_cal_used(cal_block);
  2787. unlock:
  2788. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  2789. done:
  2790. return ret;
  2791. }
  2792. void afe_send_cal(u16 port_id)
  2793. {
  2794. int ret;
  2795. pr_debug("%s: port_id=0x%x\n", __func__, port_id);
  2796. if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_TX) {
  2797. afe_send_cal_spkr_prot_tx(port_id);
  2798. ret = send_afe_cal_type(AFE_COMMON_TX_CAL, port_id);
  2799. if (ret < 0)
  2800. send_afe_cal_type(AFE_LSM_TX_CAL, port_id);
  2801. } else if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX) {
  2802. send_afe_cal_type(AFE_COMMON_RX_CAL, port_id);
  2803. afe_send_cal_spkr_prot_rx(port_id);
  2804. }
  2805. }
  2806. int afe_turn_onoff_hw_mad(u16 mad_type, u16 enable)
  2807. {
  2808. struct afe_param_hw_mad_ctrl mad_enable_param;
  2809. struct param_hdr_v3 param_info;
  2810. int ret;
  2811. pr_debug("%s: enter\n", __func__);
  2812. memset(&mad_enable_param, 0, sizeof(mad_enable_param));
  2813. memset(&param_info, 0, sizeof(param_info));
  2814. param_info.module_id = AFE_MODULE_HW_MAD;
  2815. param_info.instance_id = INSTANCE_ID_0;
  2816. param_info.param_id = AFE_PARAM_ID_HW_MAD_CTRL;
  2817. param_info.param_size = sizeof(mad_enable_param);
  2818. mad_enable_param.minor_version = 1;
  2819. mad_enable_param.mad_type = mad_type;
  2820. mad_enable_param.mad_enable = enable;
  2821. ret = q6afe_pack_and_set_param_in_band(SLIMBUS_5_TX, IDX_GLOBAL_CFG,
  2822. param_info,
  2823. (u8 *) &mad_enable_param);
  2824. if (ret)
  2825. pr_err("%s: AFE_PARAM_ID_HW_MAD_CTRL failed %d\n", __func__,
  2826. ret);
  2827. return ret;
  2828. }
  2829. static int afe_send_slimbus_slave_cfg(
  2830. struct afe_param_cdc_slimbus_slave_cfg *sb_slave_cfg)
  2831. {
  2832. struct param_hdr_v3 param_hdr;
  2833. int ret;
  2834. pr_debug("%s: enter\n", __func__);
  2835. memset(&param_hdr, 0, sizeof(param_hdr));
  2836. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  2837. param_hdr.instance_id = INSTANCE_ID_0;
  2838. param_hdr.param_id = AFE_PARAM_ID_CDC_SLIMBUS_SLAVE_CFG;
  2839. param_hdr.param_size = sizeof(struct afe_param_cdc_slimbus_slave_cfg);
  2840. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  2841. (u8 *) sb_slave_cfg);
  2842. if (ret)
  2843. pr_err("%s: AFE_PARAM_ID_CDC_SLIMBUS_SLAVE_CFG failed %d\n",
  2844. __func__, ret);
  2845. pr_debug("%s: leave %d\n", __func__, ret);
  2846. return ret;
  2847. }
  2848. static int afe_send_codec_reg_page_config(
  2849. struct afe_param_cdc_reg_page_cfg *cdc_reg_page_cfg)
  2850. {
  2851. struct param_hdr_v3 param_hdr;
  2852. int ret;
  2853. memset(&param_hdr, 0, sizeof(param_hdr));
  2854. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  2855. param_hdr.instance_id = INSTANCE_ID_0;
  2856. param_hdr.param_id = AFE_PARAM_ID_CDC_REG_PAGE_CFG;
  2857. param_hdr.param_size = sizeof(struct afe_param_cdc_reg_page_cfg);
  2858. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  2859. (u8 *) cdc_reg_page_cfg);
  2860. if (ret)
  2861. pr_err("%s: AFE_PARAM_ID_CDC_REG_PAGE_CFG failed %d\n",
  2862. __func__, ret);
  2863. return ret;
  2864. }
  2865. static int afe_send_codec_reg_config(
  2866. struct afe_param_cdc_reg_cfg_data *cdc_reg_cfg)
  2867. {
  2868. u8 *packed_param_data = NULL;
  2869. u32 packed_data_size = 0;
  2870. u32 single_param_size = 0;
  2871. u32 max_data_size = 0;
  2872. u32 max_single_param = 0;
  2873. struct param_hdr_v3 param_hdr;
  2874. int idx = 0;
  2875. int ret = -EINVAL;
  2876. bool is_iid_supported = q6common_is_instance_id_supported();
  2877. memset(&param_hdr, 0, sizeof(param_hdr));
  2878. max_single_param = sizeof(struct param_hdr_v3) +
  2879. sizeof(struct afe_param_cdc_reg_cfg);
  2880. max_data_size = APR_MAX_BUF - sizeof(struct afe_svc_cmd_set_param_v2);
  2881. packed_param_data = kzalloc(max_data_size, GFP_KERNEL);
  2882. if (!packed_param_data)
  2883. return -ENOMEM;
  2884. /* param_hdr is the same for all params sent, set once at top */
  2885. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  2886. param_hdr.instance_id = INSTANCE_ID_0;
  2887. param_hdr.param_id = AFE_PARAM_ID_CDC_REG_CFG;
  2888. param_hdr.param_size = sizeof(struct afe_param_cdc_reg_cfg);
  2889. while (idx < cdc_reg_cfg->num_registers) {
  2890. memset(packed_param_data, 0, max_data_size);
  2891. packed_data_size = 0;
  2892. single_param_size = 0;
  2893. while (packed_data_size + max_single_param < max_data_size &&
  2894. idx < cdc_reg_cfg->num_registers) {
  2895. ret = q6common_pack_pp_params_v2(
  2896. packed_param_data + packed_data_size,
  2897. &param_hdr, (u8 *) &cdc_reg_cfg->reg_data[idx],
  2898. &single_param_size, is_iid_supported);
  2899. if (ret) {
  2900. pr_err("%s: Failed to pack parameters with error %d\n",
  2901. __func__, ret);
  2902. goto done;
  2903. }
  2904. packed_data_size += single_param_size;
  2905. idx++;
  2906. }
  2907. ret = q6afe_svc_set_params(IDX_GLOBAL_CFG, NULL,
  2908. packed_param_data, packed_data_size,
  2909. is_iid_supported);
  2910. if (ret) {
  2911. pr_err("%s: AFE_PARAM_ID_CDC_REG_CFG failed %d\n",
  2912. __func__, ret);
  2913. break;
  2914. }
  2915. }
  2916. done:
  2917. kfree(packed_param_data);
  2918. return ret;
  2919. }
  2920. static int afe_init_cdc_reg_config(void)
  2921. {
  2922. struct param_hdr_v3 param_hdr;
  2923. int ret;
  2924. pr_debug("%s: enter\n", __func__);
  2925. memset(&param_hdr, 0, sizeof(param_hdr));
  2926. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  2927. param_hdr.instance_id = INSTANCE_ID_0;
  2928. param_hdr.param_id = AFE_PARAM_ID_CDC_REG_CFG_INIT;
  2929. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  2930. NULL);
  2931. if (ret)
  2932. pr_err("%s: AFE_PARAM_ID_CDC_INIT_REG_CFG failed %d\n",
  2933. __func__, ret);
  2934. return ret;
  2935. }
  2936. static int afe_send_slimbus_slave_port_cfg(
  2937. struct afe_param_slimbus_slave_port_cfg *slim_slave_config, u16 port_id)
  2938. {
  2939. struct param_hdr_v3 param_hdr;
  2940. int ret;
  2941. pr_debug("%s: enter, port_id = 0x%x\n", __func__, port_id);
  2942. memset(&param_hdr, 0, sizeof(param_hdr));
  2943. param_hdr.module_id = AFE_MODULE_HW_MAD;
  2944. param_hdr.instance_id = INSTANCE_ID_0;
  2945. param_hdr.reserved = 0;
  2946. param_hdr.param_id = AFE_PARAM_ID_SLIMBUS_SLAVE_PORT_CFG;
  2947. param_hdr.param_size = sizeof(struct afe_param_slimbus_slave_port_cfg);
  2948. ret = q6afe_pack_and_set_param_in_band(port_id,
  2949. q6audio_get_port_index(port_id),
  2950. param_hdr,
  2951. (u8 *) slim_slave_config);
  2952. if (ret)
  2953. pr_err("%s: AFE_PARAM_ID_SLIMBUS_SLAVE_PORT_CFG failed %d\n",
  2954. __func__, ret);
  2955. pr_debug("%s: leave %d\n", __func__, ret);
  2956. return ret;
  2957. }
  2958. static int afe_aanc_port_cfg(void *apr, uint16_t tx_port, uint16_t rx_port)
  2959. {
  2960. struct afe_param_aanc_port_cfg aanc_port_cfg;
  2961. struct param_hdr_v3 param_hdr;
  2962. int ret = 0;
  2963. pr_debug("%s: tx_port 0x%x, rx_port 0x%x\n",
  2964. __func__, tx_port, rx_port);
  2965. pr_debug("%s: AANC sample rate tx rate: %d rx rate %d\n", __func__,
  2966. this_afe.aanc_info.aanc_tx_port_sample_rate,
  2967. this_afe.aanc_info.aanc_rx_port_sample_rate);
  2968. memset(&aanc_port_cfg, 0, sizeof(aanc_port_cfg));
  2969. memset(&param_hdr, 0, sizeof(param_hdr));
  2970. /*
  2971. * If aanc tx sample rate or rx sample rate is zero, skip aanc
  2972. * configuration as AFE resampler will fail for invalid sample
  2973. * rates.
  2974. */
  2975. if (!this_afe.aanc_info.aanc_tx_port_sample_rate ||
  2976. !this_afe.aanc_info.aanc_rx_port_sample_rate) {
  2977. return -EINVAL;
  2978. }
  2979. param_hdr.module_id = AFE_MODULE_AANC;
  2980. param_hdr.instance_id = INSTANCE_ID_0;
  2981. param_hdr.param_id = AFE_PARAM_ID_AANC_PORT_CONFIG;
  2982. param_hdr.param_size = sizeof(struct afe_param_aanc_port_cfg);
  2983. aanc_port_cfg.aanc_port_cfg_minor_version =
  2984. AFE_API_VERSION_AANC_PORT_CONFIG;
  2985. aanc_port_cfg.tx_port_sample_rate =
  2986. this_afe.aanc_info.aanc_tx_port_sample_rate;
  2987. aanc_port_cfg.tx_port_channel_map[0] = AANC_TX_VOICE_MIC;
  2988. aanc_port_cfg.tx_port_channel_map[1] = AANC_TX_NOISE_MIC;
  2989. aanc_port_cfg.tx_port_channel_map[2] = AANC_TX_ERROR_MIC;
  2990. aanc_port_cfg.tx_port_channel_map[3] = AANC_TX_MIC_UNUSED;
  2991. aanc_port_cfg.tx_port_channel_map[4] = AANC_TX_MIC_UNUSED;
  2992. aanc_port_cfg.tx_port_channel_map[5] = AANC_TX_MIC_UNUSED;
  2993. aanc_port_cfg.tx_port_channel_map[6] = AANC_TX_MIC_UNUSED;
  2994. aanc_port_cfg.tx_port_channel_map[7] = AANC_TX_MIC_UNUSED;
  2995. aanc_port_cfg.tx_port_num_channels = 3;
  2996. aanc_port_cfg.rx_path_ref_port_id = rx_port;
  2997. aanc_port_cfg.ref_port_sample_rate =
  2998. this_afe.aanc_info.aanc_rx_port_sample_rate;
  2999. ret = q6afe_pack_and_set_param_in_band(tx_port,
  3000. q6audio_get_port_index(tx_port),
  3001. param_hdr,
  3002. (u8 *) &aanc_port_cfg);
  3003. if (ret)
  3004. pr_err("%s: AFE AANC port config failed for tx_port 0x%x, rx_port 0x%x ret %d\n",
  3005. __func__, tx_port, rx_port, ret);
  3006. else
  3007. q6afe_set_aanc_level();
  3008. return ret;
  3009. }
  3010. static int afe_aanc_mod_enable(void *apr, uint16_t tx_port, uint16_t enable)
  3011. {
  3012. struct afe_mod_enable_param mod_enable;
  3013. struct param_hdr_v3 param_hdr;
  3014. int ret = 0;
  3015. pr_debug("%s: tx_port 0x%x\n", __func__, tx_port);
  3016. memset(&mod_enable, 0, sizeof(mod_enable));
  3017. memset(&param_hdr, 0, sizeof(param_hdr));
  3018. param_hdr.module_id = AFE_MODULE_AANC;
  3019. param_hdr.instance_id = INSTANCE_ID_0;
  3020. param_hdr.param_id = AFE_PARAM_ID_ENABLE;
  3021. param_hdr.param_size = sizeof(struct afe_mod_enable_param);
  3022. mod_enable.enable = enable;
  3023. mod_enable.reserved = 0;
  3024. ret = q6afe_pack_and_set_param_in_band(tx_port,
  3025. q6audio_get_port_index(tx_port),
  3026. param_hdr, (u8 *) &mod_enable);
  3027. if (ret)
  3028. pr_err("%s: AFE AANC enable failed for tx_port 0x%x ret %d\n",
  3029. __func__, tx_port, ret);
  3030. return ret;
  3031. }
  3032. static int afe_send_bank_selection_clip(
  3033. struct afe_param_id_clip_bank_sel *param)
  3034. {
  3035. struct param_hdr_v3 param_hdr;
  3036. int ret;
  3037. if (!param) {
  3038. pr_err("%s: Invalid params", __func__);
  3039. return -EINVAL;
  3040. }
  3041. memset(&param_hdr, 0, sizeof(param_hdr));
  3042. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  3043. param_hdr.instance_id = INSTANCE_ID_0;
  3044. param_hdr.param_id = AFE_PARAM_ID_CLIP_BANK_SEL_CFG;
  3045. param_hdr.param_size = sizeof(struct afe_param_id_clip_bank_sel);
  3046. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  3047. (u8 *) param);
  3048. if (ret)
  3049. pr_err("%s: AFE_PARAM_ID_CLIP_BANK_SEL_CFG failed %d\n",
  3050. __func__, ret);
  3051. return ret;
  3052. }
  3053. int afe_send_aanc_version(
  3054. struct afe_param_id_cdc_aanc_version *version_cfg)
  3055. {
  3056. struct param_hdr_v3 param_hdr;
  3057. int ret;
  3058. pr_debug("%s: enter\n", __func__);
  3059. memset(&param_hdr, 0, sizeof(param_hdr));
  3060. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  3061. param_hdr.instance_id = INSTANCE_ID_0;
  3062. param_hdr.param_id = AFE_PARAM_ID_CDC_AANC_VERSION;
  3063. param_hdr.param_size = sizeof(struct afe_param_id_cdc_aanc_version);
  3064. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  3065. (u8 *) version_cfg);
  3066. if (ret)
  3067. pr_err("%s: AFE_PARAM_ID_CDC_AANC_VERSION failed %d\n",
  3068. __func__, ret);
  3069. return ret;
  3070. }
  3071. /**
  3072. * afe_port_set_mad_type -
  3073. * to update mad type
  3074. *
  3075. * @port_id: AFE port id number
  3076. * @mad_type: MAD type enum value
  3077. *
  3078. * Returns 0 on success or error on failure.
  3079. */
  3080. int afe_port_set_mad_type(u16 port_id, enum afe_mad_type mad_type)
  3081. {
  3082. int i;
  3083. if (port_id == AFE_PORT_ID_TERTIARY_MI2S_TX ||
  3084. port_id == AFE_PORT_ID_INT3_MI2S_TX ||
  3085. port_id == AFE_PORT_ID_TX_CODEC_DMA_TX_3 ||
  3086. port_id == AFE_PORT_ID_TERTIARY_TDM_TX) {
  3087. mad_type = MAD_SW_AUDIO;
  3088. return 0;
  3089. }
  3090. i = port_id - SLIMBUS_0_RX;
  3091. if (i < 0 || i >= ARRAY_SIZE(afe_ports_mad_type)) {
  3092. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  3093. return -EINVAL;
  3094. }
  3095. atomic_set(&afe_ports_mad_type[i], mad_type);
  3096. return 0;
  3097. }
  3098. EXPORT_SYMBOL(afe_port_set_mad_type);
  3099. /**
  3100. * afe_port_get_mad_type -
  3101. * to retrieve mad type
  3102. *
  3103. * @port_id: AFE port id number
  3104. *
  3105. * Returns valid enum value on success or MAD_HW_NONE on failure.
  3106. */
  3107. enum afe_mad_type afe_port_get_mad_type(u16 port_id)
  3108. {
  3109. int i;
  3110. if (port_id == AFE_PORT_ID_TERTIARY_MI2S_TX ||
  3111. port_id == AFE_PORT_ID_INT3_MI2S_TX ||
  3112. port_id == AFE_PORT_ID_TX_CODEC_DMA_TX_3 ||
  3113. port_id == AFE_PORT_ID_TERTIARY_TDM_TX)
  3114. return MAD_SW_AUDIO;
  3115. i = port_id - SLIMBUS_0_RX;
  3116. if (i < 0 || i >= ARRAY_SIZE(afe_ports_mad_type)) {
  3117. pr_debug("%s: Non Slimbus port_id 0x%x\n", __func__, port_id);
  3118. return MAD_HW_NONE;
  3119. }
  3120. return (enum afe_mad_type) atomic_read(&afe_ports_mad_type[i]);
  3121. }
  3122. EXPORT_SYMBOL(afe_port_get_mad_type);
  3123. /**
  3124. * afe_set_config -
  3125. * to configure AFE session with
  3126. * specified configuration for given config type
  3127. *
  3128. * @config_type: config type
  3129. * @config_data: configuration to pass to AFE session
  3130. * @arg: argument used in specific config types
  3131. *
  3132. * Returns 0 on success or error value on port start failure.
  3133. */
  3134. int afe_set_config(enum afe_config_type config_type, void *config_data, int arg)
  3135. {
  3136. int ret;
  3137. pr_debug("%s: enter config_type %d\n", __func__, config_type);
  3138. ret = afe_q6_interface_prepare();
  3139. if (ret) {
  3140. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3141. return ret;
  3142. }
  3143. switch (config_type) {
  3144. case AFE_SLIMBUS_SLAVE_CONFIG:
  3145. ret = afe_send_slimbus_slave_cfg(config_data);
  3146. if (!ret)
  3147. ret = afe_init_cdc_reg_config();
  3148. else
  3149. pr_err("%s: Sending slimbus slave config failed %d\n",
  3150. __func__, ret);
  3151. break;
  3152. case AFE_CDC_REGISTERS_CONFIG:
  3153. ret = afe_send_codec_reg_config(config_data);
  3154. break;
  3155. case AFE_SLIMBUS_SLAVE_PORT_CONFIG:
  3156. ret = afe_send_slimbus_slave_port_cfg(config_data, arg);
  3157. break;
  3158. case AFE_AANC_VERSION:
  3159. ret = afe_send_aanc_version(config_data);
  3160. break;
  3161. case AFE_CLIP_BANK_SEL:
  3162. ret = afe_send_bank_selection_clip(config_data);
  3163. break;
  3164. case AFE_CDC_CLIP_REGISTERS_CONFIG:
  3165. ret = afe_send_codec_reg_config(config_data);
  3166. break;
  3167. case AFE_CDC_REGISTER_PAGE_CONFIG:
  3168. ret = afe_send_codec_reg_page_config(config_data);
  3169. break;
  3170. default:
  3171. pr_err("%s: unknown configuration type %d",
  3172. __func__, config_type);
  3173. ret = -EINVAL;
  3174. }
  3175. if (!ret)
  3176. set_bit(config_type, &afe_configured_cmd);
  3177. return ret;
  3178. }
  3179. EXPORT_SYMBOL(afe_set_config);
  3180. /*
  3181. * afe_clear_config - If SSR happens ADSP loses AFE configs, let AFE driver know
  3182. * about the state so client driver can wait until AFE is
  3183. * reconfigured.
  3184. */
  3185. void afe_clear_config(enum afe_config_type config)
  3186. {
  3187. clear_bit(config, &afe_configured_cmd);
  3188. }
  3189. EXPORT_SYMBOL(afe_clear_config);
  3190. bool afe_has_config(enum afe_config_type config)
  3191. {
  3192. return !!test_bit(config, &afe_configured_cmd);
  3193. }
  3194. int afe_send_spdif_clk_cfg(struct afe_param_id_spdif_clk_cfg *cfg,
  3195. u16 port_id)
  3196. {
  3197. struct afe_param_id_spdif_clk_cfg clk_cfg;
  3198. struct param_hdr_v3 param_hdr;
  3199. int ret = 0;
  3200. if (!cfg) {
  3201. pr_err("%s: Error, no configuration data\n", __func__);
  3202. return -EINVAL;
  3203. }
  3204. memset(&clk_cfg, 0, sizeof(clk_cfg));
  3205. memset(&param_hdr, 0, sizeof(param_hdr));
  3206. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3207. param_hdr.instance_id = INSTANCE_ID_0;
  3208. param_hdr.param_id = AFE_PARAM_ID_SPDIF_CLK_CONFIG;
  3209. param_hdr.param_size = sizeof(struct afe_param_id_spdif_clk_cfg);
  3210. pr_debug("%s: Minor version = 0x%x clk val = %d clk root = 0x%x port id = 0x%x\n",
  3211. __func__, clk_cfg.clk_cfg_minor_version, clk_cfg.clk_value,
  3212. clk_cfg.clk_root, q6audio_get_port_id(port_id));
  3213. ret = q6afe_pack_and_set_param_in_band(port_id,
  3214. q6audio_get_port_index(port_id),
  3215. param_hdr, (u8 *) &clk_cfg);
  3216. if (ret < 0)
  3217. pr_err("%s: AFE send clock config for port 0x%x failed ret = %d\n",
  3218. __func__, port_id, ret);
  3219. return ret;
  3220. }
  3221. /**
  3222. * afe_send_spdif_ch_status_cfg -
  3223. * to configure AFE session with
  3224. * specified channel status configuration
  3225. *
  3226. * @ch_status_cfg: channel status configutation
  3227. * @port_id: AFE port id number
  3228. *
  3229. * Returns 0 on success or error value on port start failure.
  3230. */
  3231. int afe_send_spdif_ch_status_cfg(struct afe_param_id_spdif_ch_status_cfg
  3232. *ch_status_cfg, u16 port_id)
  3233. {
  3234. struct param_hdr_v3 param_hdr;
  3235. int ret = 0;
  3236. if (!ch_status_cfg) {
  3237. pr_err("%s: Error, no configuration data\n", __func__);
  3238. return -EINVAL;
  3239. }
  3240. memset(&param_hdr, 0, sizeof(param_hdr));
  3241. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3242. param_hdr.instance_id = INSTANCE_ID_0;
  3243. param_hdr.param_id = AFE_PARAM_ID_SPDIF_CLK_CONFIG;
  3244. param_hdr.param_size = sizeof(struct afe_param_id_spdif_ch_status_cfg);
  3245. ret = q6afe_pack_and_set_param_in_band(port_id,
  3246. q6audio_get_port_index(port_id),
  3247. param_hdr, (u8 *) ch_status_cfg);
  3248. if (ret < 0)
  3249. pr_err("%s: AFE send channel status for port 0x%x failed ret = %d\n",
  3250. __func__, port_id, ret);
  3251. return ret;
  3252. }
  3253. EXPORT_SYMBOL(afe_send_spdif_ch_status_cfg);
  3254. int afe_send_cmd_wakeup_register(void *handle, bool enable)
  3255. {
  3256. struct afe_svc_cmd_evt_cfg_payload wakeup_irq;
  3257. int ret = 0;
  3258. pr_debug("%s: enter\n", __func__);
  3259. wakeup_irq.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3260. APR_HDR_LEN(APR_HDR_SIZE),
  3261. APR_PKT_VER);
  3262. wakeup_irq.hdr.pkt_size = sizeof(wakeup_irq);
  3263. wakeup_irq.hdr.src_port = 0;
  3264. wakeup_irq.hdr.dest_port = 0;
  3265. wakeup_irq.hdr.token = 0x0;
  3266. wakeup_irq.hdr.opcode = AFE_SVC_CMD_EVENT_CFG;
  3267. wakeup_irq.event_id = AFE_EVENT_ID_MBHC_DETECTION_SW_WA;
  3268. wakeup_irq.reg_flag = enable;
  3269. pr_debug("%s: cmd wakeup register opcode[0x%x] register:%d\n",
  3270. __func__, wakeup_irq.hdr.opcode, wakeup_irq.reg_flag);
  3271. ret = afe_apr_send_pkt(&wakeup_irq, &this_afe.wait_wakeup);
  3272. if (ret)
  3273. pr_err("%s: AFE wakeup command register %d failed %d\n",
  3274. __func__, enable, ret);
  3275. return ret;
  3276. }
  3277. EXPORT_SYMBOL(afe_send_cmd_wakeup_register);
  3278. static int afe_send_cmd_port_start(u16 port_id)
  3279. {
  3280. struct afe_port_cmd_device_start start;
  3281. int ret, index;
  3282. pr_debug("%s: enter\n", __func__);
  3283. index = q6audio_get_port_index(port_id);
  3284. if (index < 0 || index >= AFE_MAX_PORTS) {
  3285. pr_err("%s: AFE port index[%d] invalid!\n",
  3286. __func__, index);
  3287. return -EINVAL;
  3288. }
  3289. ret = q6audio_validate_port(port_id);
  3290. if (ret < 0) {
  3291. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  3292. return -EINVAL;
  3293. }
  3294. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3295. APR_HDR_LEN(APR_HDR_SIZE),
  3296. APR_PKT_VER);
  3297. start.hdr.pkt_size = sizeof(start);
  3298. start.hdr.src_port = 0;
  3299. start.hdr.dest_port = 0;
  3300. start.hdr.token = index;
  3301. start.hdr.opcode = AFE_PORT_CMD_DEVICE_START;
  3302. start.port_id = q6audio_get_port_id(port_id);
  3303. pr_debug("%s: cmd device start opcode[0x%x] port id[0x%x]\n",
  3304. __func__, start.hdr.opcode, start.port_id);
  3305. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  3306. if (ret)
  3307. pr_err("%s: AFE enable for port 0x%x failed %d\n", __func__,
  3308. port_id, ret);
  3309. return ret;
  3310. }
  3311. static int afe_aanc_start(uint16_t tx_port_id, uint16_t rx_port_id)
  3312. {
  3313. int ret;
  3314. pr_debug("%s: Tx port is 0x%x, Rx port is 0x%x\n",
  3315. __func__, tx_port_id, rx_port_id);
  3316. ret = afe_aanc_port_cfg(this_afe.apr, tx_port_id, rx_port_id);
  3317. if (ret) {
  3318. pr_err("%s: Send AANC Port Config failed %d\n",
  3319. __func__, ret);
  3320. goto fail_cmd;
  3321. }
  3322. send_afe_cal_type(AFE_AANC_CAL, tx_port_id);
  3323. fail_cmd:
  3324. return ret;
  3325. }
  3326. /**
  3327. * afe_spdif_port_start - to configure AFE session with
  3328. * specified port configuration
  3329. *
  3330. * @port_id: AFE port id number
  3331. * @spdif_port: spdif port configutation
  3332. * @rate: sampling rate of port
  3333. *
  3334. * Returns 0 on success or error value on port start failure.
  3335. */
  3336. int afe_spdif_port_start(u16 port_id, struct afe_spdif_port_config *spdif_port,
  3337. u32 rate)
  3338. {
  3339. struct param_hdr_v3 param_hdr;
  3340. uint16_t port_index;
  3341. int ret = 0;
  3342. if (!spdif_port) {
  3343. pr_err("%s: Error, no configuration data\n", __func__);
  3344. ret = -EINVAL;
  3345. return ret;
  3346. }
  3347. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3348. memset(&param_hdr, 0, sizeof(param_hdr));
  3349. ret = q6audio_validate_port(port_id);
  3350. if (ret < 0) {
  3351. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  3352. return -EINVAL;
  3353. }
  3354. afe_send_cal(port_id);
  3355. afe_send_hw_delay(port_id, rate);
  3356. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3357. param_hdr.instance_id = INSTANCE_ID_0;
  3358. param_hdr.param_id = AFE_PARAM_ID_SPDIF_CONFIG;
  3359. param_hdr.param_size = sizeof(struct afe_spdif_port_config);
  3360. ret = q6afe_pack_and_set_param_in_band(port_id,
  3361. q6audio_get_port_index(port_id),
  3362. param_hdr, (u8 *) spdif_port);
  3363. if (ret) {
  3364. pr_err("%s: AFE enable for port 0x%x failed ret = %d\n",
  3365. __func__, port_id, ret);
  3366. goto fail_cmd;
  3367. }
  3368. port_index = afe_get_port_index(port_id);
  3369. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  3370. this_afe.afe_sample_rates[port_index] = rate;
  3371. } else {
  3372. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  3373. ret = -EINVAL;
  3374. goto fail_cmd;
  3375. }
  3376. if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX) {
  3377. ret = afe_send_spdif_ch_status_cfg(&spdif_port->ch_status,
  3378. port_id);
  3379. if (ret < 0) {
  3380. pr_err("%s: afe send failed %d\n", __func__, ret);
  3381. goto fail_cmd;
  3382. }
  3383. }
  3384. return afe_send_cmd_port_start(port_id);
  3385. fail_cmd:
  3386. return ret;
  3387. }
  3388. EXPORT_SYMBOL(afe_spdif_port_start);
  3389. /**
  3390. * afe_spdif_reg_event_cfg -
  3391. * register for event from AFE spdif port
  3392. *
  3393. * @port_id: Port ID to register event
  3394. * @reg_flag: register or unregister
  3395. * @cb: callback function to invoke for events from module
  3396. * @private_data: private data to sent back in callback fn
  3397. *
  3398. * Returns 0 on success or error on failure
  3399. */
  3400. int afe_spdif_reg_event_cfg(u16 port_id, u16 reg_flag,
  3401. void (*cb)(uint32_t opcode,
  3402. uint32_t token, uint32_t *payload, void *priv),
  3403. void *private_data)
  3404. {
  3405. struct afe_port_cmd_event_cfg *config;
  3406. struct afe_port_cmd_mod_evt_cfg_payload pl;
  3407. int index;
  3408. int ret;
  3409. int num_events = 1;
  3410. int cmd_size = sizeof(struct afe_port_cmd_event_cfg) +
  3411. (num_events * sizeof(struct afe_port_cmd_mod_evt_cfg_payload));
  3412. config = kzalloc(cmd_size, GFP_KERNEL);
  3413. if (!config)
  3414. return -ENOMEM;
  3415. if (port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX) {
  3416. this_afe.pri_spdif_tx_cb = cb;
  3417. this_afe.pri_spdif_tx_private_data = private_data;
  3418. } else if (port_id == AFE_PORT_ID_SECONDARY_SPDIF_TX) {
  3419. this_afe.sec_spdif_tx_cb = cb;
  3420. this_afe.sec_spdif_tx_private_data = private_data;
  3421. } else {
  3422. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  3423. ret = -EINVAL;
  3424. goto fail_idx;
  3425. }
  3426. index = q6audio_get_port_index(port_id);
  3427. if (index < 0) {
  3428. pr_err("%s: Invalid index number: %d\n", __func__, index);
  3429. ret = -EINVAL;
  3430. goto fail_idx;
  3431. }
  3432. memset(&pl, 0, sizeof(pl));
  3433. pl.module_id = AFE_MODULE_CUSTOM_EVENTS;
  3434. pl.event_id = AFE_PORT_FMT_UPDATE_EVENT;
  3435. pl.reg_flag = reg_flag;
  3436. config->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3437. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3438. config->hdr.pkt_size = cmd_size;
  3439. config->hdr.src_port = 1;
  3440. config->hdr.dest_port = 1;
  3441. config->hdr.token = index;
  3442. config->hdr.opcode = AFE_PORT_CMD_MOD_EVENT_CFG;
  3443. config->port_id = q6audio_get_port_id(port_id);
  3444. config->num_events = num_events;
  3445. config->version = 1;
  3446. memcpy(config->payload, &pl, sizeof(pl));
  3447. ret = afe_apr_send_pkt((uint32_t *) config, &this_afe.wait[index]);
  3448. fail_idx:
  3449. kfree(config);
  3450. return ret;
  3451. }
  3452. EXPORT_SYMBOL(afe_spdif_reg_event_cfg);
  3453. int afe_send_slot_mapping_cfg(
  3454. struct afe_param_id_slot_mapping_cfg *slot_mapping_cfg,
  3455. u16 port_id)
  3456. {
  3457. struct param_hdr_v3 param_hdr;
  3458. int ret = 0;
  3459. if (!slot_mapping_cfg) {
  3460. pr_err("%s: Error, no configuration data\n", __func__);
  3461. return -EINVAL;
  3462. }
  3463. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3464. memset(&param_hdr, 0, sizeof(param_hdr));
  3465. param_hdr.module_id = AFE_MODULE_TDM;
  3466. param_hdr.instance_id = INSTANCE_ID_0;
  3467. param_hdr.param_id = AFE_PARAM_ID_PORT_SLOT_MAPPING_CONFIG;
  3468. param_hdr.param_size = sizeof(struct afe_param_id_slot_mapping_cfg);
  3469. ret = q6afe_pack_and_set_param_in_band(port_id,
  3470. q6audio_get_port_index(port_id),
  3471. param_hdr,
  3472. (u8 *) slot_mapping_cfg);
  3473. if (ret < 0)
  3474. pr_err("%s: AFE send slot mapping for port 0x%x failed ret = %d\n",
  3475. __func__, port_id, ret);
  3476. return ret;
  3477. }
  3478. int afe_send_slot_mapping_cfg_v2(
  3479. struct afe_param_id_slot_mapping_cfg_v2 *slot_mapping_cfg,
  3480. u16 port_id)
  3481. {
  3482. struct param_hdr_v3 param_hdr;
  3483. int ret = 0;
  3484. if (!slot_mapping_cfg) {
  3485. pr_err("%s: Error, no configuration data\n", __func__);
  3486. return -EINVAL;
  3487. }
  3488. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3489. memset(&param_hdr, 0, sizeof(param_hdr));
  3490. param_hdr.module_id = AFE_MODULE_TDM;
  3491. param_hdr.instance_id = INSTANCE_ID_0;
  3492. param_hdr.param_id = AFE_PARAM_ID_PORT_SLOT_MAPPING_CONFIG;
  3493. param_hdr.param_size = sizeof(struct afe_param_id_slot_mapping_cfg_v2);
  3494. ret = q6afe_pack_and_set_param_in_band(port_id,
  3495. q6audio_get_port_index(port_id),
  3496. param_hdr,
  3497. (u8 *) slot_mapping_cfg);
  3498. if (ret < 0)
  3499. pr_err("%s: AFE send slot mapping for port 0x%x failed ret = %d\n",
  3500. __func__, port_id, ret);
  3501. return ret;
  3502. }
  3503. int afe_send_custom_tdm_header_cfg(
  3504. struct afe_param_id_custom_tdm_header_cfg *custom_tdm_header_cfg,
  3505. u16 port_id)
  3506. {
  3507. struct param_hdr_v3 param_hdr;
  3508. int ret = 0;
  3509. if (!custom_tdm_header_cfg) {
  3510. pr_err("%s: Error, no configuration data\n", __func__);
  3511. return -EINVAL;
  3512. }
  3513. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3514. memset(&param_hdr, 0, sizeof(param_hdr));
  3515. param_hdr.module_id = AFE_MODULE_TDM;
  3516. param_hdr.instance_id = INSTANCE_ID_0;
  3517. param_hdr.param_id = AFE_PARAM_ID_CUSTOM_TDM_HEADER_CONFIG;
  3518. param_hdr.param_size =
  3519. sizeof(struct afe_param_id_custom_tdm_header_cfg);
  3520. ret = q6afe_pack_and_set_param_in_band(port_id,
  3521. q6audio_get_port_index(port_id),
  3522. param_hdr,
  3523. (u8 *) custom_tdm_header_cfg);
  3524. if (ret < 0)
  3525. pr_err("%s: AFE send custom tdm header for port 0x%x failed ret = %d\n",
  3526. __func__, port_id, ret);
  3527. return ret;
  3528. }
  3529. /**
  3530. * afe_tdm_port_start - to configure AFE session with
  3531. * specified port configuration
  3532. *
  3533. * @port_id: AFE port id number
  3534. * @tdm_port: TDM port configutation
  3535. * @rate: sampling rate of port
  3536. * @num_groups: number of TDM groups
  3537. *
  3538. * Returns 0 on success or error value on port start failure.
  3539. */
  3540. int afe_tdm_port_start(u16 port_id, struct afe_tdm_port_config *tdm_port,
  3541. u32 rate, u16 num_groups)
  3542. {
  3543. struct param_hdr_v3 param_hdr;
  3544. int index = 0;
  3545. uint16_t port_index = 0;
  3546. enum afe_mad_type mad_type = MAD_HW_NONE;
  3547. int ret = 0;
  3548. if (!tdm_port) {
  3549. pr_err("%s: Error, no configuration data\n", __func__);
  3550. return -EINVAL;
  3551. }
  3552. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3553. memset(&param_hdr, 0, sizeof(param_hdr));
  3554. index = q6audio_get_port_index(port_id);
  3555. if (index < 0 || index >= AFE_MAX_PORTS) {
  3556. pr_err("%s: AFE port index[%d] invalid!\n",
  3557. __func__, index);
  3558. return -EINVAL;
  3559. }
  3560. ret = q6audio_validate_port(port_id);
  3561. if (ret < 0) {
  3562. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  3563. return -EINVAL;
  3564. }
  3565. ret = afe_q6_interface_prepare();
  3566. if (ret != 0) {
  3567. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3568. return ret;
  3569. }
  3570. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  3571. this_afe.afe_sample_rates[index] = rate;
  3572. if (this_afe.rt_cb)
  3573. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  3574. }
  3575. port_index = afe_get_port_index(port_id);
  3576. /* Also send the topology id here: */
  3577. if (!(this_afe.afe_cal_mode[port_index] == AFE_CAL_MODE_NONE)) {
  3578. /* One time call: only for first time */
  3579. afe_send_custom_topology();
  3580. afe_send_port_topology_id(port_id);
  3581. afe_send_cal(port_id);
  3582. afe_send_hw_delay(port_id, rate);
  3583. }
  3584. /* Start SW MAD module */
  3585. mad_type = afe_port_get_mad_type(port_id);
  3586. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  3587. mad_type);
  3588. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  3589. if (!afe_has_config(AFE_CDC_REGISTERS_CONFIG) ||
  3590. !afe_has_config(AFE_SLIMBUS_SLAVE_CONFIG)) {
  3591. pr_err("%s: AFE isn't configured yet for\n"
  3592. "HW MAD try Again\n", __func__);
  3593. ret = -EAGAIN;
  3594. goto fail_cmd;
  3595. }
  3596. ret = afe_turn_onoff_hw_mad(mad_type, true);
  3597. if (ret) {
  3598. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  3599. __func__, ret);
  3600. goto fail_cmd;
  3601. }
  3602. }
  3603. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3604. param_hdr.instance_id = INSTANCE_ID_0;
  3605. param_hdr.param_id = AFE_PARAM_ID_TDM_CONFIG;
  3606. param_hdr.param_size = sizeof(struct afe_param_id_tdm_cfg);
  3607. ret = q6afe_pack_and_set_param_in_band(port_id,
  3608. q6audio_get_port_index(port_id),
  3609. param_hdr,
  3610. (u8 *) &tdm_port->tdm);
  3611. if (ret) {
  3612. pr_err("%s: AFE enable for port 0x%x failed ret = %d\n",
  3613. __func__, port_id, ret);
  3614. goto fail_cmd;
  3615. }
  3616. port_index = afe_get_port_index(port_id);
  3617. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  3618. this_afe.afe_sample_rates[port_index] = rate;
  3619. } else {
  3620. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  3621. ret = -EINVAL;
  3622. goto fail_cmd;
  3623. }
  3624. if (q6core_get_avcs_api_version_per_service(
  3625. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V3)
  3626. ret = afe_send_slot_mapping_cfg_v2(
  3627. &tdm_port->slot_mapping_v2, port_id);
  3628. else
  3629. ret = afe_send_slot_mapping_cfg(
  3630. &tdm_port->slot_mapping,
  3631. port_id);
  3632. if (ret < 0) {
  3633. pr_err("%s: afe send failed %d\n", __func__, ret);
  3634. goto fail_cmd;
  3635. }
  3636. if (tdm_port->custom_tdm_header.header_type) {
  3637. ret = afe_send_custom_tdm_header_cfg(
  3638. &tdm_port->custom_tdm_header, port_id);
  3639. if (ret < 0) {
  3640. pr_err("%s: afe send failed %d\n", __func__, ret);
  3641. goto fail_cmd;
  3642. }
  3643. }
  3644. ret = afe_send_cmd_port_start(port_id);
  3645. fail_cmd:
  3646. return ret;
  3647. }
  3648. EXPORT_SYMBOL(afe_tdm_port_start);
  3649. /**
  3650. * afe_set_cal_mode -
  3651. * set cal mode for AFE calibration
  3652. *
  3653. * @port_id: AFE port id number
  3654. * @afe_cal_mode: AFE calib mode
  3655. *
  3656. */
  3657. void afe_set_cal_mode(u16 port_id, enum afe_cal_mode afe_cal_mode)
  3658. {
  3659. uint16_t port_index;
  3660. port_index = afe_get_port_index(port_id);
  3661. this_afe.afe_cal_mode[port_index] = afe_cal_mode;
  3662. }
  3663. EXPORT_SYMBOL(afe_set_cal_mode);
  3664. /**
  3665. * afe_set_vad_cfg -
  3666. * set configuration for VAD
  3667. *
  3668. * @port_id: AFE port id number
  3669. * @vad_enable: enable/disable vad
  3670. * @preroll_config: Preroll configuration
  3671. *
  3672. */
  3673. void afe_set_vad_cfg(u32 vad_enable, u32 preroll_config,
  3674. u32 port_id)
  3675. {
  3676. uint16_t port_index;
  3677. port_index = afe_get_port_index(port_id);
  3678. this_afe.vad_cfg[port_index].is_enable = vad_enable;
  3679. this_afe.vad_cfg[port_index].pre_roll = preroll_config;
  3680. }
  3681. EXPORT_SYMBOL(afe_set_vad_cfg);
  3682. /**
  3683. * afe_get_island_mode_cfg -
  3684. * get island mode configuration
  3685. *
  3686. * @port_id: AFE port id number
  3687. * @enable_flag: Enable or Disable
  3688. *
  3689. */
  3690. void afe_get_island_mode_cfg(u16 port_id, u32 *enable_flag)
  3691. {
  3692. uint16_t port_index;
  3693. if (enable_flag) {
  3694. port_index = afe_get_port_index(port_id);
  3695. *enable_flag = this_afe.island_mode[port_index];
  3696. }
  3697. }
  3698. EXPORT_SYMBOL(afe_get_island_mode_cfg);
  3699. /**
  3700. * afe_set_island_mode_cfg -
  3701. * set island mode configuration
  3702. *
  3703. * @port_id: AFE port id number
  3704. * @enable_flag: Enable or Disable
  3705. *
  3706. */
  3707. void afe_set_island_mode_cfg(u16 port_id, u32 enable_flag)
  3708. {
  3709. uint16_t port_index;
  3710. port_index = afe_get_port_index(port_id);
  3711. this_afe.island_mode[port_index] = enable_flag;
  3712. trace_printk("%s: set island mode cfg 0x%x for port 0x%x\n",
  3713. __func__, this_afe.island_mode[port_index], port_id);
  3714. }
  3715. EXPORT_SYMBOL(afe_set_island_mode_cfg);
  3716. /**
  3717. * afe_set_routing_callback -
  3718. * Update callback function for routing
  3719. *
  3720. * @cb: callback function to update with
  3721. *
  3722. */
  3723. void afe_set_routing_callback(routing_cb cb)
  3724. {
  3725. this_afe.rt_cb = cb;
  3726. }
  3727. EXPORT_SYMBOL(afe_set_routing_callback);
  3728. int afe_port_send_usb_dev_param(u16 port_id, union afe_port_config *afe_config)
  3729. {
  3730. struct afe_param_id_usb_audio_dev_params usb_dev;
  3731. struct afe_param_id_usb_audio_dev_lpcm_fmt lpcm_fmt;
  3732. struct afe_param_id_usb_audio_svc_interval svc_int;
  3733. struct param_hdr_v3 param_hdr;
  3734. int ret = 0, index = 0;
  3735. if (!afe_config) {
  3736. pr_err("%s: Error, no configuration data\n", __func__);
  3737. ret = -EINVAL;
  3738. goto exit;
  3739. }
  3740. index = q6audio_get_port_index(port_id);
  3741. if (index < 0 || index >= AFE_MAX_PORTS) {
  3742. pr_err("%s: AFE port index[%d] invalid!\n",
  3743. __func__, index);
  3744. return -EINVAL;
  3745. }
  3746. memset(&usb_dev, 0, sizeof(usb_dev));
  3747. memset(&lpcm_fmt, 0, sizeof(lpcm_fmt));
  3748. memset(&param_hdr, 0, sizeof(param_hdr));
  3749. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3750. param_hdr.instance_id = INSTANCE_ID_0;
  3751. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_DEV_PARAMS;
  3752. param_hdr.param_size = sizeof(usb_dev);
  3753. usb_dev.cfg_minor_version = AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  3754. usb_dev.dev_token = afe_config->usb_audio.dev_token;
  3755. ret = q6afe_pack_and_set_param_in_band(port_id,
  3756. q6audio_get_port_index(port_id),
  3757. param_hdr, (u8 *) &usb_dev);
  3758. if (ret) {
  3759. pr_err("%s: AFE device param cmd failed %d\n",
  3760. __func__, ret);
  3761. goto exit;
  3762. }
  3763. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_DEV_LPCM_FMT;
  3764. param_hdr.param_size = sizeof(lpcm_fmt);
  3765. lpcm_fmt.cfg_minor_version = AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  3766. lpcm_fmt.endian = afe_config->usb_audio.endian;
  3767. ret = q6afe_pack_and_set_param_in_band(port_id,
  3768. q6audio_get_port_index(port_id),
  3769. param_hdr, (u8 *) &lpcm_fmt);
  3770. if (ret) {
  3771. pr_err("%s: AFE device param cmd LPCM_FMT failed %d\n",
  3772. __func__, ret);
  3773. goto exit;
  3774. }
  3775. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_SVC_INTERVAL;
  3776. param_hdr.param_size = sizeof(svc_int);
  3777. svc_int.cfg_minor_version =
  3778. AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  3779. svc_int.svc_interval = afe_config->usb_audio.service_interval;
  3780. pr_debug("%s: AFE device param cmd sending SVC_INTERVAL %d\n",
  3781. __func__, svc_int.svc_interval);
  3782. ret = q6afe_pack_and_set_param_in_band(port_id,
  3783. q6audio_get_port_index(port_id),
  3784. param_hdr, (u8 *) &svc_int);
  3785. if (ret) {
  3786. pr_err("%s: AFE device param cmd svc_interval failed %d\n",
  3787. __func__, ret);
  3788. ret = -EINVAL;
  3789. goto exit;
  3790. }
  3791. exit:
  3792. return ret;
  3793. }
  3794. static int q6afe_send_dec_config(u16 port_id,
  3795. union afe_port_config afe_config,
  3796. struct afe_dec_config *cfg,
  3797. u32 format,
  3798. u16 afe_in_channels, u16 afe_in_bit_width)
  3799. {
  3800. struct afe_dec_media_fmt_t dec_media_fmt;
  3801. struct avs_dec_depacketizer_id_param_t dec_depkt_id_param;
  3802. struct avs_dec_congestion_buffer_param_t dec_buffer_id_param;
  3803. struct afe_enc_dec_imc_info_param_t imc_info_param;
  3804. struct afe_port_media_type_t media_type;
  3805. struct afe_matched_port_t matched_port_param;
  3806. struct asm_aptx_ad_speech_mode_cfg_t speech_codec_init_param;
  3807. struct param_hdr_v3 param_hdr;
  3808. int ret;
  3809. u32 dec_fmt;
  3810. memset(&dec_depkt_id_param, 0, sizeof(dec_depkt_id_param));
  3811. memset(&dec_media_fmt, 0, sizeof(dec_media_fmt));
  3812. memset(&imc_info_param, 0, sizeof(imc_info_param));
  3813. memset(&media_type, 0, sizeof(media_type));
  3814. memset(&matched_port_param, 0, sizeof(matched_port_param));
  3815. memset(&speech_codec_init_param, 0, sizeof(speech_codec_init_param));
  3816. memset(&param_hdr, 0, sizeof(param_hdr));
  3817. param_hdr.module_id = AFE_MODULE_ID_DECODER;
  3818. param_hdr.instance_id = INSTANCE_ID_0;
  3819. pr_debug("%s: sending AFE_DECODER_PARAM_ID_DEPACKETIZER to DSP payload\n",
  3820. __func__);
  3821. param_hdr.param_id = AFE_DECODER_PARAM_ID_DEPACKETIZER_ID;
  3822. param_hdr.param_size = sizeof(struct avs_dec_depacketizer_id_param_t);
  3823. dec_depkt_id_param.dec_depacketizer_id =
  3824. AFE_MODULE_ID_DEPACKETIZER_COP_V1;
  3825. if (cfg->format == ENC_CODEC_TYPE_LDAC)
  3826. dec_depkt_id_param.dec_depacketizer_id =
  3827. AFE_MODULE_ID_DEPACKETIZER_COP;
  3828. ret = q6afe_pack_and_set_param_in_band(port_id,
  3829. q6audio_get_port_index(port_id),
  3830. param_hdr,
  3831. (u8 *) &dec_depkt_id_param);
  3832. if (ret) {
  3833. pr_err("%s: AFE_DECODER_PARAM_ID_DEPACKETIZER for port 0x%x failed %d\n",
  3834. __func__, port_id, ret);
  3835. goto exit;
  3836. }
  3837. switch (cfg->format) {
  3838. case ASM_MEDIA_FMT_SBC:
  3839. case ASM_MEDIA_FMT_AAC_V2:
  3840. case ASM_MEDIA_FMT_MP3:
  3841. if (port_id == SLIMBUS_9_TX) {
  3842. dec_buffer_id_param.max_nr_buffers = 200;
  3843. dec_buffer_id_param.pre_buffer_size = 200;
  3844. } else {
  3845. dec_buffer_id_param.max_nr_buffers = 0;
  3846. dec_buffer_id_param.pre_buffer_size = 0;
  3847. }
  3848. pr_debug("%s: sending AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE to DSP payload\n",
  3849. __func__);
  3850. param_hdr.param_id =
  3851. AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE;
  3852. param_hdr.param_size =
  3853. sizeof(struct avs_dec_congestion_buffer_param_t);
  3854. dec_buffer_id_param.version = 0;
  3855. ret = q6afe_pack_and_set_param_in_band(port_id,
  3856. q6audio_get_port_index(port_id),
  3857. param_hdr,
  3858. (u8 *) &dec_buffer_id_param);
  3859. if (ret) {
  3860. pr_err("%s: AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE for port 0x%x failed %d\n",
  3861. __func__, port_id, ret);
  3862. goto exit;
  3863. }
  3864. break;
  3865. case ASM_MEDIA_FMT_APTX_ADAPTIVE:
  3866. if (!cfg->abr_dec_cfg.is_abr_enabled) {
  3867. pr_debug("%s: sending aptx adaptive congestion buffer size to dsp\n",
  3868. __func__);
  3869. param_hdr.param_id =
  3870. AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE;
  3871. param_hdr.param_size =
  3872. sizeof(struct avs_dec_congestion_buffer_param_t);
  3873. dec_buffer_id_param.version = 0;
  3874. dec_buffer_id_param.max_nr_buffers = 226;
  3875. dec_buffer_id_param.pre_buffer_size = 226;
  3876. ret = q6afe_pack_and_set_param_in_band(port_id,
  3877. q6audio_get_port_index(port_id),
  3878. param_hdr,
  3879. (u8 *) &dec_buffer_id_param);
  3880. if (ret) {
  3881. pr_err("%s: aptx adaptive congestion buffer size for port 0x%x failed %d\n",
  3882. __func__, port_id, ret);
  3883. goto exit;
  3884. }
  3885. break;
  3886. }
  3887. /* fall through for abr enabled case */
  3888. default:
  3889. pr_debug("%s:sending AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION to DSP payload\n",
  3890. __func__);
  3891. param_hdr.param_id =
  3892. AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION;
  3893. param_hdr.param_size =
  3894. sizeof(struct afe_enc_dec_imc_info_param_t);
  3895. imc_info_param.imc_info = cfg->abr_dec_cfg.imc_info;
  3896. ret = q6afe_pack_and_set_param_in_band(port_id,
  3897. q6audio_get_port_index(port_id),
  3898. param_hdr,
  3899. (u8 *) &imc_info_param);
  3900. if (ret) {
  3901. pr_err("%s: AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION for port 0x%x failed %d\n",
  3902. __func__, port_id, ret);
  3903. goto exit;
  3904. }
  3905. break;
  3906. }
  3907. pr_debug("%s: Send AFE_API_VERSION_PORT_MEDIA_TYPE to DSP\n", __func__);
  3908. param_hdr.module_id = AFE_MODULE_PORT;
  3909. param_hdr.param_id = AFE_PARAM_ID_PORT_MEDIA_TYPE;
  3910. param_hdr.param_size = sizeof(struct afe_port_media_type_t);
  3911. media_type.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  3912. switch (cfg->format) {
  3913. case ASM_MEDIA_FMT_AAC_V2:
  3914. media_type.sample_rate =
  3915. cfg->data.aac_config.sample_rate;
  3916. break;
  3917. case ASM_MEDIA_FMT_SBC:
  3918. media_type.sample_rate =
  3919. cfg->data.sbc_config.sample_rate;
  3920. break;
  3921. case ASM_MEDIA_FMT_APTX_ADAPTIVE:
  3922. if (!cfg->abr_dec_cfg.is_abr_enabled) {
  3923. media_type.sample_rate =
  3924. (cfg->data.aptx_ad_config.sample_rate == APTX_AD_44_1) ?
  3925. AFE_PORT_SAMPLE_RATE_44_1K :
  3926. AFE_PORT_SAMPLE_RATE_48K;
  3927. break;
  3928. }
  3929. /* fall through for abr enabled case */
  3930. case ASM_MEDIA_FMT_APTX_AD_SPEECH:
  3931. media_type.sample_rate = AFE_PORT_SAMPLE_RATE_32K;
  3932. break;
  3933. default:
  3934. media_type.sample_rate =
  3935. afe_config.slim_sch.sample_rate;
  3936. }
  3937. if (afe_in_bit_width)
  3938. media_type.bit_width = afe_in_bit_width;
  3939. else
  3940. media_type.bit_width = afe_config.slim_sch.bit_width;
  3941. if (afe_in_channels)
  3942. media_type.num_channels = afe_in_channels;
  3943. else
  3944. media_type.num_channels = afe_config.slim_sch.num_channels;
  3945. media_type.data_format = AFE_PORT_DATA_FORMAT_PCM;
  3946. media_type.reserved = 0;
  3947. ret = q6afe_pack_and_set_param_in_band(port_id,
  3948. q6audio_get_port_index(port_id),
  3949. param_hdr, (u8 *) &media_type);
  3950. if (ret) {
  3951. pr_err("%s: AFE_API_VERSION_PORT_MEDIA_TYPE for port 0x%x failed %d\n",
  3952. __func__, port_id, ret);
  3953. goto exit;
  3954. }
  3955. if (format != ASM_MEDIA_FMT_SBC && format != ASM_MEDIA_FMT_AAC_V2 &&
  3956. format != ASM_MEDIA_FMT_APTX_ADAPTIVE &&
  3957. format != ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  3958. pr_debug("%s:Unsuppported dec format. Ignore AFE config %u\n",
  3959. __func__, format);
  3960. goto exit;
  3961. }
  3962. if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE &&
  3963. cfg->abr_dec_cfg.is_abr_enabled) {
  3964. pr_debug("%s: Ignore AFE config for abr case\n", __func__);
  3965. goto exit;
  3966. }
  3967. if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  3968. pr_debug("%s: sending AFE_PARAM_ID_RATE_MATCHED_PORT to DSP payload\n",
  3969. __func__);
  3970. param_hdr.param_id = AFE_PARAM_ID_RATE_MATCHED_PORT;
  3971. param_hdr.param_size =
  3972. sizeof(struct afe_matched_port_t);
  3973. matched_port_param.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  3974. matched_port_param.enable = AFE_MATCHED_PORT_ENABLE;
  3975. ret = q6afe_pack_and_set_param_in_band(port_id,
  3976. q6audio_get_port_index(port_id),
  3977. param_hdr,
  3978. (u8 *) &matched_port_param);
  3979. if (ret) {
  3980. pr_err("%s: AFE_PARAM_ID_RATE_MATCHED_PORT for port 0x%x failed %d\n",
  3981. __func__, port_id, ret);
  3982. goto exit;
  3983. }
  3984. }
  3985. pr_debug("%s: sending AFE_DECODER_PARAM_ID_DEC_MEDIA_FMT to DSP payload\n",
  3986. __func__);
  3987. param_hdr.module_id = AFE_MODULE_ID_DECODER;
  3988. param_hdr.instance_id = INSTANCE_ID_0;
  3989. param_hdr.param_id = AFE_DECODER_PARAM_ID_DEC_FMT_ID;
  3990. param_hdr.param_size = sizeof(dec_fmt);
  3991. dec_fmt = format;
  3992. ret = q6afe_pack_and_set_param_in_band(port_id,
  3993. q6audio_get_port_index(port_id),
  3994. param_hdr, (u8 *) &dec_fmt);
  3995. if (ret) {
  3996. pr_err("%s: AFE_DECODER_PARAM_ID_DEC_MEDIA_FMT for port 0x%x failed %d\n",
  3997. __func__, port_id, ret);
  3998. goto exit;
  3999. }
  4000. switch (cfg->format) {
  4001. case ASM_MEDIA_FMT_AAC_V2:
  4002. case ASM_MEDIA_FMT_APTX_ADAPTIVE:
  4003. param_hdr.param_size = sizeof(struct afe_dec_media_fmt_t);
  4004. pr_debug("%s:send AVS_DECODER_PARAM_ID DEC_MEDIA_FMT to DSP payload\n",
  4005. __func__);
  4006. param_hdr.param_id = AVS_DECODER_PARAM_ID_DEC_MEDIA_FMT;
  4007. dec_media_fmt.dec_media_config = cfg->data;
  4008. ret = q6afe_pack_and_set_param_in_band(port_id,
  4009. q6audio_get_port_index(port_id),
  4010. param_hdr,
  4011. (u8 *) &dec_media_fmt);
  4012. if (ret) {
  4013. pr_err("%s: AVS_DECODER_PARAM_ID DEC_MEDIA_FMT for port 0x%x failed %d\n",
  4014. __func__, port_id, ret);
  4015. goto exit;
  4016. }
  4017. break;
  4018. case ASM_MEDIA_FMT_APTX_AD_SPEECH:
  4019. param_hdr.param_size =
  4020. sizeof(struct asm_aptx_ad_speech_dec_cfg_t);
  4021. pr_debug("%s: send AVS_DECODER_PARAM_ID_APTX_AD_SPEECH_DEC_INIT to DSP payload\n",
  4022. __func__);
  4023. param_hdr.param_id =
  4024. AVS_DECODER_PARAM_ID_APTX_AD_SPEECH_DEC_INIT;
  4025. speech_codec_init_param =
  4026. cfg->data.aptx_ad_speech_config.speech_mode;
  4027. ret = q6afe_pack_and_set_param_in_band(port_id,
  4028. q6audio_get_port_index(port_id),
  4029. param_hdr,
  4030. (u8 *) &speech_codec_init_param);
  4031. if (ret) {
  4032. pr_err("%s: AVS_DECODER_PARAM_ID_APTX_ADAPTIVE_SPEECH_DEC_INIT for port 0x%x failed %d\n",
  4033. __func__, port_id, ret);
  4034. goto exit;
  4035. }
  4036. break;
  4037. default:
  4038. pr_debug("%s:No need to send DEC_MEDIA_FMT to DSP payload\n",
  4039. __func__);
  4040. }
  4041. exit:
  4042. return ret;
  4043. }
  4044. static int q6afe_send_enc_config(u16 port_id,
  4045. union afe_enc_config_data *cfg, u32 format,
  4046. union afe_port_config afe_config,
  4047. u16 afe_in_channels, u16 afe_in_bit_width,
  4048. u32 scrambler_mode, u32 mono_mode)
  4049. {
  4050. u32 enc_fmt;
  4051. struct afe_enc_cfg_blk_param_t enc_blk_param;
  4052. struct afe_param_id_aptx_sync_mode sync_mode_param;
  4053. struct afe_id_aptx_adaptive_enc_init aptx_adaptive_enc_init;
  4054. struct avs_enc_packetizer_id_param_t enc_pkt_id_param;
  4055. struct avs_enc_set_scrambler_param_t enc_set_scrambler_param;
  4056. struct afe_enc_level_to_bitrate_map_param_t map_param;
  4057. struct afe_enc_dec_imc_info_param_t imc_info_param;
  4058. struct asm_aac_frame_size_control_t frame_ctl_param;
  4059. struct afe_port_media_type_t media_type;
  4060. struct aptx_channel_mode_param_t channel_mode_param;
  4061. struct afe_matched_port_t matched_port_param;
  4062. struct asm_aptx_ad_speech_mode_cfg_t speech_codec_init_param;
  4063. struct param_hdr_v3 param_hdr;
  4064. int ret;
  4065. uint32_t frame_size_ctl_value_v2;
  4066. pr_debug("%s:update DSP for enc format = %d\n", __func__, format);
  4067. memset(&enc_blk_param, 0, sizeof(enc_blk_param));
  4068. memset(&sync_mode_param, 0, sizeof(sync_mode_param));
  4069. memset(&aptx_adaptive_enc_init, 0, sizeof(aptx_adaptive_enc_init));
  4070. memset(&enc_pkt_id_param, 0, sizeof(enc_pkt_id_param));
  4071. memset(&enc_set_scrambler_param, 0, sizeof(enc_set_scrambler_param));
  4072. memset(&map_param, 0, sizeof(map_param));
  4073. memset(&imc_info_param, 0, sizeof(imc_info_param));
  4074. memset(&frame_ctl_param, 0, sizeof(frame_ctl_param));
  4075. memset(&media_type, 0, sizeof(media_type));
  4076. memset(&matched_port_param, 0, sizeof(matched_port_param));
  4077. memset(&speech_codec_init_param, 0, sizeof(speech_codec_init_param));
  4078. memset(&param_hdr, 0, sizeof(param_hdr));
  4079. if (format != ASM_MEDIA_FMT_SBC && format != ASM_MEDIA_FMT_AAC_V2 &&
  4080. format != ASM_MEDIA_FMT_APTX && format != ASM_MEDIA_FMT_APTX_HD &&
  4081. format != ASM_MEDIA_FMT_CELT && format != ASM_MEDIA_FMT_LDAC &&
  4082. format != ASM_MEDIA_FMT_APTX_ADAPTIVE &&
  4083. format != ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4084. pr_err("%s:Unsuppported enc format. Ignore AFE config\n",
  4085. __func__);
  4086. return 0;
  4087. }
  4088. param_hdr.module_id = AFE_MODULE_ID_ENCODER;
  4089. param_hdr.instance_id = INSTANCE_ID_0;
  4090. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENC_FMT_ID;
  4091. param_hdr.param_size = sizeof(enc_fmt);
  4092. enc_fmt = format;
  4093. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_ENC_FMT_ID payload\n",
  4094. __func__);
  4095. ret = q6afe_pack_and_set_param_in_band(port_id,
  4096. q6audio_get_port_index(port_id),
  4097. param_hdr, (u8 *) &enc_fmt);
  4098. if (ret) {
  4099. pr_err("%s:unable to send AFE_ENCODER_PARAM_ID_ENC_FMT_ID",
  4100. __func__);
  4101. goto exit;
  4102. }
  4103. if (format == ASM_MEDIA_FMT_LDAC) {
  4104. param_hdr.param_size = sizeof(struct afe_enc_cfg_blk_param_t)
  4105. - sizeof(struct afe_abr_enc_cfg_t);
  4106. enc_blk_param.enc_cfg_blk_size =
  4107. sizeof(union afe_enc_config_data)
  4108. - sizeof(struct afe_abr_enc_cfg_t);
  4109. } else if (format == ASM_MEDIA_FMT_AAC_V2) {
  4110. param_hdr.param_size = sizeof(enc_blk_param)
  4111. - sizeof(struct asm_aac_frame_size_control_t);
  4112. enc_blk_param.enc_cfg_blk_size =
  4113. sizeof(enc_blk_param.enc_blk_config)
  4114. - sizeof(struct asm_aac_frame_size_control_t);
  4115. } else if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4116. param_hdr.param_size = sizeof(struct afe_enc_aptx_ad_speech_cfg_blk_param_t);
  4117. enc_blk_param.enc_cfg_blk_size = sizeof(struct asm_custom_enc_cfg_t);
  4118. } else {
  4119. param_hdr.param_size = sizeof(struct afe_enc_cfg_blk_param_t);
  4120. enc_blk_param.enc_cfg_blk_size =
  4121. sizeof(union afe_enc_config_data);
  4122. }
  4123. pr_debug("%s:send AFE_ENCODER_PARAM_ID_ENC_CFG_BLK to DSP payload\n",
  4124. __func__);
  4125. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENC_CFG_BLK;
  4126. enc_blk_param.enc_blk_config = *cfg;
  4127. ret = q6afe_pack_and_set_param_in_band(port_id,
  4128. q6audio_get_port_index(port_id),
  4129. param_hdr,
  4130. (u8 *) &enc_blk_param);
  4131. if (ret) {
  4132. pr_err("%s: AFE_ENCODER_PARAM_ID_ENC_CFG_BLK for port 0x%x failed %d\n",
  4133. __func__, port_id, ret);
  4134. goto exit;
  4135. }
  4136. if (format == ASM_MEDIA_FMT_AAC_V2) {
  4137. uint32_t frame_size_ctl_value = enc_blk_param.enc_blk_config.
  4138. aac_config.frame_ctl.ctl_value;
  4139. if (frame_size_ctl_value > 0) {
  4140. param_hdr.param_id =
  4141. AFE_PARAM_ID_AAC_FRM_SIZE_CONTROL;
  4142. param_hdr.param_size = sizeof(frame_ctl_param);
  4143. frame_ctl_param.ctl_type = enc_blk_param.
  4144. enc_blk_config.aac_config.frame_ctl.ctl_type;
  4145. frame_ctl_param.ctl_value = frame_size_ctl_value;
  4146. pr_debug("%s: send AFE_PARAM_ID_AAC_FRM_SIZE_CONTROL\n",
  4147. __func__);
  4148. ret = q6afe_pack_and_set_param_in_band(port_id,
  4149. q6audio_get_port_index(port_id),
  4150. param_hdr,
  4151. (u8 *) &frame_ctl_param);
  4152. if (ret) {
  4153. pr_err("%s: AAC_FRM_SIZE_CONTROL failed %d\n",
  4154. __func__, ret);
  4155. goto exit;
  4156. }
  4157. }
  4158. frame_size_ctl_value_v2 = enc_blk_param.enc_blk_config.
  4159. aac_config.frame_ctl_v2.ctl_value;
  4160. if (frame_size_ctl_value_v2 > 0) {
  4161. param_hdr.param_id =
  4162. AFE_PARAM_ID_AAC_FRM_SIZE_CONTROL;
  4163. param_hdr.param_size = sizeof(frame_ctl_param);
  4164. frame_ctl_param.ctl_type = enc_blk_param.
  4165. enc_blk_config.aac_config.frame_ctl_v2.ctl_type;
  4166. frame_ctl_param.ctl_value = enc_blk_param.
  4167. enc_blk_config.aac_config.frame_ctl_v2.ctl_value;
  4168. pr_debug("%s: send AFE_PARAM_ID_AAC_FRM_SIZE_CONTROL V2\n",
  4169. __func__);
  4170. ret = q6afe_pack_and_set_param_in_band(port_id,
  4171. q6audio_get_port_index(port_id),
  4172. param_hdr,
  4173. (u8 *) &frame_ctl_param);
  4174. if (ret) {
  4175. pr_err("%s: AAC_FRM_SIZE_CONTROL with VBR support failed %d\n",
  4176. __func__, ret);
  4177. goto exit;
  4178. }
  4179. }
  4180. }
  4181. if (format == ASM_MEDIA_FMT_APTX) {
  4182. pr_debug("%s: sending AFE_PARAM_ID_APTX_SYNC_MODE to DSP",
  4183. __func__);
  4184. param_hdr.param_id = AFE_PARAM_ID_APTX_SYNC_MODE;
  4185. param_hdr.param_size =
  4186. sizeof(struct afe_param_id_aptx_sync_mode);
  4187. sync_mode_param.sync_mode =
  4188. enc_blk_param.enc_blk_config.aptx_config.
  4189. aptx_v2_cfg.sync_mode;
  4190. ret = q6afe_pack_and_set_param_in_band(port_id,
  4191. q6audio_get_port_index(port_id),
  4192. param_hdr,
  4193. (u8 *) &sync_mode_param);
  4194. if (ret) {
  4195. pr_err("%s: AFE_PARAM_ID_APTX_SYNC_MODE for port 0x%x failed %d\n",
  4196. __func__, port_id, ret);
  4197. goto exit;
  4198. }
  4199. }
  4200. if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE) {
  4201. pr_debug("%s: sending AFE_ID_APTX_ADAPTIVE_ENC_INIT to DSP\n",
  4202. __func__);
  4203. param_hdr.param_id = AFE_ID_APTX_ADAPTIVE_ENC_INIT;
  4204. param_hdr.param_size =
  4205. sizeof(struct afe_id_aptx_adaptive_enc_init);
  4206. aptx_adaptive_enc_init =
  4207. enc_blk_param.enc_blk_config.aptx_ad_config.
  4208. aptx_ad_cfg;
  4209. ret = q6afe_pack_and_set_param_in_band(port_id,
  4210. q6audio_get_port_index(port_id),
  4211. param_hdr,
  4212. (u8 *) &aptx_adaptive_enc_init);
  4213. if (ret) {
  4214. pr_err("%s: AFE_ID_APTX_ADAPTIVE_ENC_INIT for port 0x%x failed %d\n",
  4215. __func__, port_id, ret);
  4216. goto exit;
  4217. }
  4218. }
  4219. if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4220. pr_debug("%s: sending AVS_DECODER_PARAM_ID_APTX_AD_SPEECH_ENC_INIT to DSP\n",
  4221. __func__);
  4222. param_hdr.param_id = AVS_DECODER_PARAM_ID_APTX_AD_SPEECH_ENC_INIT;
  4223. param_hdr.param_size =
  4224. sizeof(struct asm_aptx_ad_speech_dec_cfg_t);
  4225. speech_codec_init_param = cfg->aptx_ad_speech_config.speech_mode;
  4226. ret = q6afe_pack_and_set_param_in_band(port_id,
  4227. q6audio_get_port_index(port_id),
  4228. param_hdr,
  4229. (u8 *) &speech_codec_init_param);
  4230. if (ret) {
  4231. pr_err("%s: AFE_ID_APTX_ADAPTIVE_ENC_INIT for port 0x%x failed %d\n",
  4232. __func__, port_id, ret);
  4233. goto exit;
  4234. }
  4235. }
  4236. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_PACKETIZER to DSP\n",
  4237. __func__);
  4238. param_hdr.param_id = AFE_ENCODER_PARAM_ID_PACKETIZER_ID;
  4239. param_hdr.param_size = sizeof(struct avs_enc_packetizer_id_param_t);
  4240. enc_pkt_id_param.enc_packetizer_id = AFE_MODULE_ID_PACKETIZER_COP;
  4241. ret = q6afe_pack_and_set_param_in_band(port_id,
  4242. q6audio_get_port_index(port_id),
  4243. param_hdr,
  4244. (u8 *) &enc_pkt_id_param);
  4245. if (ret) {
  4246. pr_err("%s: AFE_ENCODER_PARAM_ID_PACKETIZER for port 0x%x failed %d\n",
  4247. __func__, port_id, ret);
  4248. goto exit;
  4249. }
  4250. if (format != ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4251. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING mode= %d to DSP payload\n",
  4252. __func__, scrambler_mode);
  4253. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING;
  4254. param_hdr.param_size = sizeof(struct avs_enc_set_scrambler_param_t);
  4255. enc_set_scrambler_param.enable_scrambler = scrambler_mode;
  4256. ret = q6afe_pack_and_set_param_in_band(port_id,
  4257. q6audio_get_port_index(port_id),
  4258. param_hdr,
  4259. (u8 *) &enc_set_scrambler_param);
  4260. if (ret) {
  4261. pr_err("%s: AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING for port 0x%x failed %d\n",
  4262. __func__, port_id, ret);
  4263. goto exit;
  4264. }
  4265. }
  4266. if (format == ASM_MEDIA_FMT_APTX) {
  4267. pr_debug("%s:sending CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO mode= %d to DSP payload\n",
  4268. __func__, mono_mode);
  4269. param_hdr.param_id = CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO;
  4270. param_hdr.param_size = sizeof(channel_mode_param);
  4271. channel_mode_param.channel_mode = mono_mode;
  4272. ret = q6afe_pack_and_set_param_in_band(port_id,
  4273. q6audio_get_port_index(port_id),
  4274. param_hdr,
  4275. (u8 *) &channel_mode_param);
  4276. if (ret) {
  4277. pr_err("%s: CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO for port 0x%x failed %d\n",
  4278. __func__, port_id, ret);
  4279. }
  4280. }
  4281. if ((format == ASM_MEDIA_FMT_LDAC &&
  4282. cfg->ldac_config.abr_config.is_abr_enabled) ||
  4283. format == ASM_MEDIA_FMT_APTX_ADAPTIVE ||
  4284. format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4285. if (format != ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4286. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP to DSP payload",
  4287. __func__);
  4288. param_hdr.param_id = AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP;
  4289. param_hdr.param_size =
  4290. sizeof(struct afe_enc_level_to_bitrate_map_param_t);
  4291. map_param.mapping_table =
  4292. cfg->ldac_config.abr_config.mapping_info;
  4293. ret = q6afe_pack_and_set_param_in_band(port_id,
  4294. q6audio_get_port_index(port_id),
  4295. param_hdr,
  4296. (u8 *) &map_param);
  4297. if (ret) {
  4298. pr_err("%s: AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP for port 0x%x failed %d\n",
  4299. __func__, port_id, ret);
  4300. goto exit;
  4301. }
  4302. }
  4303. pr_debug("%s: sending AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION to DSP payload",
  4304. __func__);
  4305. param_hdr.param_id =
  4306. AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION;
  4307. param_hdr.param_size =
  4308. sizeof(struct afe_enc_dec_imc_info_param_t);
  4309. if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE)
  4310. imc_info_param.imc_info =
  4311. cfg->aptx_ad_config.abr_cfg.imc_info;
  4312. else if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH)
  4313. imc_info_param.imc_info =
  4314. cfg->aptx_ad_speech_config.imc_info;
  4315. else
  4316. imc_info_param.imc_info =
  4317. cfg->ldac_config.abr_config.imc_info;
  4318. ret = q6afe_pack_and_set_param_in_band(port_id,
  4319. q6audio_get_port_index(port_id),
  4320. param_hdr,
  4321. (u8 *) &imc_info_param);
  4322. if (ret) {
  4323. pr_err("%s: AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION for port 0x%x failed %d\n",
  4324. __func__, port_id, ret);
  4325. goto exit;
  4326. }
  4327. }
  4328. pr_debug("%s:Sending AFE_API_VERSION_PORT_MEDIA_TYPE to DSP", __func__);
  4329. param_hdr.module_id = AFE_MODULE_PORT;
  4330. param_hdr.param_id = AFE_PARAM_ID_PORT_MEDIA_TYPE;
  4331. param_hdr.param_size = sizeof(struct afe_port_media_type_t);
  4332. media_type.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  4333. if (format == ASM_MEDIA_FMT_LDAC)
  4334. media_type.sample_rate =
  4335. cfg->ldac_config.custom_config.sample_rate;
  4336. else if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE)
  4337. media_type.sample_rate =
  4338. cfg->aptx_ad_config.custom_cfg.sample_rate;
  4339. else if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH)
  4340. media_type.sample_rate =
  4341. cfg->aptx_ad_speech_config.custom_cfg.sample_rate;
  4342. else
  4343. media_type.sample_rate =
  4344. afe_config.slim_sch.sample_rate;
  4345. if (afe_in_bit_width)
  4346. media_type.bit_width = afe_in_bit_width;
  4347. else
  4348. media_type.bit_width = afe_config.slim_sch.bit_width;
  4349. if (afe_in_channels)
  4350. media_type.num_channels = afe_in_channels;
  4351. else
  4352. media_type.num_channels = afe_config.slim_sch.num_channels;
  4353. media_type.data_format = AFE_PORT_DATA_FORMAT_PCM;
  4354. media_type.reserved = 0;
  4355. ret = q6afe_pack_and_set_param_in_band(port_id,
  4356. q6audio_get_port_index(port_id),
  4357. param_hdr, (u8 *) &media_type);
  4358. if (ret) {
  4359. pr_err("%s: AFE_API_VERSION_PORT_MEDIA_TYPE for port 0x%x failed %d\n",
  4360. __func__, port_id, ret);
  4361. goto exit;
  4362. }
  4363. if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4364. pr_debug("%s: sending AFE_PARAM_ID_RATE_MATCHED_PORT to DSP payload",
  4365. __func__);
  4366. param_hdr.param_id = AFE_PARAM_ID_RATE_MATCHED_PORT;
  4367. param_hdr.param_size =
  4368. sizeof(struct afe_matched_port_t);
  4369. matched_port_param.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  4370. matched_port_param.enable = AFE_MATCHED_PORT_ENABLE;
  4371. ret = q6afe_pack_and_set_param_in_band(port_id,
  4372. q6audio_get_port_index(port_id),
  4373. param_hdr,
  4374. (u8 *) &matched_port_param);
  4375. if (ret) {
  4376. pr_err("%s: AFE_PARAM_ID_RATE_MATCHED_PORT for port 0x%x failed %d\n",
  4377. __func__, port_id, ret);
  4378. goto exit;
  4379. }
  4380. }
  4381. exit:
  4382. return ret;
  4383. }
  4384. int afe_set_tws_channel_mode(u32 format, u16 port_id, u32 channel_mode)
  4385. {
  4386. struct aptx_channel_mode_param_t channel_mode_param;
  4387. struct param_hdr_v3 param_info;
  4388. int ret = 0;
  4389. u32 param_id = 0;
  4390. if (format == ASM_MEDIA_FMT_APTX) {
  4391. param_id = CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO;
  4392. } else if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE) {
  4393. param_id = CAPI_V2_PARAM_ID_APTX_AD_ENC_SWITCH_TO_MONO;
  4394. } else {
  4395. pr_err("%s: Not supported format 0x%x\n", __func__, format);
  4396. return -EINVAL;
  4397. }
  4398. memset(&param_info, 0, sizeof(param_info));
  4399. memset(&channel_mode_param, 0, sizeof(channel_mode_param));
  4400. param_info.module_id = AFE_MODULE_ID_ENCODER;
  4401. param_info.instance_id = INSTANCE_ID_0;
  4402. param_info.param_id = param_id;
  4403. param_info.param_size = sizeof(channel_mode_param);
  4404. channel_mode_param.channel_mode = channel_mode;
  4405. ret = q6afe_pack_and_set_param_in_band(port_id,
  4406. q6audio_get_port_index(port_id),
  4407. param_info,
  4408. (u8 *) &channel_mode_param);
  4409. if (ret)
  4410. pr_err("%s: AFE set channel mode cfg for port 0x%x failed %d\n",
  4411. __func__, port_id, ret);
  4412. return ret;
  4413. }
  4414. EXPORT_SYMBOL(afe_set_tws_channel_mode);
  4415. static int __afe_port_start(u16 port_id, union afe_port_config *afe_config,
  4416. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  4417. union afe_enc_config_data *enc_cfg,
  4418. u32 codec_format, u32 scrambler_mode, u32 mono_mode,
  4419. struct afe_dec_config *dec_cfg)
  4420. {
  4421. union afe_port_config port_cfg;
  4422. struct param_hdr_v3 param_hdr;
  4423. int ret = 0;
  4424. int cfg_type;
  4425. int index = 0;
  4426. enum afe_mad_type mad_type;
  4427. uint16_t port_index;
  4428. memset(&param_hdr, 0, sizeof(param_hdr));
  4429. memset(&port_cfg, 0, sizeof(port_cfg));
  4430. if (!afe_config) {
  4431. pr_err("%s: Error, no configuration data\n", __func__);
  4432. ret = -EINVAL;
  4433. return ret;
  4434. }
  4435. if (port_id == RT_PROXY_PORT_002_RX) {
  4436. if (proxy_afe_started) {
  4437. pr_debug("%s: afe port already started, port id 0x%x\n",
  4438. __func__, RT_PROXY_PORT_002_RX);
  4439. return 0;
  4440. } else {
  4441. proxy_afe_started = true;
  4442. }
  4443. }
  4444. if (port_id == RT_PROXY_DAI_003_TX) {
  4445. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4446. if (proxy_afe_started) {
  4447. pr_debug("%s: reconfigure afe port again\n", __func__);
  4448. afe_close(port_id);
  4449. }
  4450. proxy_afe_started = true;
  4451. }
  4452. if ((port_id == RT_PROXY_DAI_001_RX) ||
  4453. (port_id == RT_PROXY_DAI_002_TX)) {
  4454. pr_debug("%s: before incrementing pcm_afe_instance %d port_id 0x%x\n",
  4455. __func__,
  4456. pcm_afe_instance[port_id & 0x1], port_id);
  4457. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4458. pcm_afe_instance[port_id & 0x1]++;
  4459. return 0;
  4460. }
  4461. if ((port_id == RT_PROXY_DAI_002_RX) ||
  4462. (port_id == RT_PROXY_DAI_001_TX)) {
  4463. pr_debug("%s: before incrementing proxy_afe_instance %d port_id 0x%x\n",
  4464. __func__,
  4465. proxy_afe_instance[port_id & 0x1], port_id);
  4466. if (!afe_close_done[port_id & 0x1]) {
  4467. /*close pcm dai corresponding to the proxy dai*/
  4468. afe_close(port_id - 0x10);
  4469. pcm_afe_instance[port_id & 0x1]++;
  4470. pr_debug("%s: reconfigure afe port again\n", __func__);
  4471. }
  4472. proxy_afe_instance[port_id & 0x1]++;
  4473. afe_close_done[port_id & 0x1] = false;
  4474. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4475. }
  4476. pr_info("%s: port id: 0x%x\n", __func__, port_id);
  4477. index = q6audio_get_port_index(port_id);
  4478. if (index < 0 || index >= AFE_MAX_PORTS) {
  4479. pr_err("%s: AFE port index[%d] invalid!\n",
  4480. __func__, index);
  4481. return -EINVAL;
  4482. }
  4483. ret = q6audio_validate_port(port_id);
  4484. if (ret < 0) {
  4485. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  4486. return -EINVAL;
  4487. }
  4488. ret = afe_q6_interface_prepare();
  4489. if (ret != 0) {
  4490. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  4491. return ret;
  4492. }
  4493. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  4494. this_afe.afe_sample_rates[index] = rate;
  4495. if (this_afe.rt_cb)
  4496. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  4497. }
  4498. mutex_lock(&this_afe.afe_cmd_lock);
  4499. port_index = afe_get_port_index(port_id);
  4500. /* Also send the topology id here: */
  4501. if (!(this_afe.afe_cal_mode[port_index] == AFE_CAL_MODE_NONE)) {
  4502. /* One time call: only for first time */
  4503. afe_send_custom_topology();
  4504. afe_send_port_topology_id(port_id);
  4505. afe_send_cal(port_id);
  4506. afe_send_hw_delay(port_id, rate);
  4507. }
  4508. /* Start SW MAD module */
  4509. mad_type = afe_port_get_mad_type(port_id);
  4510. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  4511. mad_type);
  4512. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  4513. if (!afe_has_config(AFE_CDC_REGISTERS_CONFIG) ||
  4514. !afe_has_config(AFE_SLIMBUS_SLAVE_CONFIG)) {
  4515. pr_err("%s: AFE isn't configured yet for\n"
  4516. "HW MAD try Again\n", __func__);
  4517. ret = -EAGAIN;
  4518. goto fail_cmd;
  4519. }
  4520. ret = afe_turn_onoff_hw_mad(mad_type, true);
  4521. if (ret) {
  4522. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  4523. __func__, ret);
  4524. goto fail_cmd;
  4525. }
  4526. }
  4527. if ((this_afe.aanc_info.aanc_active) &&
  4528. (this_afe.aanc_info.aanc_tx_port == port_id)) {
  4529. this_afe.aanc_info.aanc_tx_port_sample_rate = rate;
  4530. port_index =
  4531. afe_get_port_index(this_afe.aanc_info.aanc_rx_port);
  4532. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  4533. this_afe.aanc_info.aanc_rx_port_sample_rate =
  4534. this_afe.afe_sample_rates[port_index];
  4535. } else {
  4536. pr_err("%s: Invalid port index %d\n",
  4537. __func__, port_index);
  4538. ret = -EINVAL;
  4539. goto fail_cmd;
  4540. }
  4541. ret = afe_aanc_start(this_afe.aanc_info.aanc_tx_port,
  4542. this_afe.aanc_info.aanc_rx_port);
  4543. pr_debug("%s: afe_aanc_start ret %d\n", __func__, ret);
  4544. }
  4545. if ((port_id == AFE_PORT_ID_USB_RX) ||
  4546. (port_id == AFE_PORT_ID_USB_TX)) {
  4547. ret = afe_port_send_usb_dev_param(port_id, afe_config);
  4548. if (ret) {
  4549. pr_err("%s: AFE device param for port 0x%x failed %d\n",
  4550. __func__, port_id, ret);
  4551. ret = -EINVAL;
  4552. goto fail_cmd;
  4553. }
  4554. }
  4555. switch (port_id) {
  4556. case AFE_PORT_ID_PRIMARY_PCM_RX:
  4557. case AFE_PORT_ID_PRIMARY_PCM_TX:
  4558. case AFE_PORT_ID_SECONDARY_PCM_RX:
  4559. case AFE_PORT_ID_SECONDARY_PCM_TX:
  4560. case AFE_PORT_ID_TERTIARY_PCM_RX:
  4561. case AFE_PORT_ID_TERTIARY_PCM_TX:
  4562. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  4563. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  4564. case AFE_PORT_ID_QUINARY_PCM_RX:
  4565. case AFE_PORT_ID_QUINARY_PCM_TX:
  4566. case AFE_PORT_ID_SENARY_PCM_RX:
  4567. case AFE_PORT_ID_SENARY_PCM_TX:
  4568. cfg_type = AFE_PARAM_ID_PCM_CONFIG;
  4569. break;
  4570. case PRIMARY_I2S_RX:
  4571. case PRIMARY_I2S_TX:
  4572. case SECONDARY_I2S_RX:
  4573. case SECONDARY_I2S_TX:
  4574. case MI2S_RX:
  4575. case MI2S_TX:
  4576. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  4577. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  4578. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  4579. case AFE_PORT_ID_SECONDARY_MI2S_RX_SD1:
  4580. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  4581. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  4582. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  4583. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  4584. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  4585. case AFE_PORT_ID_QUINARY_MI2S_RX:
  4586. case AFE_PORT_ID_QUINARY_MI2S_TX:
  4587. case AFE_PORT_ID_SENARY_MI2S_RX:
  4588. case AFE_PORT_ID_SENARY_MI2S_TX:
  4589. case AFE_PORT_ID_INT0_MI2S_RX:
  4590. case AFE_PORT_ID_INT0_MI2S_TX:
  4591. case AFE_PORT_ID_INT1_MI2S_RX:
  4592. case AFE_PORT_ID_INT1_MI2S_TX:
  4593. case AFE_PORT_ID_INT2_MI2S_RX:
  4594. case AFE_PORT_ID_INT2_MI2S_TX:
  4595. case AFE_PORT_ID_INT3_MI2S_RX:
  4596. case AFE_PORT_ID_INT3_MI2S_TX:
  4597. case AFE_PORT_ID_INT4_MI2S_RX:
  4598. case AFE_PORT_ID_INT4_MI2S_TX:
  4599. case AFE_PORT_ID_INT5_MI2S_RX:
  4600. case AFE_PORT_ID_INT5_MI2S_TX:
  4601. case AFE_PORT_ID_INT6_MI2S_RX:
  4602. case AFE_PORT_ID_INT6_MI2S_TX:
  4603. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  4604. break;
  4605. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  4606. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  4607. cfg_type = AFE_PARAM_ID_META_I2S_CONFIG;
  4608. break;
  4609. case HDMI_RX:
  4610. case DISPLAY_PORT_RX:
  4611. cfg_type = AFE_PARAM_ID_HDMI_CONFIG;
  4612. break;
  4613. case VOICE_PLAYBACK_TX:
  4614. case VOICE2_PLAYBACK_TX:
  4615. case VOICE_RECORD_RX:
  4616. case VOICE_RECORD_TX:
  4617. cfg_type = AFE_PARAM_ID_PSEUDO_PORT_CONFIG;
  4618. break;
  4619. case SLIMBUS_0_RX:
  4620. case SLIMBUS_0_TX:
  4621. case SLIMBUS_1_RX:
  4622. case SLIMBUS_1_TX:
  4623. case SLIMBUS_2_RX:
  4624. case SLIMBUS_2_TX:
  4625. case SLIMBUS_3_RX:
  4626. case SLIMBUS_3_TX:
  4627. case SLIMBUS_4_RX:
  4628. case SLIMBUS_4_TX:
  4629. case SLIMBUS_5_RX:
  4630. case SLIMBUS_5_TX:
  4631. case SLIMBUS_6_RX:
  4632. case SLIMBUS_6_TX:
  4633. case SLIMBUS_7_RX:
  4634. case SLIMBUS_7_TX:
  4635. case SLIMBUS_8_RX:
  4636. case SLIMBUS_8_TX:
  4637. case SLIMBUS_9_RX:
  4638. case SLIMBUS_9_TX:
  4639. cfg_type = AFE_PARAM_ID_SLIMBUS_CONFIG;
  4640. break;
  4641. case AFE_PORT_ID_USB_RX:
  4642. case AFE_PORT_ID_USB_TX:
  4643. cfg_type = AFE_PARAM_ID_USB_AUDIO_CONFIG;
  4644. break;
  4645. case RT_PROXY_PORT_001_RX:
  4646. case RT_PROXY_PORT_001_TX:
  4647. case RT_PROXY_PORT_002_RX:
  4648. case RT_PROXY_PORT_002_TX:
  4649. cfg_type = AFE_PARAM_ID_RT_PROXY_CONFIG;
  4650. break;
  4651. case INT_BT_SCO_RX:
  4652. case INT_BT_A2DP_RX:
  4653. case INT_BT_SCO_TX:
  4654. case INT_FM_RX:
  4655. case INT_FM_TX:
  4656. cfg_type = AFE_PARAM_ID_INTERNAL_BT_FM_CONFIG;
  4657. break;
  4658. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  4659. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  4660. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  4661. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  4662. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  4663. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  4664. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  4665. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  4666. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  4667. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  4668. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  4669. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  4670. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  4671. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  4672. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  4673. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  4674. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  4675. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  4676. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  4677. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  4678. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  4679. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  4680. cfg_type = AFE_PARAM_ID_CODEC_DMA_CONFIG;
  4681. break;
  4682. default:
  4683. pr_err("%s: Invalid port id 0x%x\n", __func__, port_id);
  4684. ret = -EINVAL;
  4685. goto fail_cmd;
  4686. }
  4687. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  4688. param_hdr.instance_id = INSTANCE_ID_0;
  4689. param_hdr.param_id = cfg_type;
  4690. param_hdr.param_size = sizeof(union afe_port_config);
  4691. port_cfg = *afe_config;
  4692. if (((enc_cfg != NULL) || (dec_cfg != NULL)) &&
  4693. (codec_format != ASM_MEDIA_FMT_NONE) &&
  4694. (cfg_type == AFE_PARAM_ID_SLIMBUS_CONFIG)) {
  4695. port_cfg.slim_sch.data_format =
  4696. AFE_SB_DATA_FORMAT_GENERIC_COMPRESSED;
  4697. }
  4698. ret = q6afe_pack_and_set_param_in_band(port_id,
  4699. q6audio_get_port_index(port_id),
  4700. param_hdr, (u8 *) &port_cfg);
  4701. if (ret) {
  4702. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  4703. __func__, port_id, ret);
  4704. goto fail_cmd;
  4705. }
  4706. if ((codec_format != ASM_MEDIA_FMT_NONE) &&
  4707. (cfg_type == AFE_PARAM_ID_SLIMBUS_CONFIG)) {
  4708. if (enc_cfg != NULL) {
  4709. pr_debug("%s: Found AFE encoder support for SLIMBUS format = %d\n",
  4710. __func__, codec_format);
  4711. ret = q6afe_send_enc_config(port_id, enc_cfg,
  4712. codec_format, *afe_config,
  4713. afe_in_channels,
  4714. afe_in_bit_width,
  4715. scrambler_mode, mono_mode);
  4716. if (ret) {
  4717. pr_err("%s: AFE encoder config for port 0x%x failed %d\n",
  4718. __func__, port_id, ret);
  4719. goto fail_cmd;
  4720. }
  4721. }
  4722. if (dec_cfg != NULL) {
  4723. pr_debug("%s: Found AFE decoder support for SLIMBUS format = %d\n",
  4724. __func__, codec_format);
  4725. ret = q6afe_send_dec_config(port_id, *afe_config,
  4726. dec_cfg, codec_format,
  4727. afe_in_channels,
  4728. afe_in_bit_width);
  4729. if (ret) {
  4730. pr_err("%s: AFE decoder config for port 0x%x failed %d\n",
  4731. __func__, port_id, ret);
  4732. goto fail_cmd;
  4733. }
  4734. }
  4735. }
  4736. port_index = afe_get_port_index(port_id);
  4737. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  4738. /*
  4739. * If afe_port_start() for tx port called before
  4740. * rx port, then aanc rx sample rate is zero. So,
  4741. * AANC state machine in AFE will not get triggered.
  4742. * Make sure to check whether aanc is active during
  4743. * afe_port_start() for rx port and if aanc rx
  4744. * sample rate is zero, call afe_aanc_start to configure
  4745. * aanc with valid sample rates.
  4746. */
  4747. if (this_afe.aanc_info.aanc_active &&
  4748. !this_afe.aanc_info.aanc_rx_port_sample_rate) {
  4749. this_afe.aanc_info.aanc_rx_port_sample_rate =
  4750. this_afe.afe_sample_rates[port_index];
  4751. ret = afe_aanc_start(this_afe.aanc_info.aanc_tx_port,
  4752. this_afe.aanc_info.aanc_rx_port);
  4753. pr_debug("%s: afe_aanc_start ret %d\n", __func__, ret);
  4754. }
  4755. } else {
  4756. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  4757. ret = -EINVAL;
  4758. goto fail_cmd;
  4759. }
  4760. ret = afe_send_cmd_port_start(port_id);
  4761. fail_cmd:
  4762. mutex_unlock(&this_afe.afe_cmd_lock);
  4763. return ret;
  4764. }
  4765. /**
  4766. * afe_port_start - to configure AFE session with
  4767. * specified port configuration
  4768. *
  4769. * @port_id: AFE port id number
  4770. * @afe_config: port configutation
  4771. * @rate: sampling rate of port
  4772. *
  4773. * Returns 0 on success or error value on port start failure.
  4774. */
  4775. int afe_port_start(u16 port_id, union afe_port_config *afe_config,
  4776. u32 rate)
  4777. {
  4778. return __afe_port_start(port_id, afe_config, rate,
  4779. 0, 0, NULL, ASM_MEDIA_FMT_NONE, 0, 0, NULL);
  4780. }
  4781. EXPORT_SYMBOL(afe_port_start);
  4782. /**
  4783. * afe_port_start_v2 - to configure AFE session with
  4784. * specified port configuration and encoder /decoder params
  4785. *
  4786. * @port_id: AFE port id number
  4787. * @afe_config: port configutation
  4788. * @rate: sampling rate of port
  4789. * @enc_cfg: AFE enc configuration information to setup encoder
  4790. * @afe_in_channels: AFE input channel configuration, this needs
  4791. * update only if input channel is differ from AFE output
  4792. * @dec_cfg: AFE dec configuration information to set up decoder
  4793. *
  4794. * Returns 0 on success or error value on port start failure.
  4795. */
  4796. int afe_port_start_v2(u16 port_id, union afe_port_config *afe_config,
  4797. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  4798. struct afe_enc_config *enc_cfg,
  4799. struct afe_dec_config *dec_cfg)
  4800. {
  4801. int ret = 0;
  4802. if (enc_cfg != NULL)
  4803. ret = __afe_port_start(port_id, afe_config, rate,
  4804. afe_in_channels, afe_in_bit_width,
  4805. &enc_cfg->data, enc_cfg->format,
  4806. enc_cfg->scrambler_mode,
  4807. enc_cfg->mono_mode, dec_cfg);
  4808. else if (dec_cfg != NULL)
  4809. ret = __afe_port_start(port_id, afe_config, rate,
  4810. afe_in_channels, afe_in_bit_width,
  4811. NULL, dec_cfg->format, 0, 0, dec_cfg);
  4812. return ret;
  4813. }
  4814. EXPORT_SYMBOL(afe_port_start_v2);
  4815. int afe_get_port_index(u16 port_id)
  4816. {
  4817. switch (port_id) {
  4818. case PRIMARY_I2S_RX: return IDX_PRIMARY_I2S_RX;
  4819. case PRIMARY_I2S_TX: return IDX_PRIMARY_I2S_TX;
  4820. case AFE_PORT_ID_PRIMARY_PCM_RX:
  4821. return IDX_AFE_PORT_ID_PRIMARY_PCM_RX;
  4822. case AFE_PORT_ID_PRIMARY_PCM_TX:
  4823. return IDX_AFE_PORT_ID_PRIMARY_PCM_TX;
  4824. case AFE_PORT_ID_SECONDARY_PCM_RX:
  4825. return IDX_AFE_PORT_ID_SECONDARY_PCM_RX;
  4826. case AFE_PORT_ID_SECONDARY_PCM_TX:
  4827. return IDX_AFE_PORT_ID_SECONDARY_PCM_TX;
  4828. case AFE_PORT_ID_TERTIARY_PCM_RX:
  4829. return IDX_AFE_PORT_ID_TERTIARY_PCM_RX;
  4830. case AFE_PORT_ID_TERTIARY_PCM_TX:
  4831. return IDX_AFE_PORT_ID_TERTIARY_PCM_TX;
  4832. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  4833. return IDX_AFE_PORT_ID_QUATERNARY_PCM_RX;
  4834. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  4835. return IDX_AFE_PORT_ID_QUATERNARY_PCM_TX;
  4836. case AFE_PORT_ID_QUINARY_PCM_RX:
  4837. return IDX_AFE_PORT_ID_QUINARY_PCM_RX;
  4838. case AFE_PORT_ID_QUINARY_PCM_TX:
  4839. return IDX_AFE_PORT_ID_QUINARY_PCM_TX;
  4840. case AFE_PORT_ID_SENARY_PCM_RX:
  4841. return IDX_AFE_PORT_ID_SENARY_PCM_RX;
  4842. case AFE_PORT_ID_SENARY_PCM_TX:
  4843. return IDX_AFE_PORT_ID_SENARY_PCM_TX;
  4844. case SECONDARY_I2S_RX: return IDX_SECONDARY_I2S_RX;
  4845. case SECONDARY_I2S_TX: return IDX_SECONDARY_I2S_TX;
  4846. case MI2S_RX: return IDX_MI2S_RX;
  4847. case MI2S_TX: return IDX_MI2S_TX;
  4848. case HDMI_RX: return IDX_HDMI_RX;
  4849. case DISPLAY_PORT_RX: return IDX_DISPLAY_PORT_RX;
  4850. case AFE_PORT_ID_PRIMARY_SPDIF_RX: return IDX_PRIMARY_SPDIF_RX;
  4851. case AFE_PORT_ID_PRIMARY_SPDIF_TX: return IDX_PRIMARY_SPDIF_TX;
  4852. case AFE_PORT_ID_SECONDARY_SPDIF_RX: return IDX_SECONDARY_SPDIF_RX;
  4853. case AFE_PORT_ID_SECONDARY_SPDIF_TX: return IDX_SECONDARY_SPDIF_TX;
  4854. case RSVD_2: return IDX_RSVD_2;
  4855. case RSVD_3: return IDX_RSVD_3;
  4856. case DIGI_MIC_TX: return IDX_DIGI_MIC_TX;
  4857. case VOICE_RECORD_RX: return IDX_VOICE_RECORD_RX;
  4858. case VOICE_RECORD_TX: return IDX_VOICE_RECORD_TX;
  4859. case VOICE_PLAYBACK_TX: return IDX_VOICE_PLAYBACK_TX;
  4860. case VOICE2_PLAYBACK_TX: return IDX_VOICE2_PLAYBACK_TX;
  4861. case SLIMBUS_0_RX: return IDX_SLIMBUS_0_RX;
  4862. case SLIMBUS_0_TX: return IDX_SLIMBUS_0_TX;
  4863. case SLIMBUS_1_RX: return IDX_SLIMBUS_1_RX;
  4864. case SLIMBUS_1_TX: return IDX_SLIMBUS_1_TX;
  4865. case SLIMBUS_2_RX: return IDX_SLIMBUS_2_RX;
  4866. case SLIMBUS_2_TX: return IDX_SLIMBUS_2_TX;
  4867. case SLIMBUS_3_RX: return IDX_SLIMBUS_3_RX;
  4868. case SLIMBUS_3_TX: return IDX_SLIMBUS_3_TX;
  4869. case INT_BT_SCO_RX: return IDX_INT_BT_SCO_RX;
  4870. case INT_BT_SCO_TX: return IDX_INT_BT_SCO_TX;
  4871. case INT_BT_A2DP_RX: return IDX_INT_BT_A2DP_RX;
  4872. case INT_FM_RX: return IDX_INT_FM_RX;
  4873. case INT_FM_TX: return IDX_INT_FM_TX;
  4874. case RT_PROXY_PORT_001_RX: return IDX_RT_PROXY_PORT_001_RX;
  4875. case RT_PROXY_PORT_001_TX: return IDX_RT_PROXY_PORT_001_TX;
  4876. case SLIMBUS_4_RX: return IDX_SLIMBUS_4_RX;
  4877. case SLIMBUS_4_TX: return IDX_SLIMBUS_4_TX;
  4878. case SLIMBUS_5_RX: return IDX_SLIMBUS_5_RX;
  4879. case SLIMBUS_5_TX: return IDX_SLIMBUS_5_TX;
  4880. case SLIMBUS_6_RX: return IDX_SLIMBUS_6_RX;
  4881. case SLIMBUS_6_TX: return IDX_SLIMBUS_6_TX;
  4882. case SLIMBUS_7_RX: return IDX_SLIMBUS_7_RX;
  4883. case SLIMBUS_7_TX: return IDX_SLIMBUS_7_TX;
  4884. case SLIMBUS_8_RX: return IDX_SLIMBUS_8_RX;
  4885. case SLIMBUS_8_TX: return IDX_SLIMBUS_8_TX;
  4886. case SLIMBUS_9_RX: return IDX_SLIMBUS_9_RX;
  4887. case SLIMBUS_9_TX: return IDX_SLIMBUS_9_TX;
  4888. case AFE_PORT_ID_USB_RX: return IDX_AFE_PORT_ID_USB_RX;
  4889. case AFE_PORT_ID_USB_TX: return IDX_AFE_PORT_ID_USB_TX;
  4890. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  4891. return IDX_AFE_PORT_ID_PRIMARY_MI2S_RX;
  4892. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  4893. return IDX_AFE_PORT_ID_PRIMARY_MI2S_TX;
  4894. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  4895. return IDX_AFE_PORT_ID_QUATERNARY_MI2S_RX;
  4896. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  4897. return IDX_AFE_PORT_ID_QUATERNARY_MI2S_TX;
  4898. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  4899. return IDX_AFE_PORT_ID_SECONDARY_MI2S_RX;
  4900. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  4901. return IDX_AFE_PORT_ID_SECONDARY_MI2S_TX;
  4902. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  4903. return IDX_AFE_PORT_ID_TERTIARY_MI2S_RX;
  4904. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  4905. return IDX_AFE_PORT_ID_TERTIARY_MI2S_TX;
  4906. case AFE_PORT_ID_SECONDARY_MI2S_RX_SD1:
  4907. return IDX_AFE_PORT_ID_SECONDARY_MI2S_RX_SD1;
  4908. case AFE_PORT_ID_QUINARY_MI2S_RX:
  4909. return IDX_AFE_PORT_ID_QUINARY_MI2S_RX;
  4910. case AFE_PORT_ID_QUINARY_MI2S_TX:
  4911. return IDX_AFE_PORT_ID_QUINARY_MI2S_TX;
  4912. case AFE_PORT_ID_SENARY_MI2S_RX:
  4913. return IDX_AFE_PORT_ID_SENARY_MI2S_RX;
  4914. case AFE_PORT_ID_SENARY_MI2S_TX:
  4915. return IDX_AFE_PORT_ID_SENARY_MI2S_TX;
  4916. case AFE_PORT_ID_PRIMARY_TDM_RX:
  4917. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_0;
  4918. case AFE_PORT_ID_PRIMARY_TDM_TX:
  4919. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_0;
  4920. case AFE_PORT_ID_PRIMARY_TDM_RX_1:
  4921. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_1;
  4922. case AFE_PORT_ID_PRIMARY_TDM_TX_1:
  4923. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_1;
  4924. case AFE_PORT_ID_PRIMARY_TDM_RX_2:
  4925. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_2;
  4926. case AFE_PORT_ID_PRIMARY_TDM_TX_2:
  4927. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_2;
  4928. case AFE_PORT_ID_PRIMARY_TDM_RX_3:
  4929. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_3;
  4930. case AFE_PORT_ID_PRIMARY_TDM_TX_3:
  4931. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_3;
  4932. case AFE_PORT_ID_PRIMARY_TDM_RX_4:
  4933. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_4;
  4934. case AFE_PORT_ID_PRIMARY_TDM_TX_4:
  4935. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_4;
  4936. case AFE_PORT_ID_PRIMARY_TDM_RX_5:
  4937. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_5;
  4938. case AFE_PORT_ID_PRIMARY_TDM_TX_5:
  4939. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_5;
  4940. case AFE_PORT_ID_PRIMARY_TDM_RX_6:
  4941. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_6;
  4942. case AFE_PORT_ID_PRIMARY_TDM_TX_6:
  4943. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_6;
  4944. case AFE_PORT_ID_PRIMARY_TDM_RX_7:
  4945. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_7;
  4946. case AFE_PORT_ID_PRIMARY_TDM_TX_7:
  4947. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_7;
  4948. case AFE_PORT_ID_SECONDARY_TDM_RX:
  4949. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_0;
  4950. case AFE_PORT_ID_SECONDARY_TDM_TX:
  4951. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_0;
  4952. case AFE_PORT_ID_SECONDARY_TDM_RX_1:
  4953. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_1;
  4954. case AFE_PORT_ID_SECONDARY_TDM_TX_1:
  4955. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_1;
  4956. case AFE_PORT_ID_SECONDARY_TDM_RX_2:
  4957. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_2;
  4958. case AFE_PORT_ID_SECONDARY_TDM_TX_2:
  4959. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_2;
  4960. case AFE_PORT_ID_SECONDARY_TDM_RX_3:
  4961. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_3;
  4962. case AFE_PORT_ID_SECONDARY_TDM_TX_3:
  4963. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_3;
  4964. case AFE_PORT_ID_SECONDARY_TDM_RX_4:
  4965. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_4;
  4966. case AFE_PORT_ID_SECONDARY_TDM_TX_4:
  4967. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_4;
  4968. case AFE_PORT_ID_SECONDARY_TDM_RX_5:
  4969. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_5;
  4970. case AFE_PORT_ID_SECONDARY_TDM_TX_5:
  4971. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_5;
  4972. case AFE_PORT_ID_SECONDARY_TDM_RX_6:
  4973. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_6;
  4974. case AFE_PORT_ID_SECONDARY_TDM_TX_6:
  4975. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_6;
  4976. case AFE_PORT_ID_SECONDARY_TDM_RX_7:
  4977. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_7;
  4978. case AFE_PORT_ID_SECONDARY_TDM_TX_7:
  4979. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_7;
  4980. case AFE_PORT_ID_TERTIARY_TDM_RX:
  4981. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_0;
  4982. case AFE_PORT_ID_TERTIARY_TDM_TX:
  4983. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_0;
  4984. case AFE_PORT_ID_TERTIARY_TDM_RX_1:
  4985. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_1;
  4986. case AFE_PORT_ID_TERTIARY_TDM_TX_1:
  4987. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_1;
  4988. case AFE_PORT_ID_TERTIARY_TDM_RX_2:
  4989. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_2;
  4990. case AFE_PORT_ID_TERTIARY_TDM_TX_2:
  4991. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_2;
  4992. case AFE_PORT_ID_TERTIARY_TDM_RX_3:
  4993. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_3;
  4994. case AFE_PORT_ID_TERTIARY_TDM_TX_3:
  4995. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_3;
  4996. case AFE_PORT_ID_TERTIARY_TDM_RX_4:
  4997. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_4;
  4998. case AFE_PORT_ID_TERTIARY_TDM_TX_4:
  4999. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_4;
  5000. case AFE_PORT_ID_TERTIARY_TDM_RX_5:
  5001. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_5;
  5002. case AFE_PORT_ID_TERTIARY_TDM_TX_5:
  5003. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_5;
  5004. case AFE_PORT_ID_TERTIARY_TDM_RX_6:
  5005. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_6;
  5006. case AFE_PORT_ID_TERTIARY_TDM_TX_6:
  5007. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_6;
  5008. case AFE_PORT_ID_TERTIARY_TDM_RX_7:
  5009. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_7;
  5010. case AFE_PORT_ID_TERTIARY_TDM_TX_7:
  5011. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_7;
  5012. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  5013. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_0;
  5014. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  5015. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_0;
  5016. case AFE_PORT_ID_QUATERNARY_TDM_RX_1:
  5017. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_1;
  5018. case AFE_PORT_ID_QUATERNARY_TDM_TX_1:
  5019. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_1;
  5020. case AFE_PORT_ID_QUATERNARY_TDM_RX_2:
  5021. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_2;
  5022. case AFE_PORT_ID_QUATERNARY_TDM_TX_2:
  5023. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_2;
  5024. case AFE_PORT_ID_QUATERNARY_TDM_RX_3:
  5025. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_3;
  5026. case AFE_PORT_ID_QUATERNARY_TDM_TX_3:
  5027. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_3;
  5028. case AFE_PORT_ID_QUATERNARY_TDM_RX_4:
  5029. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_4;
  5030. case AFE_PORT_ID_QUATERNARY_TDM_TX_4:
  5031. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_4;
  5032. case AFE_PORT_ID_QUATERNARY_TDM_RX_5:
  5033. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_5;
  5034. case AFE_PORT_ID_QUATERNARY_TDM_TX_5:
  5035. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_5;
  5036. case AFE_PORT_ID_QUATERNARY_TDM_RX_6:
  5037. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_6;
  5038. case AFE_PORT_ID_QUATERNARY_TDM_TX_6:
  5039. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_6;
  5040. case AFE_PORT_ID_QUATERNARY_TDM_RX_7:
  5041. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_7;
  5042. case AFE_PORT_ID_QUATERNARY_TDM_TX_7:
  5043. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_7;
  5044. case AFE_PORT_ID_QUINARY_TDM_RX:
  5045. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_0;
  5046. case AFE_PORT_ID_QUINARY_TDM_TX:
  5047. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_0;
  5048. case AFE_PORT_ID_QUINARY_TDM_RX_1:
  5049. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_1;
  5050. case AFE_PORT_ID_QUINARY_TDM_TX_1:
  5051. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_1;
  5052. case AFE_PORT_ID_QUINARY_TDM_RX_2:
  5053. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_2;
  5054. case AFE_PORT_ID_QUINARY_TDM_TX_2:
  5055. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_2;
  5056. case AFE_PORT_ID_QUINARY_TDM_RX_3:
  5057. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_3;
  5058. case AFE_PORT_ID_QUINARY_TDM_TX_3:
  5059. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_3;
  5060. case AFE_PORT_ID_QUINARY_TDM_RX_4:
  5061. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_4;
  5062. case AFE_PORT_ID_QUINARY_TDM_TX_4:
  5063. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_4;
  5064. case AFE_PORT_ID_QUINARY_TDM_RX_5:
  5065. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_5;
  5066. case AFE_PORT_ID_QUINARY_TDM_TX_5:
  5067. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_5;
  5068. case AFE_PORT_ID_QUINARY_TDM_RX_6:
  5069. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_6;
  5070. case AFE_PORT_ID_QUINARY_TDM_TX_6:
  5071. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_6;
  5072. case AFE_PORT_ID_QUINARY_TDM_RX_7:
  5073. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_7;
  5074. case AFE_PORT_ID_QUINARY_TDM_TX_7:
  5075. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_7;
  5076. case AFE_PORT_ID_SENARY_TDM_RX:
  5077. return IDX_AFE_PORT_ID_SENARY_TDM_RX_0;
  5078. case AFE_PORT_ID_SENARY_TDM_TX:
  5079. return IDX_AFE_PORT_ID_SENARY_TDM_TX_0;
  5080. case AFE_PORT_ID_SENARY_TDM_RX_1:
  5081. return IDX_AFE_PORT_ID_SENARY_TDM_RX_1;
  5082. case AFE_PORT_ID_SENARY_TDM_TX_1:
  5083. return IDX_AFE_PORT_ID_SENARY_TDM_TX_1;
  5084. case AFE_PORT_ID_SENARY_TDM_RX_2:
  5085. return IDX_AFE_PORT_ID_SENARY_TDM_RX_2;
  5086. case AFE_PORT_ID_SENARY_TDM_TX_2:
  5087. return IDX_AFE_PORT_ID_SENARY_TDM_TX_2;
  5088. case AFE_PORT_ID_SENARY_TDM_RX_3:
  5089. return IDX_AFE_PORT_ID_SENARY_TDM_RX_3;
  5090. case AFE_PORT_ID_SENARY_TDM_TX_3:
  5091. return IDX_AFE_PORT_ID_SENARY_TDM_TX_3;
  5092. case AFE_PORT_ID_SENARY_TDM_RX_4:
  5093. return IDX_AFE_PORT_ID_SENARY_TDM_RX_4;
  5094. case AFE_PORT_ID_SENARY_TDM_TX_4:
  5095. return IDX_AFE_PORT_ID_SENARY_TDM_TX_4;
  5096. case AFE_PORT_ID_SENARY_TDM_RX_5:
  5097. return IDX_AFE_PORT_ID_SENARY_TDM_RX_5;
  5098. case AFE_PORT_ID_SENARY_TDM_TX_5:
  5099. return IDX_AFE_PORT_ID_SENARY_TDM_TX_5;
  5100. case AFE_PORT_ID_SENARY_TDM_RX_6:
  5101. return IDX_AFE_PORT_ID_SENARY_TDM_RX_6;
  5102. case AFE_PORT_ID_SENARY_TDM_TX_6:
  5103. return IDX_AFE_PORT_ID_SENARY_TDM_TX_6;
  5104. case AFE_PORT_ID_SENARY_TDM_RX_7:
  5105. return IDX_AFE_PORT_ID_SENARY_TDM_RX_7;
  5106. case AFE_PORT_ID_SENARY_TDM_TX_7:
  5107. return IDX_AFE_PORT_ID_SENARY_TDM_TX_7;
  5108. case AFE_PORT_ID_INT0_MI2S_RX:
  5109. return IDX_AFE_PORT_ID_INT0_MI2S_RX;
  5110. case AFE_PORT_ID_INT0_MI2S_TX:
  5111. return IDX_AFE_PORT_ID_INT0_MI2S_TX;
  5112. case AFE_PORT_ID_INT1_MI2S_RX:
  5113. return IDX_AFE_PORT_ID_INT1_MI2S_RX;
  5114. case AFE_PORT_ID_INT1_MI2S_TX:
  5115. return IDX_AFE_PORT_ID_INT1_MI2S_TX;
  5116. case AFE_PORT_ID_INT2_MI2S_RX:
  5117. return IDX_AFE_PORT_ID_INT2_MI2S_RX;
  5118. case AFE_PORT_ID_INT2_MI2S_TX:
  5119. return IDX_AFE_PORT_ID_INT2_MI2S_TX;
  5120. case AFE_PORT_ID_INT3_MI2S_RX:
  5121. return IDX_AFE_PORT_ID_INT3_MI2S_RX;
  5122. case AFE_PORT_ID_INT3_MI2S_TX:
  5123. return IDX_AFE_PORT_ID_INT3_MI2S_TX;
  5124. case AFE_PORT_ID_INT4_MI2S_RX:
  5125. return IDX_AFE_PORT_ID_INT4_MI2S_RX;
  5126. case AFE_PORT_ID_INT4_MI2S_TX:
  5127. return IDX_AFE_PORT_ID_INT4_MI2S_TX;
  5128. case AFE_PORT_ID_INT5_MI2S_RX:
  5129. return IDX_AFE_PORT_ID_INT5_MI2S_RX;
  5130. case AFE_PORT_ID_INT5_MI2S_TX:
  5131. return IDX_AFE_PORT_ID_INT5_MI2S_TX;
  5132. case AFE_PORT_ID_INT6_MI2S_RX:
  5133. return IDX_AFE_PORT_ID_INT6_MI2S_RX;
  5134. case AFE_PORT_ID_INT6_MI2S_TX:
  5135. return IDX_AFE_PORT_ID_INT6_MI2S_TX;
  5136. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  5137. return IDX_AFE_PORT_ID_PRIMARY_META_MI2S_RX;
  5138. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  5139. return IDX_AFE_PORT_ID_SECONDARY_META_MI2S_RX;
  5140. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  5141. return IDX_AFE_PORT_ID_VA_CODEC_DMA_TX_0;
  5142. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  5143. return IDX_AFE_PORT_ID_VA_CODEC_DMA_TX_1;
  5144. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  5145. return IDX_AFE_PORT_ID_VA_CODEC_DMA_TX_2;
  5146. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  5147. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_RX_0;
  5148. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  5149. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_0;
  5150. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  5151. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_RX_1;
  5152. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  5153. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_1;
  5154. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  5155. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_2;
  5156. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  5157. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_0;
  5158. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  5159. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_0;
  5160. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  5161. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_1;
  5162. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  5163. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_1;
  5164. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  5165. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_2;
  5166. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  5167. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_2;
  5168. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  5169. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_3;
  5170. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  5171. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_3;
  5172. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  5173. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_4;
  5174. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  5175. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_4;
  5176. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  5177. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_5;
  5178. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  5179. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_5;
  5180. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  5181. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_6;
  5182. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  5183. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_7;
  5184. case AFE_LOOPBACK_TX:
  5185. return IDX_AFE_LOOPBACK_TX;
  5186. case RT_PROXY_PORT_002_RX:
  5187. return IDX_RT_PROXY_PORT_002_RX;
  5188. case RT_PROXY_PORT_002_TX:
  5189. return IDX_RT_PROXY_PORT_002_TX;
  5190. default:
  5191. pr_err("%s: port 0x%x\n", __func__, port_id);
  5192. return -EINVAL;
  5193. }
  5194. }
  5195. /**
  5196. * afe_open -
  5197. * command to open AFE port
  5198. *
  5199. * @port_id: AFE port id
  5200. * @afe_config: AFE port config to pass
  5201. * @rate: sample rate
  5202. *
  5203. * Returns 0 on success or error on failure
  5204. */
  5205. int afe_open(u16 port_id,
  5206. union afe_port_config *afe_config, int rate)
  5207. {
  5208. struct afe_port_cmd_device_start start;
  5209. union afe_port_config port_cfg;
  5210. struct param_hdr_v3 param_hdr;
  5211. int ret = 0;
  5212. int cfg_type;
  5213. int index = 0;
  5214. memset(&param_hdr, 0, sizeof(param_hdr));
  5215. memset(&start, 0, sizeof(start));
  5216. memset(&port_cfg, 0, sizeof(port_cfg));
  5217. if (!afe_config) {
  5218. pr_err("%s: Error, no configuration data\n", __func__);
  5219. ret = -EINVAL;
  5220. return ret;
  5221. }
  5222. pr_err("%s: port_id 0x%x rate %d\n", __func__, port_id, rate);
  5223. index = q6audio_get_port_index(port_id);
  5224. if (index < 0 || index >= AFE_MAX_PORTS) {
  5225. pr_err("%s: AFE port index[%d] invalid!\n",
  5226. __func__, index);
  5227. return -EINVAL;
  5228. }
  5229. ret = q6audio_validate_port(port_id);
  5230. if (ret < 0) {
  5231. pr_err("%s: Invalid port 0x%x ret %d", __func__, port_id, ret);
  5232. return -EINVAL;
  5233. }
  5234. if ((port_id == RT_PROXY_DAI_001_RX) ||
  5235. (port_id == RT_PROXY_DAI_002_TX)) {
  5236. pr_err("%s: wrong port 0x%x\n", __func__, port_id);
  5237. return -EINVAL;
  5238. }
  5239. if ((port_id == RT_PROXY_DAI_002_RX) ||
  5240. (port_id == RT_PROXY_DAI_001_TX))
  5241. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  5242. ret = afe_q6_interface_prepare();
  5243. if (ret != 0) {
  5244. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5245. return -EINVAL;
  5246. }
  5247. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  5248. this_afe.afe_sample_rates[index] = rate;
  5249. if (this_afe.rt_cb)
  5250. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  5251. }
  5252. /* Also send the topology id here: */
  5253. afe_send_custom_topology(); /* One time call: only for first time */
  5254. afe_send_port_topology_id(port_id);
  5255. ret = q6audio_validate_port(port_id);
  5256. if (ret < 0) {
  5257. pr_err("%s: Failed : Invalid Port id = 0x%x ret %d\n",
  5258. __func__, port_id, ret);
  5259. return -EINVAL;
  5260. }
  5261. mutex_lock(&this_afe.afe_cmd_lock);
  5262. switch (port_id) {
  5263. case PRIMARY_I2S_RX:
  5264. case PRIMARY_I2S_TX:
  5265. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  5266. break;
  5267. case AFE_PORT_ID_PRIMARY_PCM_RX:
  5268. case AFE_PORT_ID_PRIMARY_PCM_TX:
  5269. case AFE_PORT_ID_SECONDARY_PCM_RX:
  5270. case AFE_PORT_ID_SECONDARY_PCM_TX:
  5271. case AFE_PORT_ID_TERTIARY_PCM_RX:
  5272. case AFE_PORT_ID_TERTIARY_PCM_TX:
  5273. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  5274. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  5275. case AFE_PORT_ID_QUINARY_PCM_RX:
  5276. case AFE_PORT_ID_QUINARY_PCM_TX:
  5277. case AFE_PORT_ID_SENARY_PCM_RX:
  5278. case AFE_PORT_ID_SENARY_PCM_TX:
  5279. cfg_type = AFE_PARAM_ID_PCM_CONFIG;
  5280. break;
  5281. case SECONDARY_I2S_RX:
  5282. case SECONDARY_I2S_TX:
  5283. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  5284. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  5285. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  5286. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  5287. case MI2S_RX:
  5288. case MI2S_TX:
  5289. case AFE_PORT_ID_QUINARY_MI2S_RX:
  5290. case AFE_PORT_ID_QUINARY_MI2S_TX:
  5291. case AFE_PORT_ID_SENARY_MI2S_RX:
  5292. case AFE_PORT_ID_SENARY_MI2S_TX:
  5293. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  5294. break;
  5295. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  5296. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  5297. cfg_type = AFE_PARAM_ID_META_I2S_CONFIG;
  5298. break;
  5299. case HDMI_RX:
  5300. case DISPLAY_PORT_RX:
  5301. cfg_type = AFE_PARAM_ID_HDMI_CONFIG;
  5302. break;
  5303. case AFE_PORT_ID_PRIMARY_SPDIF_RX:
  5304. case AFE_PORT_ID_PRIMARY_SPDIF_TX:
  5305. case AFE_PORT_ID_SECONDARY_SPDIF_RX:
  5306. case AFE_PORT_ID_SECONDARY_SPDIF_TX:
  5307. cfg_type = AFE_PARAM_ID_SPDIF_CONFIG;
  5308. break;
  5309. case SLIMBUS_0_RX:
  5310. case SLIMBUS_0_TX:
  5311. case SLIMBUS_1_RX:
  5312. case SLIMBUS_1_TX:
  5313. case SLIMBUS_2_RX:
  5314. case SLIMBUS_2_TX:
  5315. case SLIMBUS_3_RX:
  5316. case SLIMBUS_3_TX:
  5317. case SLIMBUS_4_RX:
  5318. case SLIMBUS_4_TX:
  5319. case SLIMBUS_5_RX:
  5320. case SLIMBUS_6_RX:
  5321. case SLIMBUS_6_TX:
  5322. case SLIMBUS_7_RX:
  5323. case SLIMBUS_7_TX:
  5324. case SLIMBUS_8_RX:
  5325. case SLIMBUS_8_TX:
  5326. case SLIMBUS_9_RX:
  5327. case SLIMBUS_9_TX:
  5328. cfg_type = AFE_PARAM_ID_SLIMBUS_CONFIG;
  5329. break;
  5330. case AFE_PORT_ID_USB_RX:
  5331. case AFE_PORT_ID_USB_TX:
  5332. cfg_type = AFE_PARAM_ID_USB_AUDIO_CONFIG;
  5333. break;
  5334. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  5335. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  5336. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  5337. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  5338. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  5339. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  5340. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  5341. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  5342. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  5343. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  5344. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  5345. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  5346. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  5347. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  5348. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  5349. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  5350. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  5351. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  5352. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  5353. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  5354. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  5355. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  5356. cfg_type = AFE_PARAM_ID_CODEC_DMA_CONFIG;
  5357. break;
  5358. default:
  5359. pr_err("%s: Invalid port id 0x%x\n",
  5360. __func__, port_id);
  5361. ret = -EINVAL;
  5362. goto fail_cmd;
  5363. }
  5364. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5365. param_hdr.instance_id = INSTANCE_ID_0;
  5366. param_hdr.param_id = cfg_type;
  5367. param_hdr.param_size = sizeof(union afe_port_config);
  5368. port_cfg = *afe_config;
  5369. ret = q6afe_pack_and_set_param_in_band(port_id,
  5370. q6audio_get_port_index(port_id),
  5371. param_hdr, (u8 *) &port_cfg);
  5372. if (ret) {
  5373. pr_err("%s: AFE enable for port 0x%x opcode[0x%x]failed %d\n",
  5374. __func__, port_id, cfg_type, ret);
  5375. goto fail_cmd;
  5376. }
  5377. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5378. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5379. start.hdr.pkt_size = sizeof(start);
  5380. start.hdr.src_port = 0;
  5381. start.hdr.dest_port = 0;
  5382. start.hdr.token = index;
  5383. start.hdr.opcode = AFE_PORT_CMD_DEVICE_START;
  5384. start.port_id = q6audio_get_port_id(port_id);
  5385. pr_debug("%s: cmd device start opcode[0x%x] port id[0x%x]\n",
  5386. __func__, start.hdr.opcode, start.port_id);
  5387. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  5388. if (ret) {
  5389. pr_err("%s: AFE enable for port 0x%x failed %d\n", __func__,
  5390. port_id, ret);
  5391. goto fail_cmd;
  5392. }
  5393. fail_cmd:
  5394. mutex_unlock(&this_afe.afe_cmd_lock);
  5395. return ret;
  5396. }
  5397. EXPORT_SYMBOL(afe_open);
  5398. /**
  5399. * afe_loopback -
  5400. * command to set loopback between AFE ports
  5401. *
  5402. * @enable: enable or disable loopback
  5403. * @rx_port: AFE RX port ID
  5404. * @tx_port: AFE TX port ID
  5405. *
  5406. * Returns 0 on success or error on failure
  5407. */
  5408. int afe_loopback(u16 enable, u16 rx_port, u16 tx_port)
  5409. {
  5410. struct afe_loopback_cfg_v1 lb_param;
  5411. struct param_hdr_v3 param_hdr;
  5412. int ret = 0;
  5413. memset(&lb_param, 0, sizeof(lb_param));
  5414. memset(&param_hdr, 0, sizeof(param_hdr));
  5415. if (rx_port == MI2S_RX)
  5416. rx_port = AFE_PORT_ID_PRIMARY_MI2S_RX;
  5417. if (tx_port == MI2S_TX)
  5418. tx_port = AFE_PORT_ID_PRIMARY_MI2S_TX;
  5419. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  5420. param_hdr.instance_id = INSTANCE_ID_0;
  5421. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_CONFIG;
  5422. param_hdr.param_size = sizeof(struct afe_loopback_cfg_v1);
  5423. lb_param.dst_port_id = rx_port;
  5424. lb_param.routing_mode = LB_MODE_DEFAULT;
  5425. lb_param.enable = (enable ? 1 : 0);
  5426. lb_param.loopback_cfg_minor_version = AFE_API_VERSION_LOOPBACK_CONFIG;
  5427. ret = q6afe_pack_and_set_param_in_band(tx_port,
  5428. q6audio_get_port_index(tx_port),
  5429. param_hdr, (u8 *) &lb_param);
  5430. if (ret)
  5431. pr_err("%s: AFE loopback failed %d\n", __func__, ret);
  5432. return ret;
  5433. }
  5434. EXPORT_SYMBOL(afe_loopback);
  5435. /**
  5436. * afe_loopback_gain -
  5437. * command to set gain for AFE loopback
  5438. *
  5439. * @port_id: AFE port id
  5440. * @volume: gain value to set
  5441. *
  5442. * Returns 0 on success or error on failure
  5443. */
  5444. int afe_loopback_gain(u16 port_id, u16 volume)
  5445. {
  5446. struct afe_loopback_gain_per_path_param set_param;
  5447. struct param_hdr_v3 param_hdr;
  5448. int ret = 0;
  5449. memset(&set_param, 0, sizeof(set_param));
  5450. memset(&param_hdr, 0, sizeof(param_hdr));
  5451. if (this_afe.apr == NULL) {
  5452. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  5453. 0xFFFFFFFF, &this_afe);
  5454. pr_debug("%s: Register AFE\n", __func__);
  5455. if (this_afe.apr == NULL) {
  5456. pr_err("%s: Unable to register AFE\n", __func__);
  5457. ret = -ENODEV;
  5458. return ret;
  5459. }
  5460. rtac_set_afe_handle(this_afe.apr);
  5461. }
  5462. ret = q6audio_validate_port(port_id);
  5463. if (ret < 0) {
  5464. pr_err("%s: Failed : Invalid Port id = 0x%x ret %d\n",
  5465. __func__, port_id, ret);
  5466. ret = -EINVAL;
  5467. goto fail_cmd;
  5468. }
  5469. /* RX ports numbers are even .TX ports numbers are odd. */
  5470. if (port_id % 2 == 0) {
  5471. pr_err("%s: Failed : afe loopback gain only for TX ports. port_id %d\n",
  5472. __func__, port_id);
  5473. ret = -EINVAL;
  5474. goto fail_cmd;
  5475. }
  5476. pr_debug("%s: port 0x%x volume %d\n", __func__, port_id, volume);
  5477. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  5478. param_hdr.instance_id = INSTANCE_ID_0;
  5479. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_GAIN_PER_PATH;
  5480. param_hdr.param_size = sizeof(struct afe_loopback_gain_per_path_param);
  5481. set_param.rx_port_id = port_id;
  5482. set_param.gain = volume;
  5483. ret = q6afe_pack_and_set_param_in_band(port_id,
  5484. q6audio_get_port_index(port_id),
  5485. param_hdr, (u8 *) &set_param);
  5486. if (ret)
  5487. pr_err("%s: AFE param set failed for port 0x%x ret %d\n",
  5488. __func__, port_id, ret);
  5489. fail_cmd:
  5490. return ret;
  5491. }
  5492. EXPORT_SYMBOL(afe_loopback_gain);
  5493. int afe_pseudo_port_start_nowait(u16 port_id)
  5494. {
  5495. struct afe_pseudoport_start_command start;
  5496. int ret = 0;
  5497. pr_debug("%s: port_id=0x%x\n", __func__, port_id);
  5498. if (this_afe.apr == NULL) {
  5499. pr_err("%s: AFE APR is not registered\n", __func__);
  5500. return -ENODEV;
  5501. }
  5502. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5503. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5504. start.hdr.pkt_size = sizeof(start);
  5505. start.hdr.src_port = 0;
  5506. start.hdr.dest_port = 0;
  5507. start.hdr.token = 0;
  5508. start.hdr.opcode = AFE_PSEUDOPORT_CMD_START;
  5509. start.port_id = port_id;
  5510. start.timing = 1;
  5511. ret = afe_apr_send_pkt(&start, NULL);
  5512. if (ret) {
  5513. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  5514. __func__, port_id, ret);
  5515. return ret;
  5516. }
  5517. return 0;
  5518. }
  5519. int afe_start_pseudo_port(u16 port_id)
  5520. {
  5521. int ret = 0;
  5522. struct afe_pseudoport_start_command start;
  5523. int index = 0;
  5524. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  5525. ret = afe_q6_interface_prepare();
  5526. if (ret != 0) {
  5527. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5528. return ret;
  5529. }
  5530. index = q6audio_get_port_index(port_id);
  5531. if (index < 0 || index >= AFE_MAX_PORTS) {
  5532. pr_err("%s: AFE port index[%d] invalid!\n",
  5533. __func__, index);
  5534. return -EINVAL;
  5535. }
  5536. ret = q6audio_validate_port(port_id);
  5537. if (ret < 0) {
  5538. pr_err("%s: Invalid port 0x%x ret %d",
  5539. __func__, port_id, ret);
  5540. return -EINVAL;
  5541. }
  5542. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5543. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5544. start.hdr.pkt_size = sizeof(start);
  5545. start.hdr.src_port = 0;
  5546. start.hdr.dest_port = 0;
  5547. start.hdr.token = 0;
  5548. start.hdr.opcode = AFE_PSEUDOPORT_CMD_START;
  5549. start.port_id = port_id;
  5550. start.timing = 1;
  5551. start.hdr.token = index;
  5552. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  5553. if (ret)
  5554. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  5555. __func__, port_id, ret);
  5556. return ret;
  5557. }
  5558. int afe_pseudo_port_stop_nowait(u16 port_id)
  5559. {
  5560. int ret = 0;
  5561. struct afe_pseudoport_stop_command stop;
  5562. int index = 0;
  5563. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  5564. if (this_afe.apr == NULL) {
  5565. pr_err("%s: AFE is already closed\n", __func__);
  5566. return -EINVAL;
  5567. }
  5568. index = q6audio_get_port_index(port_id);
  5569. if (index < 0 || index >= AFE_MAX_PORTS) {
  5570. pr_err("%s: AFE port index[%d] invalid!\n",
  5571. __func__, index);
  5572. return -EINVAL;
  5573. }
  5574. ret = q6audio_validate_port(port_id);
  5575. if (ret < 0) {
  5576. pr_err("%s: Invalid port 0x%x ret %d",
  5577. __func__, port_id, ret);
  5578. return -EINVAL;
  5579. }
  5580. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5581. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5582. stop.hdr.pkt_size = sizeof(stop);
  5583. stop.hdr.src_port = 0;
  5584. stop.hdr.dest_port = 0;
  5585. stop.hdr.token = 0;
  5586. stop.hdr.opcode = AFE_PSEUDOPORT_CMD_STOP;
  5587. stop.port_id = port_id;
  5588. stop.reserved = 0;
  5589. stop.hdr.token = index;
  5590. ret = afe_apr_send_pkt(&stop, NULL);
  5591. if (ret)
  5592. pr_err("%s: AFE close failed %d\n", __func__, ret);
  5593. return ret;
  5594. }
  5595. int afe_port_group_set_param(u16 group_id,
  5596. union afe_port_group_config *afe_group_config)
  5597. {
  5598. struct param_hdr_v3 param_hdr;
  5599. int cfg_type;
  5600. int ret;
  5601. if (!afe_group_config) {
  5602. pr_err("%s: Error, no configuration data\n", __func__);
  5603. return -EINVAL;
  5604. }
  5605. pr_debug("%s: group id: 0x%x\n", __func__, group_id);
  5606. memset(&param_hdr, 0, sizeof(param_hdr));
  5607. ret = afe_q6_interface_prepare();
  5608. if (ret != 0) {
  5609. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5610. return ret;
  5611. }
  5612. switch (group_id) {
  5613. case AFE_GROUP_DEVICE_ID_PRIMARY_TDM_RX:
  5614. case AFE_GROUP_DEVICE_ID_PRIMARY_TDM_TX:
  5615. case AFE_GROUP_DEVICE_ID_SECONDARY_TDM_RX:
  5616. case AFE_GROUP_DEVICE_ID_SECONDARY_TDM_TX:
  5617. case AFE_GROUP_DEVICE_ID_TERTIARY_TDM_RX:
  5618. case AFE_GROUP_DEVICE_ID_TERTIARY_TDM_TX:
  5619. case AFE_GROUP_DEVICE_ID_QUATERNARY_TDM_RX:
  5620. case AFE_GROUP_DEVICE_ID_QUATERNARY_TDM_TX:
  5621. case AFE_GROUP_DEVICE_ID_QUINARY_TDM_RX:
  5622. case AFE_GROUP_DEVICE_ID_QUINARY_TDM_TX:
  5623. case AFE_GROUP_DEVICE_ID_SENARY_TDM_RX:
  5624. case AFE_GROUP_DEVICE_ID_SENARY_TDM_TX:
  5625. cfg_type = AFE_PARAM_ID_GROUP_DEVICE_TDM_CONFIG;
  5626. break;
  5627. default:
  5628. pr_err("%s: Invalid group id 0x%x\n", __func__, group_id);
  5629. return -EINVAL;
  5630. }
  5631. param_hdr.module_id = AFE_MODULE_GROUP_DEVICE;
  5632. param_hdr.instance_id = INSTANCE_ID_0;
  5633. param_hdr.param_id = cfg_type;
  5634. param_hdr.param_size = sizeof(union afe_port_group_config);
  5635. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  5636. (u8 *) afe_group_config);
  5637. if (ret)
  5638. pr_err("%s: AFE_PARAM_ID_GROUP_DEVICE_CFG failed %d\n",
  5639. __func__, ret);
  5640. return ret;
  5641. }
  5642. /**
  5643. * afe_port_tdm_lane_config -
  5644. * to configure group TDM lane mask with specified configuration
  5645. *
  5646. * @group_id: AFE group id number
  5647. * @lane_cfg: TDM lane mask configutation
  5648. *
  5649. * Returns 0 on success or error value on failure.
  5650. */
  5651. static int afe_port_tdm_lane_config(u16 group_id,
  5652. struct afe_param_id_tdm_lane_cfg *lane_cfg)
  5653. {
  5654. struct param_hdr_v3 param_hdr;
  5655. int ret = 0;
  5656. if (lane_cfg == NULL ||
  5657. lane_cfg->lane_mask == AFE_LANE_MASK_INVALID) {
  5658. pr_debug("%s: lane cfg not supported for group id: 0x%x\n",
  5659. __func__, group_id);
  5660. return ret;
  5661. }
  5662. pr_debug("%s: group id: 0x%x lane mask 0x%x\n", __func__,
  5663. group_id, lane_cfg->lane_mask);
  5664. memset(&param_hdr, 0, sizeof(param_hdr));
  5665. ret = afe_q6_interface_prepare();
  5666. if (ret != 0) {
  5667. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5668. return ret;
  5669. }
  5670. param_hdr.module_id = AFE_MODULE_GROUP_DEVICE;
  5671. param_hdr.instance_id = INSTANCE_ID_0;
  5672. param_hdr.param_id = AFE_PARAM_ID_TDM_LANE_CONFIG;
  5673. param_hdr.param_size = sizeof(struct afe_param_id_tdm_lane_cfg);
  5674. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  5675. (u8 *)lane_cfg);
  5676. if (ret)
  5677. pr_err("%s: AFE_PARAM_ID_TDM_LANE_CONFIG failed %d\n",
  5678. __func__, ret);
  5679. return ret;
  5680. }
  5681. /**
  5682. * afe_port_group_enable -
  5683. * command to enable AFE port group
  5684. *
  5685. * @group_id: group ID for AFE port group
  5686. * @afe_group_config: config for AFE group
  5687. * @enable: flag to indicate enable or disable
  5688. * @lane_cfg: TDM lane mask configutation
  5689. *
  5690. * Returns 0 on success or error on failure
  5691. */
  5692. int afe_port_group_enable(u16 group_id,
  5693. union afe_port_group_config *afe_group_config,
  5694. u16 enable,
  5695. struct afe_param_id_tdm_lane_cfg *lane_cfg)
  5696. {
  5697. struct afe_group_device_enable group_enable;
  5698. struct param_hdr_v3 param_hdr;
  5699. int ret;
  5700. pr_debug("%s: group id: 0x%x enable: %d\n", __func__,
  5701. group_id, enable);
  5702. memset(&group_enable, 0, sizeof(group_enable));
  5703. memset(&param_hdr, 0, sizeof(param_hdr));
  5704. ret = afe_q6_interface_prepare();
  5705. if (ret != 0) {
  5706. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5707. return ret;
  5708. }
  5709. if (enable) {
  5710. ret = afe_port_group_set_param(group_id, afe_group_config);
  5711. if (ret < 0) {
  5712. pr_err("%s: afe send failed %d\n", __func__, ret);
  5713. return ret;
  5714. }
  5715. ret = afe_port_tdm_lane_config(group_id, lane_cfg);
  5716. if (ret < 0) {
  5717. pr_err("%s: afe send lane config failed %d\n",
  5718. __func__, ret);
  5719. return ret;
  5720. }
  5721. }
  5722. param_hdr.module_id = AFE_MODULE_GROUP_DEVICE;
  5723. param_hdr.instance_id = INSTANCE_ID_0;
  5724. param_hdr.param_id = AFE_PARAM_ID_GROUP_DEVICE_ENABLE;
  5725. param_hdr.param_size = sizeof(struct afe_group_device_enable);
  5726. group_enable.group_id = group_id;
  5727. group_enable.enable = enable;
  5728. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  5729. (u8 *) &group_enable);
  5730. if (ret)
  5731. pr_err("%s: AFE_PARAM_ID_GROUP_DEVICE_ENABLE failed %d\n",
  5732. __func__, ret);
  5733. return ret;
  5734. }
  5735. EXPORT_SYMBOL(afe_port_group_enable);
  5736. int afe_stop_pseudo_port(u16 port_id)
  5737. {
  5738. int ret = 0;
  5739. struct afe_pseudoport_stop_command stop;
  5740. int index = 0;
  5741. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  5742. if (this_afe.apr == NULL) {
  5743. pr_err("%s: AFE is already closed\n", __func__);
  5744. return -EINVAL;
  5745. }
  5746. index = q6audio_get_port_index(port_id);
  5747. if (index < 0 || index >= AFE_MAX_PORTS) {
  5748. pr_err("%s: AFE port index[%d] invalid!\n",
  5749. __func__, index);
  5750. return -EINVAL;
  5751. }
  5752. ret = q6audio_validate_port(port_id);
  5753. if (ret < 0) {
  5754. pr_err("%s: Invalid port 0x%x ret %d\n",
  5755. __func__, port_id, ret);
  5756. return -EINVAL;
  5757. }
  5758. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5759. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5760. stop.hdr.pkt_size = sizeof(stop);
  5761. stop.hdr.src_port = 0;
  5762. stop.hdr.dest_port = 0;
  5763. stop.hdr.token = 0;
  5764. stop.hdr.opcode = AFE_PSEUDOPORT_CMD_STOP;
  5765. stop.port_id = port_id;
  5766. stop.reserved = 0;
  5767. stop.hdr.token = index;
  5768. ret = afe_apr_send_pkt(&stop, &this_afe.wait[index]);
  5769. if (ret)
  5770. pr_err("%s: AFE close failed %d\n", __func__, ret);
  5771. return ret;
  5772. }
  5773. /**
  5774. * afe_req_mmap_handle -
  5775. * Retrieve AFE memory map handle
  5776. *
  5777. * @ac: AFE audio client
  5778. *
  5779. * Returns memory map handle
  5780. */
  5781. uint32_t afe_req_mmap_handle(struct afe_audio_client *ac)
  5782. {
  5783. return ac->mem_map_handle;
  5784. }
  5785. EXPORT_SYMBOL(afe_req_mmap_handle);
  5786. /**
  5787. * q6afe_audio_client_alloc -
  5788. * Assign new AFE audio client
  5789. *
  5790. * @priv: privata data to hold for audio client
  5791. *
  5792. * Returns ac pointer on success or NULL on failure
  5793. */
  5794. struct afe_audio_client *q6afe_audio_client_alloc(void *priv)
  5795. {
  5796. struct afe_audio_client *ac;
  5797. int lcnt = 0;
  5798. ac = kzalloc(sizeof(struct afe_audio_client), GFP_KERNEL);
  5799. if (!ac)
  5800. return NULL;
  5801. ac->priv = priv;
  5802. init_waitqueue_head(&ac->cmd_wait);
  5803. INIT_LIST_HEAD(&ac->port[0].mem_map_handle);
  5804. INIT_LIST_HEAD(&ac->port[1].mem_map_handle);
  5805. pr_debug("%s: mem_map_handle list init'ed\n", __func__);
  5806. mutex_init(&ac->cmd_lock);
  5807. for (lcnt = 0; lcnt <= OUT; lcnt++) {
  5808. mutex_init(&ac->port[lcnt].lock);
  5809. spin_lock_init(&ac->port[lcnt].dsp_lock);
  5810. }
  5811. atomic_set(&ac->cmd_state, 0);
  5812. return ac;
  5813. }
  5814. EXPORT_SYMBOL(q6afe_audio_client_alloc);
  5815. /**
  5816. * q6afe_audio_client_buf_alloc_contiguous -
  5817. * Allocate contiguous shared buffers
  5818. *
  5819. * @dir: RX or TX direction of AFE port
  5820. * @ac: AFE audio client handle
  5821. * @bufsz: size of each shared buffer
  5822. * @bufcnt: number of buffers
  5823. *
  5824. * Returns 0 on success or error on failure
  5825. */
  5826. int q6afe_audio_client_buf_alloc_contiguous(unsigned int dir,
  5827. struct afe_audio_client *ac,
  5828. unsigned int bufsz,
  5829. unsigned int bufcnt)
  5830. {
  5831. int cnt = 0;
  5832. int rc = 0;
  5833. struct afe_audio_buffer *buf;
  5834. size_t len;
  5835. if (!(ac) || ((dir != IN) && (dir != OUT))) {
  5836. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  5837. return -EINVAL;
  5838. }
  5839. pr_debug("%s: bufsz[%d]bufcnt[%d]\n",
  5840. __func__,
  5841. bufsz, bufcnt);
  5842. if (ac->port[dir].buf) {
  5843. pr_debug("%s: buffer already allocated\n", __func__);
  5844. return 0;
  5845. }
  5846. mutex_lock(&ac->cmd_lock);
  5847. buf = kzalloc(((sizeof(struct afe_audio_buffer))*bufcnt),
  5848. GFP_KERNEL);
  5849. if (!buf) {
  5850. pr_err("%s: null buf\n", __func__);
  5851. mutex_unlock(&ac->cmd_lock);
  5852. goto fail;
  5853. }
  5854. ac->port[dir].buf = buf;
  5855. rc = msm_audio_ion_alloc(&buf[0].dma_buf,
  5856. bufsz * bufcnt,
  5857. &buf[0].phys, &len,
  5858. &buf[0].data);
  5859. if (rc) {
  5860. pr_err("%s: audio ION alloc failed, rc = %d\n",
  5861. __func__, rc);
  5862. mutex_unlock(&ac->cmd_lock);
  5863. goto fail;
  5864. }
  5865. buf[0].used = dir ^ 1;
  5866. buf[0].size = bufsz;
  5867. buf[0].actual_size = bufsz;
  5868. cnt = 1;
  5869. while (cnt < bufcnt) {
  5870. if (bufsz > 0) {
  5871. buf[cnt].data = buf[0].data + (cnt * bufsz);
  5872. buf[cnt].phys = buf[0].phys + (cnt * bufsz);
  5873. if (!buf[cnt].data) {
  5874. pr_err("%s: Buf alloc failed\n",
  5875. __func__);
  5876. mutex_unlock(&ac->cmd_lock);
  5877. goto fail;
  5878. }
  5879. buf[cnt].used = dir ^ 1;
  5880. buf[cnt].size = bufsz;
  5881. buf[cnt].actual_size = bufsz;
  5882. pr_debug("%s: data[%pK]phys[%pK][%pK]\n", __func__,
  5883. buf[cnt].data,
  5884. &buf[cnt].phys,
  5885. &buf[cnt].phys);
  5886. }
  5887. cnt++;
  5888. }
  5889. ac->port[dir].max_buf_cnt = cnt;
  5890. mutex_unlock(&ac->cmd_lock);
  5891. return 0;
  5892. fail:
  5893. pr_err("%s: jump fail\n", __func__);
  5894. q6afe_audio_client_buf_free_contiguous(dir, ac);
  5895. return -EINVAL;
  5896. }
  5897. EXPORT_SYMBOL(q6afe_audio_client_buf_alloc_contiguous);
  5898. /**
  5899. * afe_memory_map -
  5900. * command to map shared buffers to AFE
  5901. *
  5902. * @dma_addr_p: DMA physical address
  5903. * @dma_buf_sz: shared DMA buffer size
  5904. * @ac: AFE audio client handle
  5905. *
  5906. * Returns 0 on success or error on failure
  5907. */
  5908. int afe_memory_map(phys_addr_t dma_addr_p, u32 dma_buf_sz,
  5909. struct afe_audio_client *ac)
  5910. {
  5911. int ret = 0;
  5912. mutex_lock(&this_afe.afe_cmd_lock);
  5913. ac->mem_map_handle = 0;
  5914. ret = afe_cmd_memory_map(dma_addr_p, dma_buf_sz);
  5915. if (ret < 0) {
  5916. pr_err("%s: afe_cmd_memory_map failed %d\n",
  5917. __func__, ret);
  5918. mutex_unlock(&this_afe.afe_cmd_lock);
  5919. return ret;
  5920. }
  5921. ac->mem_map_handle = this_afe.mmap_handle;
  5922. mutex_unlock(&this_afe.afe_cmd_lock);
  5923. return ret;
  5924. }
  5925. EXPORT_SYMBOL(afe_memory_map);
  5926. int afe_cmd_memory_map(phys_addr_t dma_addr_p, u32 dma_buf_sz)
  5927. {
  5928. int ret = 0;
  5929. int cmd_size = 0;
  5930. void *payload = NULL;
  5931. void *mmap_region_cmd = NULL;
  5932. struct afe_service_cmd_shared_mem_map_regions *mregion = NULL;
  5933. struct afe_service_shared_map_region_payload *mregion_pl = NULL;
  5934. int index = 0;
  5935. pr_debug("%s:\n", __func__);
  5936. if (this_afe.apr == NULL) {
  5937. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  5938. 0xFFFFFFFF, &this_afe);
  5939. pr_debug("%s: Register AFE\n", __func__);
  5940. if (this_afe.apr == NULL) {
  5941. pr_err("%s: Unable to register AFE\n", __func__);
  5942. ret = -ENODEV;
  5943. return ret;
  5944. }
  5945. rtac_set_afe_handle(this_afe.apr);
  5946. }
  5947. if (dma_buf_sz % SZ_4K != 0) {
  5948. /*
  5949. * The memory allocated by msm_audio_ion_alloc is always 4kB
  5950. * aligned, ADSP expects the size to be 4kB aligned as well
  5951. * so re-adjusts the buffer size before passing to ADSP.
  5952. */
  5953. dma_buf_sz = PAGE_ALIGN(dma_buf_sz);
  5954. }
  5955. cmd_size = sizeof(struct afe_service_cmd_shared_mem_map_regions)
  5956. + sizeof(struct afe_service_shared_map_region_payload);
  5957. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  5958. if (!mmap_region_cmd)
  5959. return -ENOMEM;
  5960. mregion = (struct afe_service_cmd_shared_mem_map_regions *)
  5961. mmap_region_cmd;
  5962. mregion->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5963. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5964. mregion->hdr.pkt_size = cmd_size;
  5965. mregion->hdr.src_port = 0;
  5966. mregion->hdr.dest_port = 0;
  5967. mregion->hdr.token = 0;
  5968. mregion->hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS;
  5969. mregion->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  5970. mregion->num_regions = 1;
  5971. mregion->property_flag = 0x00;
  5972. /* Todo */
  5973. index = mregion->hdr.token = IDX_RSVD_2;
  5974. payload = ((u8 *) mmap_region_cmd +
  5975. sizeof(struct afe_service_cmd_shared_mem_map_regions));
  5976. mregion_pl = (struct afe_service_shared_map_region_payload *)payload;
  5977. mregion_pl->shm_addr_lsw = lower_32_bits(dma_addr_p);
  5978. mregion_pl->shm_addr_msw = msm_audio_populate_upper_32_bits(dma_addr_p);
  5979. mregion_pl->mem_size_bytes = dma_buf_sz;
  5980. pr_debug("%s: dma_addr_p 0x%pK , size %d\n", __func__,
  5981. &dma_addr_p, dma_buf_sz);
  5982. this_afe.mmap_handle = 0;
  5983. ret = afe_apr_send_pkt((uint32_t *) mmap_region_cmd,
  5984. &this_afe.wait[index]);
  5985. kfree(mmap_region_cmd);
  5986. return ret;
  5987. }
  5988. int afe_cmd_memory_map_nowait(int port_id, phys_addr_t dma_addr_p,
  5989. u32 dma_buf_sz)
  5990. {
  5991. int ret = 0;
  5992. int cmd_size = 0;
  5993. void *payload = NULL;
  5994. void *mmap_region_cmd = NULL;
  5995. struct afe_service_cmd_shared_mem_map_regions *mregion = NULL;
  5996. struct afe_service_shared_map_region_payload *mregion_pl = NULL;
  5997. int index = 0;
  5998. pr_debug("%s:\n", __func__);
  5999. if (this_afe.apr == NULL) {
  6000. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6001. 0xFFFFFFFF, &this_afe);
  6002. pr_debug("%s: Register AFE\n", __func__);
  6003. if (this_afe.apr == NULL) {
  6004. pr_err("%s: Unable to register AFE\n", __func__);
  6005. ret = -ENODEV;
  6006. return ret;
  6007. }
  6008. rtac_set_afe_handle(this_afe.apr);
  6009. }
  6010. index = q6audio_get_port_index(port_id);
  6011. if (index < 0 || index >= AFE_MAX_PORTS) {
  6012. pr_err("%s: AFE port index[%d] invalid!\n",
  6013. __func__, index);
  6014. return -EINVAL;
  6015. }
  6016. ret = q6audio_validate_port(port_id);
  6017. if (ret < 0) {
  6018. pr_err("%s: Invalid port 0x%x ret %d",
  6019. __func__, port_id, ret);
  6020. return -EINVAL;
  6021. }
  6022. cmd_size = sizeof(struct afe_service_cmd_shared_mem_map_regions)
  6023. + sizeof(struct afe_service_shared_map_region_payload);
  6024. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  6025. if (!mmap_region_cmd)
  6026. return -ENOMEM;
  6027. mregion = (struct afe_service_cmd_shared_mem_map_regions *)
  6028. mmap_region_cmd;
  6029. mregion->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6030. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6031. mregion->hdr.pkt_size = sizeof(mregion);
  6032. mregion->hdr.src_port = 0;
  6033. mregion->hdr.dest_port = 0;
  6034. mregion->hdr.token = 0;
  6035. mregion->hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS;
  6036. mregion->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  6037. mregion->num_regions = 1;
  6038. mregion->property_flag = 0x00;
  6039. payload = ((u8 *) mmap_region_cmd +
  6040. sizeof(struct afe_service_cmd_shared_mem_map_regions));
  6041. mregion_pl = (struct afe_service_shared_map_region_payload *)payload;
  6042. mregion_pl->shm_addr_lsw = lower_32_bits(dma_addr_p);
  6043. mregion_pl->shm_addr_msw = msm_audio_populate_upper_32_bits(dma_addr_p);
  6044. mregion_pl->mem_size_bytes = dma_buf_sz;
  6045. ret = afe_apr_send_pkt(mmap_region_cmd, NULL);
  6046. if (ret)
  6047. pr_err("%s: AFE memory map cmd failed %d\n",
  6048. __func__, ret);
  6049. kfree(mmap_region_cmd);
  6050. return ret;
  6051. }
  6052. /**
  6053. * q6afe_audio_client_buf_free_contiguous -
  6054. * frees the shared contiguous memory
  6055. *
  6056. * @dir: RX or TX direction of port
  6057. * @ac: AFE audio client handle
  6058. *
  6059. */
  6060. int q6afe_audio_client_buf_free_contiguous(unsigned int dir,
  6061. struct afe_audio_client *ac)
  6062. {
  6063. struct afe_audio_port_data *port;
  6064. int cnt = 0;
  6065. mutex_lock(&ac->cmd_lock);
  6066. port = &ac->port[dir];
  6067. if (!port->buf) {
  6068. pr_err("%s: buf is null\n", __func__);
  6069. mutex_unlock(&ac->cmd_lock);
  6070. return 0;
  6071. }
  6072. cnt = port->max_buf_cnt - 1;
  6073. if (port->buf[0].data) {
  6074. pr_debug("%s: data[%pK], phys[%pK], dma_buf[%pK]\n",
  6075. __func__,
  6076. port->buf[0].data,
  6077. &port->buf[0].phys,
  6078. port->buf[0].dma_buf);
  6079. msm_audio_ion_free(port->buf[0].dma_buf);
  6080. port->buf[0].dma_buf = NULL;
  6081. }
  6082. while (cnt >= 0) {
  6083. port->buf[cnt].data = NULL;
  6084. port->buf[cnt].phys = 0;
  6085. cnt--;
  6086. }
  6087. port->max_buf_cnt = 0;
  6088. kfree(port->buf);
  6089. port->buf = NULL;
  6090. mutex_unlock(&ac->cmd_lock);
  6091. return 0;
  6092. }
  6093. EXPORT_SYMBOL(q6afe_audio_client_buf_free_contiguous);
  6094. /**
  6095. * q6afe_audio_client_free -
  6096. * frees the audio client from AFE
  6097. *
  6098. * @ac: AFE audio client handle
  6099. *
  6100. */
  6101. void q6afe_audio_client_free(struct afe_audio_client *ac)
  6102. {
  6103. int loopcnt;
  6104. struct afe_audio_port_data *port;
  6105. if (!ac) {
  6106. pr_err("%s: audio client is NULL\n", __func__);
  6107. return;
  6108. }
  6109. for (loopcnt = 0; loopcnt <= OUT; loopcnt++) {
  6110. port = &ac->port[loopcnt];
  6111. if (!port->buf)
  6112. continue;
  6113. pr_debug("%s: loopcnt = %d\n", __func__, loopcnt);
  6114. q6afe_audio_client_buf_free_contiguous(loopcnt, ac);
  6115. }
  6116. kfree(ac);
  6117. }
  6118. EXPORT_SYMBOL(q6afe_audio_client_free);
  6119. /**
  6120. * afe_cmd_memory_unmap -
  6121. * command to unmap memory for AFE shared buffer
  6122. *
  6123. * @mem_map_handle: memory map handle to be unmapped
  6124. *
  6125. * Returns 0 on success or error on failure
  6126. */
  6127. int afe_cmd_memory_unmap(u32 mem_map_handle)
  6128. {
  6129. int ret = 0;
  6130. struct afe_service_cmd_shared_mem_unmap_regions mregion;
  6131. int index = 0;
  6132. pr_debug("%s: handle 0x%x\n", __func__, mem_map_handle);
  6133. if (this_afe.apr == NULL) {
  6134. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6135. 0xFFFFFFFF, &this_afe);
  6136. pr_debug("%s: Register AFE\n", __func__);
  6137. if (this_afe.apr == NULL) {
  6138. pr_err("%s: Unable to register AFE\n", __func__);
  6139. ret = -ENODEV;
  6140. return ret;
  6141. }
  6142. rtac_set_afe_handle(this_afe.apr);
  6143. }
  6144. mregion.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6145. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6146. mregion.hdr.pkt_size = sizeof(mregion);
  6147. mregion.hdr.src_port = 0;
  6148. mregion.hdr.dest_port = 0;
  6149. mregion.hdr.token = 0;
  6150. mregion.hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS;
  6151. mregion.mem_map_handle = mem_map_handle;
  6152. /* Todo */
  6153. index = mregion.hdr.token = IDX_RSVD_2;
  6154. atomic_set(&this_afe.status, 0);
  6155. ret = afe_apr_send_pkt(&mregion, &this_afe.wait[index]);
  6156. if (ret)
  6157. pr_err("%s: AFE memory unmap cmd failed %d\n",
  6158. __func__, ret);
  6159. return ret;
  6160. }
  6161. EXPORT_SYMBOL(afe_cmd_memory_unmap);
  6162. int afe_cmd_memory_unmap_nowait(u32 mem_map_handle)
  6163. {
  6164. int ret = 0;
  6165. struct afe_service_cmd_shared_mem_unmap_regions mregion;
  6166. pr_debug("%s: handle 0x%x\n", __func__, mem_map_handle);
  6167. if (this_afe.apr == NULL) {
  6168. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6169. 0xFFFFFFFF, &this_afe);
  6170. pr_debug("%s: Register AFE\n", __func__);
  6171. if (this_afe.apr == NULL) {
  6172. pr_err("%s: Unable to register AFE\n", __func__);
  6173. ret = -ENODEV;
  6174. return ret;
  6175. }
  6176. rtac_set_afe_handle(this_afe.apr);
  6177. }
  6178. mregion.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6179. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6180. mregion.hdr.pkt_size = sizeof(mregion);
  6181. mregion.hdr.src_port = 0;
  6182. mregion.hdr.dest_port = 0;
  6183. mregion.hdr.token = 0;
  6184. mregion.hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS;
  6185. mregion.mem_map_handle = mem_map_handle;
  6186. ret = afe_apr_send_pkt(&mregion, NULL);
  6187. if (ret)
  6188. pr_err("%s: AFE memory unmap cmd failed %d\n",
  6189. __func__, ret);
  6190. return ret;
  6191. }
  6192. /**
  6193. * afe_register_get_events -
  6194. * register for events from proxy port
  6195. *
  6196. * @port_id: Port ID to register events
  6197. * @cb: callback function to invoke for events from proxy port
  6198. * @private_data: private data to sent back in callback fn
  6199. *
  6200. * Returns 0 on success or error on failure
  6201. */
  6202. int afe_register_get_events(u16 port_id,
  6203. void (*cb)(uint32_t opcode,
  6204. uint32_t token, uint32_t *payload, void *priv),
  6205. void *private_data)
  6206. {
  6207. int ret = 0;
  6208. struct afe_service_cmd_register_rt_port_driver rtproxy;
  6209. pr_debug("%s: port_id: 0x%x\n", __func__, port_id);
  6210. if (this_afe.apr == NULL) {
  6211. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6212. 0xFFFFFFFF, &this_afe);
  6213. pr_debug("%s: Register AFE\n", __func__);
  6214. if (this_afe.apr == NULL) {
  6215. pr_err("%s: Unable to register AFE\n", __func__);
  6216. ret = -ENODEV;
  6217. return ret;
  6218. }
  6219. rtac_set_afe_handle(this_afe.apr);
  6220. }
  6221. if ((port_id == RT_PROXY_DAI_002_RX) ||
  6222. (port_id == RT_PROXY_DAI_001_TX) ||
  6223. (port_id == RT_PROXY_DAI_003_TX)) {
  6224. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  6225. } else {
  6226. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  6227. return -EINVAL;
  6228. }
  6229. if (port_id == RT_PROXY_PORT_001_TX) {
  6230. this_afe.tx_cb = cb;
  6231. this_afe.tx_private_data = private_data;
  6232. } else if (port_id == RT_PROXY_PORT_001_RX ||
  6233. port_id == RT_PROXY_PORT_002_RX) {
  6234. this_afe.rx_cb = cb;
  6235. this_afe.rx_private_data = private_data;
  6236. }
  6237. rtproxy.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6238. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6239. rtproxy.hdr.pkt_size = sizeof(rtproxy);
  6240. rtproxy.hdr.src_port = 1;
  6241. rtproxy.hdr.dest_port = 1;
  6242. rtproxy.hdr.opcode = AFE_SERVICE_CMD_REGISTER_RT_PORT_DRIVER;
  6243. rtproxy.port_id = port_id;
  6244. rtproxy.reserved = 0;
  6245. ret = afe_apr_send_pkt(&rtproxy, NULL);
  6246. if (ret)
  6247. pr_err("%s: AFE reg. rtproxy_event failed %d\n",
  6248. __func__, ret);
  6249. return ret;
  6250. }
  6251. EXPORT_SYMBOL(afe_register_get_events);
  6252. /**
  6253. * afe_unregister_get_events -
  6254. * unregister for events from proxy port
  6255. *
  6256. * @port_id: Port ID to unregister events
  6257. *
  6258. * Returns 0 on success or error on failure
  6259. */
  6260. int afe_unregister_get_events(u16 port_id)
  6261. {
  6262. int ret = 0;
  6263. struct afe_service_cmd_unregister_rt_port_driver rtproxy;
  6264. int index = 0;
  6265. pr_debug("%s:\n", __func__);
  6266. if (this_afe.apr == NULL) {
  6267. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6268. 0xFFFFFFFF, &this_afe);
  6269. pr_debug("%s: Register AFE\n", __func__);
  6270. if (this_afe.apr == NULL) {
  6271. pr_err("%s: Unable to register AFE\n", __func__);
  6272. ret = -ENODEV;
  6273. return ret;
  6274. }
  6275. rtac_set_afe_handle(this_afe.apr);
  6276. }
  6277. if ((port_id == RT_PROXY_DAI_002_RX) ||
  6278. (port_id == RT_PROXY_DAI_001_TX) ||
  6279. (port_id == RT_PROXY_DAI_003_TX)) {
  6280. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  6281. } else {
  6282. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  6283. return -EINVAL;
  6284. }
  6285. index = q6audio_get_port_index(port_id);
  6286. if (index < 0 || index >= AFE_MAX_PORTS) {
  6287. pr_err("%s: AFE port index[%d] invalid!\n",
  6288. __func__, index);
  6289. return -EINVAL;
  6290. }
  6291. ret = q6audio_validate_port(port_id);
  6292. if (ret < 0) {
  6293. pr_err("%s: Invalid port 0x%x ret %d", __func__, port_id, ret);
  6294. return -EINVAL;
  6295. }
  6296. rtproxy.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6297. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6298. rtproxy.hdr.pkt_size = sizeof(rtproxy);
  6299. rtproxy.hdr.src_port = 0;
  6300. rtproxy.hdr.dest_port = 0;
  6301. rtproxy.hdr.token = 0;
  6302. rtproxy.hdr.opcode = AFE_SERVICE_CMD_UNREGISTER_RT_PORT_DRIVER;
  6303. rtproxy.port_id = port_id;
  6304. rtproxy.reserved = 0;
  6305. rtproxy.hdr.token = index;
  6306. if (port_id == RT_PROXY_PORT_001_TX) {
  6307. this_afe.tx_cb = NULL;
  6308. this_afe.tx_private_data = NULL;
  6309. } else if (port_id == RT_PROXY_PORT_001_RX ||
  6310. port_id == RT_PROXY_PORT_002_RX) {
  6311. this_afe.rx_cb = NULL;
  6312. this_afe.rx_private_data = NULL;
  6313. }
  6314. ret = afe_apr_send_pkt(&rtproxy, &this_afe.wait[index]);
  6315. if (ret)
  6316. pr_err("%s: AFE enable Unreg. rtproxy_event failed %d\n",
  6317. __func__, ret);
  6318. return ret;
  6319. }
  6320. EXPORT_SYMBOL(afe_unregister_get_events);
  6321. /**
  6322. * afe_rt_proxy_port_write -
  6323. * command for AFE RT proxy port write
  6324. *
  6325. * @buf_addr_p: Physical buffer address with
  6326. * playback data to proxy port
  6327. * @mem_map_handle: memory map handle of write buffer
  6328. * @bytes: number of bytes to write
  6329. *
  6330. * Returns 0 on success or error on failure
  6331. */
  6332. int afe_rt_proxy_port_write(phys_addr_t buf_addr_p,
  6333. u32 mem_map_handle, int bytes)
  6334. {
  6335. int ret = 0;
  6336. struct afe_port_data_cmd_rt_proxy_port_write_v2 afecmd_wr;
  6337. if (this_afe.apr == NULL) {
  6338. pr_err("%s: register to AFE is not done\n", __func__);
  6339. ret = -ENODEV;
  6340. return ret;
  6341. }
  6342. pr_debug("%s: buf_addr_p = 0x%pK bytes = %d\n", __func__,
  6343. &buf_addr_p, bytes);
  6344. afecmd_wr.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6345. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6346. afecmd_wr.hdr.pkt_size = sizeof(afecmd_wr);
  6347. afecmd_wr.hdr.src_port = 0;
  6348. afecmd_wr.hdr.dest_port = 0;
  6349. afecmd_wr.hdr.token = 0;
  6350. afecmd_wr.hdr.opcode = AFE_PORT_DATA_CMD_RT_PROXY_PORT_WRITE_V2;
  6351. afecmd_wr.port_id = RT_PROXY_PORT_001_TX;
  6352. afecmd_wr.buffer_address_lsw = lower_32_bits(buf_addr_p);
  6353. afecmd_wr.buffer_address_msw =
  6354. msm_audio_populate_upper_32_bits(buf_addr_p);
  6355. afecmd_wr.mem_map_handle = mem_map_handle;
  6356. afecmd_wr.available_bytes = bytes;
  6357. afecmd_wr.reserved = 0;
  6358. /*
  6359. * Do not call afe_apr_send_pkt() here as it acquires
  6360. * a mutex lock inside and this function gets called in
  6361. * interrupt context leading to scheduler crash
  6362. */
  6363. atomic_set(&this_afe.status, 0);
  6364. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &afecmd_wr);
  6365. if (ret < 0) {
  6366. pr_err("%s: AFE rtproxy write to port 0x%x failed %d\n",
  6367. __func__, afecmd_wr.port_id, ret);
  6368. ret = -EINVAL;
  6369. }
  6370. return ret;
  6371. }
  6372. EXPORT_SYMBOL(afe_rt_proxy_port_write);
  6373. /**
  6374. * afe_rt_proxy_port_read -
  6375. * command for AFE RT proxy port read
  6376. *
  6377. * @buf_addr_p: Physical buffer address to fill read data
  6378. * @mem_map_handle: memory map handle for buffer read
  6379. * @bytes: number of bytes to read
  6380. * @id: afe virtual port id
  6381. *
  6382. * Returns 0 on success or error on failure
  6383. */
  6384. int afe_rt_proxy_port_read(phys_addr_t buf_addr_p,
  6385. u32 mem_map_handle, int bytes, int id)
  6386. {
  6387. int ret = 0;
  6388. struct afe_port_data_cmd_rt_proxy_port_read_v2 afecmd_rd;
  6389. int port_id = VIRTUAL_ID_TO_PORTID(id);
  6390. if (this_afe.apr == NULL) {
  6391. pr_err("%s: register to AFE is not done\n", __func__);
  6392. ret = -ENODEV;
  6393. return ret;
  6394. }
  6395. pr_debug("%s: buf_addr_p = 0x%pK bytes = %d\n", __func__,
  6396. &buf_addr_p, bytes);
  6397. afecmd_rd.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6398. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6399. afecmd_rd.hdr.pkt_size = sizeof(afecmd_rd);
  6400. afecmd_rd.hdr.src_port = 0;
  6401. afecmd_rd.hdr.dest_port = 0;
  6402. afecmd_rd.hdr.token = 0;
  6403. afecmd_rd.hdr.opcode = AFE_PORT_DATA_CMD_RT_PROXY_PORT_READ_V2;
  6404. afecmd_rd.port_id = port_id;
  6405. afecmd_rd.buffer_address_lsw = lower_32_bits(buf_addr_p);
  6406. afecmd_rd.buffer_address_msw =
  6407. msm_audio_populate_upper_32_bits(buf_addr_p);
  6408. afecmd_rd.available_bytes = bytes;
  6409. afecmd_rd.mem_map_handle = mem_map_handle;
  6410. /*
  6411. * Do not call afe_apr_send_pkt() here as it acquires
  6412. * a mutex lock inside and this function gets called in
  6413. * interrupt context leading to scheduler crash
  6414. */
  6415. atomic_set(&this_afe.status, 0);
  6416. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &afecmd_rd);
  6417. if (ret < 0) {
  6418. pr_err("%s: AFE rtproxy read cmd to port 0x%x failed %d\n",
  6419. __func__, afecmd_rd.port_id, ret);
  6420. ret = -EINVAL;
  6421. }
  6422. return ret;
  6423. }
  6424. EXPORT_SYMBOL(afe_rt_proxy_port_read);
  6425. #ifdef CONFIG_DEBUG_FS
  6426. static struct dentry *debugfs_afelb;
  6427. static struct dentry *debugfs_afelb_gain;
  6428. static int afe_debug_open(struct inode *inode, struct file *file)
  6429. {
  6430. file->private_data = inode->i_private;
  6431. pr_info("%s: debug intf %s\n", __func__, (char *) file->private_data);
  6432. return 0;
  6433. }
  6434. static int afe_get_parameters(char *buf, long int *param1, int num_of_par)
  6435. {
  6436. char *token;
  6437. int base, cnt;
  6438. token = strsep(&buf, " ");
  6439. for (cnt = 0; cnt < num_of_par; cnt++) {
  6440. if (token != NULL) {
  6441. if ((token[1] == 'x') || (token[1] == 'X'))
  6442. base = 16;
  6443. else
  6444. base = 10;
  6445. if (kstrtoul(token, base, &param1[cnt]) != 0) {
  6446. pr_err("%s: kstrtoul failed\n",
  6447. __func__);
  6448. return -EINVAL;
  6449. }
  6450. token = strsep(&buf, " ");
  6451. } else {
  6452. pr_err("%s: token NULL\n", __func__);
  6453. return -EINVAL;
  6454. }
  6455. }
  6456. return 0;
  6457. }
  6458. #define AFE_LOOPBACK_ON (1)
  6459. #define AFE_LOOPBACK_OFF (0)
  6460. static ssize_t afe_debug_write(struct file *filp,
  6461. const char __user *ubuf, size_t cnt, loff_t *ppos)
  6462. {
  6463. char *lb_str = filp->private_data;
  6464. char lbuf[32];
  6465. int rc;
  6466. unsigned long param[5];
  6467. if (cnt > sizeof(lbuf) - 1) {
  6468. pr_err("%s: cnt %zd size %zd\n", __func__, cnt, sizeof(lbuf)-1);
  6469. return -EINVAL;
  6470. }
  6471. rc = copy_from_user(lbuf, ubuf, cnt);
  6472. if (rc) {
  6473. pr_err("%s: copy from user failed %d\n", __func__, rc);
  6474. return -EFAULT;
  6475. }
  6476. lbuf[cnt] = '\0';
  6477. if (!strcmp(lb_str, "afe_loopback")) {
  6478. rc = afe_get_parameters(lbuf, param, 3);
  6479. if (!rc) {
  6480. pr_info("%s: %lu %lu %lu\n", lb_str, param[0], param[1],
  6481. param[2]);
  6482. if ((param[0] != AFE_LOOPBACK_ON) && (param[0] !=
  6483. AFE_LOOPBACK_OFF)) {
  6484. pr_err("%s: Error, parameter 0 incorrect\n",
  6485. __func__);
  6486. rc = -EINVAL;
  6487. goto afe_error;
  6488. }
  6489. if ((q6audio_validate_port(param[1]) < 0) ||
  6490. (q6audio_validate_port(param[2])) < 0) {
  6491. pr_err("%s: Error, invalid afe port\n",
  6492. __func__);
  6493. }
  6494. if (this_afe.apr == NULL) {
  6495. pr_err("%s: Error, AFE not opened\n", __func__);
  6496. rc = -EINVAL;
  6497. } else {
  6498. rc = afe_loopback(param[0], param[1], param[2]);
  6499. }
  6500. } else {
  6501. pr_err("%s: Error, invalid parameters\n", __func__);
  6502. rc = -EINVAL;
  6503. }
  6504. } else if (!strcmp(lb_str, "afe_loopback_gain")) {
  6505. rc = afe_get_parameters(lbuf, param, 2);
  6506. if (!rc) {
  6507. pr_info("%s: %s %lu %lu\n",
  6508. __func__, lb_str, param[0], param[1]);
  6509. rc = q6audio_validate_port(param[0]);
  6510. if (rc < 0) {
  6511. pr_err("%s: Error, invalid afe port %d %lu\n",
  6512. __func__, rc, param[0]);
  6513. rc = -EINVAL;
  6514. goto afe_error;
  6515. }
  6516. if (param[1] > 100) {
  6517. pr_err("%s: Error, volume should be 0 to 100 percentage param = %lu\n",
  6518. __func__, param[1]);
  6519. rc = -EINVAL;
  6520. goto afe_error;
  6521. }
  6522. param[1] = (Q6AFE_MAX_VOLUME * param[1]) / 100;
  6523. if (this_afe.apr == NULL) {
  6524. pr_err("%s: Error, AFE not opened\n", __func__);
  6525. rc = -EINVAL;
  6526. } else {
  6527. rc = afe_loopback_gain(param[0], param[1]);
  6528. }
  6529. } else {
  6530. pr_err("%s: Error, invalid parameters\n", __func__);
  6531. rc = -EINVAL;
  6532. }
  6533. }
  6534. afe_error:
  6535. if (rc == 0)
  6536. rc = cnt;
  6537. else
  6538. pr_err("%s: rc = %d\n", __func__, rc);
  6539. return rc;
  6540. }
  6541. static const struct file_operations afe_debug_fops = {
  6542. .open = afe_debug_open,
  6543. .write = afe_debug_write
  6544. };
  6545. static void config_debug_fs_init(void)
  6546. {
  6547. debugfs_afelb = debugfs_create_file("afe_loopback",
  6548. 0664, NULL, (void *) "afe_loopback",
  6549. &afe_debug_fops);
  6550. debugfs_afelb_gain = debugfs_create_file("afe_loopback_gain",
  6551. 0664, NULL, (void *) "afe_loopback_gain",
  6552. &afe_debug_fops);
  6553. }
  6554. static void config_debug_fs_exit(void)
  6555. {
  6556. debugfs_remove(debugfs_afelb);
  6557. debugfs_remove(debugfs_afelb_gain);
  6558. }
  6559. #else
  6560. static void config_debug_fs_init(void)
  6561. {
  6562. }
  6563. static void config_debug_fs_exit(void)
  6564. {
  6565. }
  6566. #endif
  6567. /**
  6568. * afe_set_dtmf_gen_rx_portid -
  6569. * Set port_id for DTMF tone generation
  6570. *
  6571. * @port_id: AFE port id
  6572. * @set: set or reset port id value for dtmf gen
  6573. *
  6574. */
  6575. void afe_set_dtmf_gen_rx_portid(u16 port_id, int set)
  6576. {
  6577. if (set)
  6578. this_afe.dtmf_gen_rx_portid = port_id;
  6579. else if (this_afe.dtmf_gen_rx_portid == port_id)
  6580. this_afe.dtmf_gen_rx_portid = -1;
  6581. }
  6582. EXPORT_SYMBOL(afe_set_dtmf_gen_rx_portid);
  6583. /**
  6584. * afe_dtmf_generate_rx - command to generate AFE DTMF RX
  6585. *
  6586. * @duration_in_ms: Duration in ms for dtmf tone
  6587. * @high_freq: Higher frequency for dtmf
  6588. * @low_freq: lower frequency for dtmf
  6589. * @gain: Gain value for DTMF tone
  6590. *
  6591. * Returns 0 on success, appropriate error code otherwise
  6592. */
  6593. int afe_dtmf_generate_rx(int64_t duration_in_ms,
  6594. uint16_t high_freq,
  6595. uint16_t low_freq, uint16_t gain)
  6596. {
  6597. int ret = 0;
  6598. int index = 0;
  6599. struct afe_dtmf_generation_command cmd_dtmf;
  6600. pr_debug("%s: DTMF AFE Gen\n", __func__);
  6601. if (afe_validate_port(this_afe.dtmf_gen_rx_portid) < 0) {
  6602. pr_err("%s: Failed : Invalid Port id = 0x%x\n",
  6603. __func__, this_afe.dtmf_gen_rx_portid);
  6604. ret = -EINVAL;
  6605. goto fail_cmd;
  6606. }
  6607. if (this_afe.apr == NULL) {
  6608. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6609. 0xFFFFFFFF, &this_afe);
  6610. pr_debug("%s: Register AFE\n", __func__);
  6611. if (this_afe.apr == NULL) {
  6612. pr_err("%s: Unable to register AFE\n", __func__);
  6613. ret = -ENODEV;
  6614. return ret;
  6615. }
  6616. rtac_set_afe_handle(this_afe.apr);
  6617. }
  6618. pr_debug("%s: dur=%lld: hfreq=%d lfreq=%d gain=%d portid=0x%x\n",
  6619. __func__,
  6620. duration_in_ms, high_freq, low_freq, gain,
  6621. this_afe.dtmf_gen_rx_portid);
  6622. cmd_dtmf.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6623. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6624. cmd_dtmf.hdr.pkt_size = sizeof(cmd_dtmf);
  6625. cmd_dtmf.hdr.src_port = 0;
  6626. cmd_dtmf.hdr.dest_port = 0;
  6627. cmd_dtmf.hdr.token = 0;
  6628. cmd_dtmf.hdr.opcode = AFE_PORTS_CMD_DTMF_CTL;
  6629. cmd_dtmf.duration_in_ms = duration_in_ms;
  6630. cmd_dtmf.high_freq = high_freq;
  6631. cmd_dtmf.low_freq = low_freq;
  6632. cmd_dtmf.gain = gain;
  6633. cmd_dtmf.num_ports = 1;
  6634. cmd_dtmf.port_ids = q6audio_get_port_id(this_afe.dtmf_gen_rx_portid);
  6635. index = q6audio_get_port_index(this_afe.dtmf_gen_rx_portid);
  6636. if (index < 0 || index >= AFE_MAX_PORTS) {
  6637. pr_err("%s: AFE port index[%d] invalid!\n",
  6638. __func__, index);
  6639. ret = -EINVAL;
  6640. goto fail_cmd;
  6641. }
  6642. ret = afe_apr_send_pkt((uint32_t *) &cmd_dtmf,
  6643. &this_afe.wait[index]);
  6644. return ret;
  6645. fail_cmd:
  6646. pr_err("%s: failed %d\n", __func__, ret);
  6647. return ret;
  6648. }
  6649. EXPORT_SYMBOL(afe_dtmf_generate_rx);
  6650. static int afe_sidetone_iir(u16 tx_port_id)
  6651. {
  6652. int ret;
  6653. uint16_t size = 0;
  6654. int cal_index = AFE_SIDETONE_IIR_CAL;
  6655. int iir_pregain = 0;
  6656. int iir_num_biquad_stages = 0;
  6657. int iir_enable;
  6658. struct cal_block_data *cal_block;
  6659. int mid;
  6660. struct afe_mod_enable_param enable;
  6661. struct afe_sidetone_iir_filter_config_params filter_data;
  6662. struct param_hdr_v3 param_hdr;
  6663. u8 *packed_param_data = NULL;
  6664. u32 packed_param_size = 0;
  6665. u32 single_param_size = 0;
  6666. struct audio_cal_info_sidetone_iir *st_iir_cal_info = NULL;
  6667. memset(&enable, 0, sizeof(enable));
  6668. memset(&filter_data, 0, sizeof(filter_data));
  6669. memset(&param_hdr, 0, sizeof(param_hdr));
  6670. if (this_afe.cal_data[cal_index] == NULL) {
  6671. pr_err("%s: cal data is NULL\n", __func__);
  6672. ret = -EINVAL;
  6673. goto done;
  6674. }
  6675. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  6676. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  6677. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  6678. pr_err("%s: cal_block not found\n ", __func__);
  6679. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  6680. ret = -EINVAL;
  6681. goto done;
  6682. }
  6683. /* Cache data from cal block while inside lock to reduce locked time */
  6684. st_iir_cal_info =
  6685. (struct audio_cal_info_sidetone_iir *) cal_block->cal_info;
  6686. iir_pregain = st_iir_cal_info->pregain;
  6687. iir_enable = st_iir_cal_info->iir_enable;
  6688. iir_num_biquad_stages = st_iir_cal_info->num_biquad_stages;
  6689. mid = st_iir_cal_info->mid;
  6690. /*
  6691. * calculate the actual size of payload based on no of stages
  6692. * enabled in calibration
  6693. */
  6694. size = (MAX_SIDETONE_IIR_DATA_SIZE / MAX_NO_IIR_FILTER_STAGE) *
  6695. iir_num_biquad_stages;
  6696. /*
  6697. * For an odd number of stages, 2 bytes of padding are
  6698. * required at the end of the payload.
  6699. */
  6700. if (iir_num_biquad_stages % 2) {
  6701. pr_debug("%s: adding 2 to size:%d\n", __func__, size);
  6702. size = size + 2;
  6703. }
  6704. memcpy(&filter_data.iir_config, &st_iir_cal_info->iir_config, size);
  6705. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  6706. packed_param_size =
  6707. sizeof(param_hdr) * 2 + sizeof(enable) + sizeof(filter_data);
  6708. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  6709. if (!packed_param_data)
  6710. return -ENOMEM;
  6711. packed_param_size = 0;
  6712. /*
  6713. * Set IIR enable params
  6714. */
  6715. param_hdr.module_id = mid;
  6716. param_hdr.instance_id = INSTANCE_ID_0;
  6717. param_hdr.param_id = AFE_PARAM_ID_ENABLE;
  6718. param_hdr.param_size = sizeof(enable);
  6719. enable.enable = iir_enable;
  6720. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  6721. (u8 *) &enable, &single_param_size);
  6722. if (ret) {
  6723. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  6724. ret);
  6725. goto done;
  6726. }
  6727. packed_param_size += single_param_size;
  6728. /*
  6729. * Set IIR filter config params
  6730. */
  6731. param_hdr.module_id = mid;
  6732. param_hdr.instance_id = INSTANCE_ID_0;
  6733. param_hdr.param_id = AFE_PARAM_ID_SIDETONE_IIR_FILTER_CONFIG;
  6734. param_hdr.param_size = sizeof(filter_data.num_biquad_stages) +
  6735. sizeof(filter_data.pregain) + size;
  6736. filter_data.num_biquad_stages = iir_num_biquad_stages;
  6737. filter_data.pregain = iir_pregain;
  6738. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  6739. &param_hdr, (u8 *) &filter_data,
  6740. &single_param_size);
  6741. if (ret) {
  6742. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  6743. ret);
  6744. goto done;
  6745. }
  6746. packed_param_size += single_param_size;
  6747. pr_debug("%s: tx(0x%x)mid(0x%x)iir_en(%d)stg(%d)gain(0x%x)size(%d)\n",
  6748. __func__, tx_port_id, mid, enable.enable,
  6749. filter_data.num_biquad_stages, filter_data.pregain,
  6750. param_hdr.param_size);
  6751. ret = q6afe_set_params(tx_port_id, q6audio_get_port_index(tx_port_id),
  6752. NULL, packed_param_data, packed_param_size);
  6753. if (ret)
  6754. pr_err("%s: AFE sidetone failed for tx_port(0x%x)\n",
  6755. __func__, tx_port_id);
  6756. done:
  6757. kfree(packed_param_data);
  6758. return ret;
  6759. }
  6760. static int afe_sidetone(u16 tx_port_id, u16 rx_port_id, bool enable)
  6761. {
  6762. int ret;
  6763. int cal_index = AFE_SIDETONE_CAL;
  6764. int sidetone_gain;
  6765. int sidetone_enable;
  6766. struct cal_block_data *cal_block;
  6767. int mid = 0;
  6768. struct afe_loopback_sidetone_gain gain_data;
  6769. struct loopback_cfg_data cfg_data;
  6770. struct param_hdr_v3 param_hdr;
  6771. u8 *packed_param_data = NULL;
  6772. u32 packed_param_size = 0;
  6773. u32 single_param_size = 0;
  6774. struct audio_cal_info_sidetone *st_cal_info = NULL;
  6775. if (this_afe.cal_data[cal_index] == NULL) {
  6776. pr_err("%s: cal data is NULL\n", __func__);
  6777. ret = -EINVAL;
  6778. goto done;
  6779. }
  6780. memset(&gain_data, 0, sizeof(gain_data));
  6781. memset(&cfg_data, 0, sizeof(cfg_data));
  6782. memset(&param_hdr, 0, sizeof(param_hdr));
  6783. packed_param_size =
  6784. sizeof(param_hdr) * 2 + sizeof(gain_data) + sizeof(cfg_data);
  6785. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  6786. if (!packed_param_data)
  6787. return -ENOMEM;
  6788. packed_param_size = 0;
  6789. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  6790. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  6791. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  6792. pr_err("%s: cal_block not found\n", __func__);
  6793. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  6794. ret = -EINVAL;
  6795. goto done;
  6796. }
  6797. /* Cache data from cal block while inside lock to reduce locked time */
  6798. st_cal_info = (struct audio_cal_info_sidetone *) cal_block->cal_info;
  6799. sidetone_gain = st_cal_info->gain;
  6800. sidetone_enable = st_cal_info->enable;
  6801. mid = st_cal_info->mid;
  6802. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  6803. /* Set gain data. */
  6804. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  6805. param_hdr.instance_id = INSTANCE_ID_0;
  6806. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_GAIN_PER_PATH;
  6807. param_hdr.param_size = sizeof(struct afe_loopback_sidetone_gain);
  6808. gain_data.rx_port_id = rx_port_id;
  6809. gain_data.gain = sidetone_gain;
  6810. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  6811. (u8 *) &gain_data, &single_param_size);
  6812. if (ret) {
  6813. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  6814. ret);
  6815. goto done;
  6816. }
  6817. packed_param_size += single_param_size;
  6818. /* Set configuration data. */
  6819. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  6820. param_hdr.instance_id = INSTANCE_ID_0;
  6821. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_CONFIG;
  6822. param_hdr.param_size = sizeof(struct loopback_cfg_data);
  6823. cfg_data.loopback_cfg_minor_version = AFE_API_VERSION_LOOPBACK_CONFIG;
  6824. cfg_data.dst_port_id = rx_port_id;
  6825. cfg_data.routing_mode = LB_MODE_SIDETONE;
  6826. cfg_data.enable = enable;
  6827. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  6828. &param_hdr, (u8 *) &cfg_data,
  6829. &single_param_size);
  6830. if (ret) {
  6831. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  6832. ret);
  6833. goto done;
  6834. }
  6835. packed_param_size += single_param_size;
  6836. pr_debug("%s rx(0x%x) tx(0x%x) enable(%d) mid(0x%x) gain(%d) sidetone_enable(%d)\n",
  6837. __func__, rx_port_id, tx_port_id,
  6838. enable, mid, sidetone_gain, sidetone_enable);
  6839. ret = q6afe_set_params(tx_port_id, q6audio_get_port_index(tx_port_id),
  6840. NULL, packed_param_data, packed_param_size);
  6841. if (ret)
  6842. pr_err("%s: AFE sidetone send failed for tx_port:%d rx_port:%d ret:%d\n",
  6843. __func__, tx_port_id, rx_port_id, ret);
  6844. done:
  6845. kfree(packed_param_data);
  6846. return ret;
  6847. }
  6848. int afe_sidetone_enable(u16 tx_port_id, u16 rx_port_id, bool enable)
  6849. {
  6850. int ret;
  6851. int index;
  6852. index = q6audio_get_port_index(rx_port_id);
  6853. if (index < 0 || index >= AFE_MAX_PORTS) {
  6854. pr_err("%s: AFE port index[%d] invalid!\n",
  6855. __func__, index);
  6856. ret = -EINVAL;
  6857. goto done;
  6858. }
  6859. if (q6audio_validate_port(rx_port_id) < 0) {
  6860. pr_err("%s: Invalid port 0x%x\n",
  6861. __func__, rx_port_id);
  6862. ret = -EINVAL;
  6863. goto done;
  6864. }
  6865. index = q6audio_get_port_index(tx_port_id);
  6866. if (index < 0 || index >= AFE_MAX_PORTS) {
  6867. pr_err("%s: AFE port index[%d] invalid!\n",
  6868. __func__, index);
  6869. ret = -EINVAL;
  6870. goto done;
  6871. }
  6872. if (q6audio_validate_port(tx_port_id) < 0) {
  6873. pr_err("%s: Invalid port 0x%x\n",
  6874. __func__, tx_port_id);
  6875. ret = -EINVAL;
  6876. goto done;
  6877. }
  6878. if (enable) {
  6879. ret = afe_sidetone_iir(tx_port_id);
  6880. if (ret)
  6881. goto done;
  6882. }
  6883. ret = afe_sidetone(tx_port_id, rx_port_id, enable);
  6884. done:
  6885. return ret;
  6886. }
  6887. /**
  6888. * afe_set_display_stream - command to update AFE dp port params
  6889. *
  6890. * @rx_port_id: AFE port id
  6891. * @stream_idx: dp controller stream index
  6892. * @ctl_idx: dp controller index
  6893. *
  6894. * Returns 0 on success, appropriate error code otherwise
  6895. */
  6896. int afe_set_display_stream(u16 rx_port_id, u32 stream_idx, u32 ctl_idx)
  6897. {
  6898. int ret;
  6899. struct param_hdr_v3 param_hdr;
  6900. u32 packed_param_size = 0;
  6901. u8 *packed_param_data = NULL;
  6902. struct afe_display_stream_idx stream_data;
  6903. struct afe_display_ctl_idx ctl_data;
  6904. u32 single_param_size = 0;
  6905. memset(&param_hdr, 0, sizeof(param_hdr));
  6906. memset(&stream_data, 0, sizeof(stream_data));
  6907. memset(&ctl_data, 0, sizeof(ctl_data));
  6908. packed_param_size =
  6909. sizeof(param_hdr) * 2 + sizeof(stream_data) + sizeof(ctl_data);
  6910. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  6911. if (!packed_param_data)
  6912. return -ENOMEM;
  6913. packed_param_size = 0;
  6914. /* Set stream index */
  6915. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6916. param_hdr.instance_id = INSTANCE_ID_0;
  6917. param_hdr.param_id = AFE_PARAM_ID_HDMI_DP_MST_VID_IDX_CFG;
  6918. param_hdr.param_size = sizeof(struct afe_display_stream_idx);
  6919. stream_data.minor_version = 1;
  6920. stream_data.stream_idx = stream_idx;
  6921. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  6922. (u8 *) &stream_data, &single_param_size);
  6923. if (ret) {
  6924. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  6925. ret);
  6926. goto done;
  6927. }
  6928. packed_param_size += single_param_size;
  6929. /* Set controller dptx index */
  6930. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6931. param_hdr.instance_id = INSTANCE_ID_0;
  6932. param_hdr.param_id = AFE_PARAM_ID_HDMI_DPTX_IDX_CFG;
  6933. param_hdr.param_size = sizeof(struct afe_display_ctl_idx);
  6934. ctl_data.minor_version = 1;
  6935. ctl_data.ctl_idx = ctl_idx;
  6936. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  6937. &param_hdr, (u8 *) &ctl_data,
  6938. &single_param_size);
  6939. if (ret) {
  6940. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  6941. ret);
  6942. goto done;
  6943. }
  6944. packed_param_size += single_param_size;
  6945. pr_debug("%s: rx(0x%x) stream(%d) controller(%d)\n",
  6946. __func__, rx_port_id, stream_idx, ctl_idx);
  6947. ret = q6afe_set_params(rx_port_id, q6audio_get_port_index(rx_port_id),
  6948. NULL, packed_param_data, packed_param_size);
  6949. if (ret)
  6950. pr_err("%s: AFE display stream send failed for rx_port:%d ret:%d\n",
  6951. __func__, rx_port_id, ret);
  6952. done:
  6953. kfree(packed_param_data);
  6954. return ret;
  6955. }
  6956. EXPORT_SYMBOL(afe_set_display_stream);
  6957. int afe_validate_port(u16 port_id)
  6958. {
  6959. int ret;
  6960. switch (port_id) {
  6961. case PRIMARY_I2S_RX:
  6962. case PRIMARY_I2S_TX:
  6963. case AFE_PORT_ID_PRIMARY_PCM_RX:
  6964. case AFE_PORT_ID_PRIMARY_PCM_TX:
  6965. case AFE_PORT_ID_SECONDARY_PCM_RX:
  6966. case AFE_PORT_ID_SECONDARY_PCM_TX:
  6967. case AFE_PORT_ID_TERTIARY_PCM_RX:
  6968. case AFE_PORT_ID_TERTIARY_PCM_TX:
  6969. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  6970. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  6971. case AFE_PORT_ID_QUINARY_PCM_RX:
  6972. case AFE_PORT_ID_QUINARY_PCM_TX:
  6973. case AFE_PORT_ID_SENARY_PCM_RX:
  6974. case AFE_PORT_ID_SENARY_PCM_TX:
  6975. case SECONDARY_I2S_RX:
  6976. case SECONDARY_I2S_TX:
  6977. case MI2S_RX:
  6978. case MI2S_TX:
  6979. case HDMI_RX:
  6980. case DISPLAY_PORT_RX:
  6981. case AFE_PORT_ID_PRIMARY_SPDIF_RX:
  6982. case AFE_PORT_ID_PRIMARY_SPDIF_TX:
  6983. case AFE_PORT_ID_SECONDARY_SPDIF_RX:
  6984. case AFE_PORT_ID_SECONDARY_SPDIF_TX:
  6985. case RSVD_2:
  6986. case RSVD_3:
  6987. case DIGI_MIC_TX:
  6988. case VOICE_RECORD_RX:
  6989. case VOICE_RECORD_TX:
  6990. case VOICE_PLAYBACK_TX:
  6991. case VOICE2_PLAYBACK_TX:
  6992. case SLIMBUS_0_RX:
  6993. case SLIMBUS_0_TX:
  6994. case SLIMBUS_1_RX:
  6995. case SLIMBUS_1_TX:
  6996. case SLIMBUS_2_RX:
  6997. case SLIMBUS_2_TX:
  6998. case SLIMBUS_3_RX:
  6999. case INT_BT_SCO_RX:
  7000. case INT_BT_SCO_TX:
  7001. case INT_BT_A2DP_RX:
  7002. case INT_FM_RX:
  7003. case INT_FM_TX:
  7004. case RT_PROXY_PORT_001_RX:
  7005. case RT_PROXY_PORT_001_TX:
  7006. case SLIMBUS_4_RX:
  7007. case SLIMBUS_4_TX:
  7008. case SLIMBUS_5_RX:
  7009. case SLIMBUS_6_RX:
  7010. case SLIMBUS_6_TX:
  7011. case SLIMBUS_7_RX:
  7012. case SLIMBUS_7_TX:
  7013. case SLIMBUS_8_RX:
  7014. case SLIMBUS_8_TX:
  7015. case SLIMBUS_9_RX:
  7016. case SLIMBUS_9_TX:
  7017. case AFE_PORT_ID_USB_RX:
  7018. case AFE_PORT_ID_USB_TX:
  7019. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  7020. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  7021. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  7022. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  7023. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  7024. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  7025. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  7026. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  7027. case AFE_PORT_ID_QUINARY_MI2S_RX:
  7028. case AFE_PORT_ID_QUINARY_MI2S_TX:
  7029. case AFE_PORT_ID_SENARY_MI2S_RX:
  7030. case AFE_PORT_ID_SENARY_MI2S_TX:
  7031. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  7032. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  7033. case AFE_PORT_ID_PRIMARY_TDM_RX:
  7034. case AFE_PORT_ID_PRIMARY_TDM_TX:
  7035. case AFE_PORT_ID_PRIMARY_TDM_RX_1:
  7036. case AFE_PORT_ID_PRIMARY_TDM_TX_1:
  7037. case AFE_PORT_ID_PRIMARY_TDM_RX_2:
  7038. case AFE_PORT_ID_PRIMARY_TDM_TX_2:
  7039. case AFE_PORT_ID_PRIMARY_TDM_RX_3:
  7040. case AFE_PORT_ID_PRIMARY_TDM_TX_3:
  7041. case AFE_PORT_ID_PRIMARY_TDM_RX_4:
  7042. case AFE_PORT_ID_PRIMARY_TDM_TX_4:
  7043. case AFE_PORT_ID_PRIMARY_TDM_RX_5:
  7044. case AFE_PORT_ID_PRIMARY_TDM_TX_5:
  7045. case AFE_PORT_ID_PRIMARY_TDM_RX_6:
  7046. case AFE_PORT_ID_PRIMARY_TDM_TX_6:
  7047. case AFE_PORT_ID_PRIMARY_TDM_RX_7:
  7048. case AFE_PORT_ID_PRIMARY_TDM_TX_7:
  7049. case AFE_PORT_ID_SECONDARY_TDM_RX:
  7050. case AFE_PORT_ID_SECONDARY_TDM_TX:
  7051. case AFE_PORT_ID_SECONDARY_TDM_RX_1:
  7052. case AFE_PORT_ID_SECONDARY_TDM_TX_1:
  7053. case AFE_PORT_ID_SECONDARY_TDM_RX_2:
  7054. case AFE_PORT_ID_SECONDARY_TDM_TX_2:
  7055. case AFE_PORT_ID_SECONDARY_TDM_RX_3:
  7056. case AFE_PORT_ID_SECONDARY_TDM_TX_3:
  7057. case AFE_PORT_ID_SECONDARY_TDM_RX_4:
  7058. case AFE_PORT_ID_SECONDARY_TDM_TX_4:
  7059. case AFE_PORT_ID_SECONDARY_TDM_RX_5:
  7060. case AFE_PORT_ID_SECONDARY_TDM_TX_5:
  7061. case AFE_PORT_ID_SECONDARY_TDM_RX_6:
  7062. case AFE_PORT_ID_SECONDARY_TDM_TX_6:
  7063. case AFE_PORT_ID_SECONDARY_TDM_RX_7:
  7064. case AFE_PORT_ID_SECONDARY_TDM_TX_7:
  7065. case AFE_PORT_ID_TERTIARY_TDM_RX:
  7066. case AFE_PORT_ID_TERTIARY_TDM_TX:
  7067. case AFE_PORT_ID_TERTIARY_TDM_RX_1:
  7068. case AFE_PORT_ID_TERTIARY_TDM_TX_1:
  7069. case AFE_PORT_ID_TERTIARY_TDM_RX_2:
  7070. case AFE_PORT_ID_TERTIARY_TDM_TX_2:
  7071. case AFE_PORT_ID_TERTIARY_TDM_RX_3:
  7072. case AFE_PORT_ID_TERTIARY_TDM_TX_3:
  7073. case AFE_PORT_ID_TERTIARY_TDM_RX_4:
  7074. case AFE_PORT_ID_TERTIARY_TDM_TX_4:
  7075. case AFE_PORT_ID_TERTIARY_TDM_RX_5:
  7076. case AFE_PORT_ID_TERTIARY_TDM_TX_5:
  7077. case AFE_PORT_ID_TERTIARY_TDM_RX_6:
  7078. case AFE_PORT_ID_TERTIARY_TDM_TX_6:
  7079. case AFE_PORT_ID_TERTIARY_TDM_RX_7:
  7080. case AFE_PORT_ID_TERTIARY_TDM_TX_7:
  7081. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  7082. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  7083. case AFE_PORT_ID_QUATERNARY_TDM_RX_1:
  7084. case AFE_PORT_ID_QUATERNARY_TDM_TX_1:
  7085. case AFE_PORT_ID_QUATERNARY_TDM_RX_2:
  7086. case AFE_PORT_ID_QUATERNARY_TDM_TX_2:
  7087. case AFE_PORT_ID_QUATERNARY_TDM_RX_3:
  7088. case AFE_PORT_ID_QUATERNARY_TDM_TX_3:
  7089. case AFE_PORT_ID_QUATERNARY_TDM_RX_4:
  7090. case AFE_PORT_ID_QUATERNARY_TDM_TX_4:
  7091. case AFE_PORT_ID_QUATERNARY_TDM_RX_5:
  7092. case AFE_PORT_ID_QUATERNARY_TDM_TX_5:
  7093. case AFE_PORT_ID_QUATERNARY_TDM_RX_6:
  7094. case AFE_PORT_ID_QUATERNARY_TDM_TX_6:
  7095. case AFE_PORT_ID_QUATERNARY_TDM_RX_7:
  7096. case AFE_PORT_ID_QUATERNARY_TDM_TX_7:
  7097. case AFE_PORT_ID_QUINARY_TDM_RX:
  7098. case AFE_PORT_ID_QUINARY_TDM_TX:
  7099. case AFE_PORT_ID_QUINARY_TDM_RX_1:
  7100. case AFE_PORT_ID_QUINARY_TDM_TX_1:
  7101. case AFE_PORT_ID_QUINARY_TDM_RX_2:
  7102. case AFE_PORT_ID_QUINARY_TDM_TX_2:
  7103. case AFE_PORT_ID_QUINARY_TDM_RX_3:
  7104. case AFE_PORT_ID_QUINARY_TDM_TX_3:
  7105. case AFE_PORT_ID_QUINARY_TDM_RX_4:
  7106. case AFE_PORT_ID_QUINARY_TDM_TX_4:
  7107. case AFE_PORT_ID_QUINARY_TDM_RX_5:
  7108. case AFE_PORT_ID_QUINARY_TDM_TX_5:
  7109. case AFE_PORT_ID_QUINARY_TDM_RX_6:
  7110. case AFE_PORT_ID_QUINARY_TDM_TX_6:
  7111. case AFE_PORT_ID_QUINARY_TDM_RX_7:
  7112. case AFE_PORT_ID_QUINARY_TDM_TX_7:
  7113. case AFE_PORT_ID_SENARY_TDM_RX:
  7114. case AFE_PORT_ID_SENARY_TDM_TX:
  7115. case AFE_PORT_ID_SENARY_TDM_RX_1:
  7116. case AFE_PORT_ID_SENARY_TDM_TX_1:
  7117. case AFE_PORT_ID_SENARY_TDM_RX_2:
  7118. case AFE_PORT_ID_SENARY_TDM_TX_2:
  7119. case AFE_PORT_ID_SENARY_TDM_RX_3:
  7120. case AFE_PORT_ID_SENARY_TDM_TX_3:
  7121. case AFE_PORT_ID_SENARY_TDM_RX_4:
  7122. case AFE_PORT_ID_SENARY_TDM_TX_4:
  7123. case AFE_PORT_ID_SENARY_TDM_RX_5:
  7124. case AFE_PORT_ID_SENARY_TDM_TX_5:
  7125. case AFE_PORT_ID_SENARY_TDM_RX_6:
  7126. case AFE_PORT_ID_SENARY_TDM_TX_6:
  7127. case AFE_PORT_ID_SENARY_TDM_RX_7:
  7128. case AFE_PORT_ID_SENARY_TDM_TX_7:
  7129. case AFE_PORT_ID_INT0_MI2S_RX:
  7130. case AFE_PORT_ID_INT1_MI2S_RX:
  7131. case AFE_PORT_ID_INT2_MI2S_RX:
  7132. case AFE_PORT_ID_INT3_MI2S_RX:
  7133. case AFE_PORT_ID_INT4_MI2S_RX:
  7134. case AFE_PORT_ID_INT5_MI2S_RX:
  7135. case AFE_PORT_ID_INT6_MI2S_RX:
  7136. case AFE_PORT_ID_INT0_MI2S_TX:
  7137. case AFE_PORT_ID_INT1_MI2S_TX:
  7138. case AFE_PORT_ID_INT2_MI2S_TX:
  7139. case AFE_PORT_ID_INT3_MI2S_TX:
  7140. case AFE_PORT_ID_INT4_MI2S_TX:
  7141. case AFE_PORT_ID_INT5_MI2S_TX:
  7142. case AFE_PORT_ID_INT6_MI2S_TX:
  7143. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  7144. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  7145. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  7146. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  7147. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  7148. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  7149. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  7150. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  7151. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  7152. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  7153. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  7154. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  7155. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  7156. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  7157. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  7158. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  7159. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  7160. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  7161. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  7162. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  7163. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  7164. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  7165. case RT_PROXY_PORT_002_RX:
  7166. case RT_PROXY_PORT_002_TX:
  7167. {
  7168. ret = 0;
  7169. break;
  7170. }
  7171. default:
  7172. pr_err("%s: default ret 0x%x\n", __func__, port_id);
  7173. ret = -EINVAL;
  7174. }
  7175. return ret;
  7176. }
  7177. int afe_convert_virtual_to_portid(u16 port_id)
  7178. {
  7179. int ret;
  7180. /*
  7181. * if port_id is virtual, convert to physical..
  7182. * if port_id is already physical, return physical
  7183. */
  7184. if (afe_validate_port(port_id) < 0) {
  7185. if (port_id == RT_PROXY_DAI_001_RX ||
  7186. port_id == RT_PROXY_DAI_001_TX ||
  7187. port_id == RT_PROXY_DAI_002_RX ||
  7188. port_id == RT_PROXY_DAI_002_TX ||
  7189. port_id == RT_PROXY_DAI_003_TX) {
  7190. ret = VIRTUAL_ID_TO_PORTID(port_id);
  7191. } else {
  7192. pr_err("%s: wrong port 0x%x\n",
  7193. __func__, port_id);
  7194. ret = -EINVAL;
  7195. }
  7196. } else
  7197. ret = port_id;
  7198. return ret;
  7199. }
  7200. int afe_port_stop_nowait(int port_id)
  7201. {
  7202. struct afe_port_cmd_device_stop stop;
  7203. int ret = 0;
  7204. if (this_afe.apr == NULL) {
  7205. pr_err("%s: AFE is already closed\n", __func__);
  7206. ret = -EINVAL;
  7207. goto fail_cmd;
  7208. }
  7209. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  7210. port_id = q6audio_convert_virtual_to_portid(port_id);
  7211. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  7212. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  7213. stop.hdr.pkt_size = sizeof(stop);
  7214. stop.hdr.src_port = 0;
  7215. stop.hdr.dest_port = 0;
  7216. stop.hdr.token = 0;
  7217. stop.hdr.opcode = AFE_PORT_CMD_DEVICE_STOP;
  7218. stop.port_id = port_id;
  7219. stop.reserved = 0;
  7220. ret = afe_apr_send_pkt(&stop, NULL);
  7221. if (ret)
  7222. pr_err("%s: AFE close failed %d\n", __func__, ret);
  7223. fail_cmd:
  7224. return ret;
  7225. }
  7226. /**
  7227. * afe_close - command to close AFE port
  7228. *
  7229. * @port_id: AFE port id
  7230. *
  7231. * Returns 0 on success, appropriate error code otherwise
  7232. */
  7233. int afe_close(int port_id)
  7234. {
  7235. struct afe_port_cmd_device_stop stop;
  7236. enum afe_mad_type mad_type;
  7237. int ret = 0;
  7238. int index = 0;
  7239. uint16_t port_index;
  7240. if (this_afe.apr == NULL) {
  7241. pr_err("%s: AFE is already closed\n", __func__);
  7242. if ((port_id == RT_PROXY_DAI_001_RX) ||
  7243. (port_id == RT_PROXY_DAI_002_TX))
  7244. pcm_afe_instance[port_id & 0x1] = 0;
  7245. if ((port_id == RT_PROXY_DAI_002_RX) ||
  7246. (port_id == RT_PROXY_DAI_001_TX))
  7247. proxy_afe_instance[port_id & 0x1] = 0;
  7248. afe_close_done[port_id & 0x1] = true;
  7249. ret = -EINVAL;
  7250. goto fail_cmd;
  7251. }
  7252. pr_info("%s: port_id = 0x%x\n", __func__, port_id);
  7253. if ((port_id == RT_PROXY_DAI_001_RX) ||
  7254. (port_id == RT_PROXY_DAI_002_TX)) {
  7255. pr_debug("%s: before decrementing pcm_afe_instance %d\n",
  7256. __func__, pcm_afe_instance[port_id & 0x1]);
  7257. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  7258. pcm_afe_instance[port_id & 0x1]--;
  7259. if ((!(pcm_afe_instance[port_id & 0x1] == 0 &&
  7260. proxy_afe_instance[port_id & 0x1] == 0)) ||
  7261. afe_close_done[port_id & 0x1] == true)
  7262. return 0;
  7263. afe_close_done[port_id & 0x1] = true;
  7264. }
  7265. if ((port_id == RT_PROXY_DAI_002_RX) ||
  7266. (port_id == RT_PROXY_DAI_001_TX)) {
  7267. pr_debug("%s: before decrementing proxy_afe_instance %d\n",
  7268. __func__, proxy_afe_instance[port_id & 0x1]);
  7269. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  7270. proxy_afe_instance[port_id & 0x1]--;
  7271. if ((!(pcm_afe_instance[port_id & 0x1] == 0 &&
  7272. proxy_afe_instance[port_id & 0x1] == 0)) ||
  7273. afe_close_done[port_id & 0x1] == true)
  7274. return 0;
  7275. afe_close_done[port_id & 0x1] = true;
  7276. }
  7277. if (port_id == RT_PROXY_PORT_002_RX && proxy_afe_started)
  7278. proxy_afe_started = false;
  7279. port_id = q6audio_convert_virtual_to_portid(port_id);
  7280. index = q6audio_get_port_index(port_id);
  7281. if (index < 0 || index >= AFE_MAX_PORTS) {
  7282. pr_err("%s: AFE port index[%d] invalid!\n",
  7283. __func__, index);
  7284. return -EINVAL;
  7285. }
  7286. ret = q6audio_validate_port(port_id);
  7287. if (ret < 0) {
  7288. pr_warn("%s: Not a valid port id 0x%x ret %d\n",
  7289. __func__, port_id, ret);
  7290. return -EINVAL;
  7291. }
  7292. mad_type = afe_port_get_mad_type(port_id);
  7293. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  7294. mad_type);
  7295. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  7296. pr_debug("%s: Turn off MAD\n", __func__);
  7297. ret = afe_turn_onoff_hw_mad(mad_type, false);
  7298. if (ret) {
  7299. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  7300. __func__, ret);
  7301. return ret;
  7302. }
  7303. } else {
  7304. pr_debug("%s: Not a MAD port\n", __func__);
  7305. }
  7306. mutex_lock(&this_afe.afe_cmd_lock);
  7307. port_index = afe_get_port_index(port_id);
  7308. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  7309. this_afe.afe_sample_rates[port_index] = 0;
  7310. this_afe.topology[port_index] = 0;
  7311. this_afe.dev_acdb_id[port_index] = 0;
  7312. } else {
  7313. pr_err("%s: port %d\n", __func__, port_index);
  7314. ret = -EINVAL;
  7315. goto fail_cmd;
  7316. }
  7317. if ((port_id == this_afe.aanc_info.aanc_tx_port) &&
  7318. (this_afe.aanc_info.aanc_active)) {
  7319. memset(&this_afe.aanc_info, 0x00, sizeof(this_afe.aanc_info));
  7320. ret = afe_aanc_mod_enable(this_afe.apr, port_id, 0);
  7321. if (ret)
  7322. pr_err("%s: AFE mod disable failed %d\n",
  7323. __func__, ret);
  7324. }
  7325. /*
  7326. * even if ramp down configuration failed it is not serious enough to
  7327. * warrant bailaing out.
  7328. */
  7329. if (afe_spk_ramp_dn_cfg(port_id) < 0)
  7330. pr_err("%s: ramp down configuration failed\n", __func__);
  7331. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  7332. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  7333. stop.hdr.pkt_size = sizeof(stop);
  7334. stop.hdr.src_port = 0;
  7335. stop.hdr.dest_port = 0;
  7336. stop.hdr.token = index;
  7337. stop.hdr.opcode = AFE_PORT_CMD_DEVICE_STOP;
  7338. stop.port_id = q6audio_get_port_id(port_id);
  7339. stop.reserved = 0;
  7340. ret = afe_apr_send_pkt(&stop, &this_afe.wait[index]);
  7341. if (ret)
  7342. pr_err("%s: AFE close failed %d\n", __func__, ret);
  7343. fail_cmd:
  7344. mutex_unlock(&this_afe.afe_cmd_lock);
  7345. return ret;
  7346. }
  7347. EXPORT_SYMBOL(afe_close);
  7348. int afe_set_digital_codec_core_clock(u16 port_id,
  7349. struct afe_digital_clk_cfg *cfg)
  7350. {
  7351. struct afe_digital_clk_cfg clk_cfg;
  7352. struct param_hdr_v3 param_hdr;
  7353. int ret = 0;
  7354. if (!cfg) {
  7355. pr_err("%s: clock cfg is NULL\n", __func__);
  7356. return -EINVAL;
  7357. }
  7358. memset(&clk_cfg, 0, sizeof(clk_cfg));
  7359. memset(&param_hdr, 0, sizeof(param_hdr));
  7360. /*default rx port is taken to enable the codec digital clock*/
  7361. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  7362. param_hdr.instance_id = INSTANCE_ID_0;
  7363. param_hdr.param_id = AFE_PARAM_ID_INTERNAL_DIGIATL_CDC_CLK_CONFIG;
  7364. param_hdr.param_size = sizeof(struct afe_digital_clk_cfg);
  7365. clk_cfg = *cfg;
  7366. pr_debug("%s: Minor version =0x%x clk val = %d\n"
  7367. "clk root = 0x%x resrv = 0x%x\n",
  7368. __func__, cfg->i2s_cfg_minor_version, cfg->clk_val,
  7369. cfg->clk_root, cfg->reserved);
  7370. ret = q6afe_pack_and_set_param_in_band(port_id,
  7371. q6audio_get_port_index(port_id),
  7372. param_hdr, (u8 *) &clk_cfg);
  7373. if (ret < 0)
  7374. pr_err("%s: AFE enable for port 0x%x ret %d\n", __func__,
  7375. port_id, ret);
  7376. return ret;
  7377. }
  7378. /**
  7379. * afe_set_lpass_clock - Enable AFE lpass clock
  7380. *
  7381. * @port_id: AFE port id
  7382. * @cfg: pointer to clk set struct
  7383. *
  7384. * Returns 0 on success, appropriate error code otherwise
  7385. */
  7386. int afe_set_lpass_clock(u16 port_id, struct afe_clk_cfg *cfg)
  7387. {
  7388. struct afe_clk_cfg clk_cfg;
  7389. struct param_hdr_v3 param_hdr;
  7390. int ret = 0;
  7391. if (!cfg) {
  7392. pr_err("%s: clock cfg is NULL\n", __func__);
  7393. return -EINVAL;
  7394. }
  7395. memset(&clk_cfg, 0, sizeof(clk_cfg));
  7396. memset(&param_hdr, 0, sizeof(param_hdr));
  7397. ret = q6audio_is_digital_pcm_interface(port_id);
  7398. if (ret < 0) {
  7399. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  7400. __func__, ret);
  7401. return -EINVAL;
  7402. }
  7403. mutex_lock(&this_afe.afe_cmd_lock);
  7404. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  7405. param_hdr.instance_id = INSTANCE_ID_0;
  7406. param_hdr.param_id = AFE_PARAM_ID_LPAIF_CLK_CONFIG;
  7407. param_hdr.param_size = sizeof(clk_cfg);
  7408. clk_cfg = *cfg;
  7409. pr_debug("%s: Minor version =0x%x clk val1 = %d\n"
  7410. "clk val2 = %d, clk src = 0x%x\n"
  7411. "clk root = 0x%x clk mode = 0x%x resrv = 0x%x\n"
  7412. "port id = 0x%x\n",
  7413. __func__, cfg->i2s_cfg_minor_version,
  7414. cfg->clk_val1, cfg->clk_val2, cfg->clk_src,
  7415. cfg->clk_root, cfg->clk_set_mode,
  7416. cfg->reserved, q6audio_get_port_id(port_id));
  7417. trace_printk("%s: Minor version =0x%x clk val1 = %d\n"
  7418. "clk val2 = %d, clk src = 0x%x\n"
  7419. "clk root = 0x%x clk mode = 0x%x resrv = 0x%x\n"
  7420. "port id = 0x%x\n",
  7421. __func__, cfg->i2s_cfg_minor_version,
  7422. cfg->clk_val1, cfg->clk_val2, cfg->clk_src,
  7423. cfg->clk_root, cfg->clk_set_mode,
  7424. cfg->reserved, q6audio_get_port_id(port_id));
  7425. ret = q6afe_pack_and_set_param_in_band(port_id,
  7426. q6audio_get_port_index(port_id),
  7427. param_hdr, (u8 *) &clk_cfg);
  7428. if (ret < 0)
  7429. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  7430. __func__, port_id, ret);
  7431. mutex_unlock(&this_afe.afe_cmd_lock);
  7432. return ret;
  7433. }
  7434. EXPORT_SYMBOL(afe_set_lpass_clock);
  7435. /**
  7436. * afe_set_lpass_clk_cfg - Set AFE clk config
  7437. *
  7438. * @index: port index
  7439. * @cfg: pointer to clk set struct
  7440. *
  7441. * Returns 0 on success, appropriate error code otherwise
  7442. */
  7443. int afe_set_lpass_clk_cfg(int index, struct afe_clk_set *cfg)
  7444. {
  7445. struct param_hdr_v3 param_hdr;
  7446. int ret = 0;
  7447. if (!cfg) {
  7448. pr_err("%s: clock cfg is NULL\n", __func__);
  7449. ret = -EINVAL;
  7450. return ret;
  7451. }
  7452. if (index < 0 || index >= AFE_MAX_PORTS) {
  7453. pr_err("%s: index[%d] invalid!\n", __func__, index);
  7454. return -EINVAL;
  7455. }
  7456. memset(&param_hdr, 0, sizeof(param_hdr));
  7457. mutex_lock(&this_afe.afe_clk_lock);
  7458. param_hdr.module_id = AFE_MODULE_CLOCK_SET;
  7459. param_hdr.instance_id = INSTANCE_ID_0;
  7460. param_hdr.param_id = AFE_PARAM_ID_CLOCK_SET;
  7461. param_hdr.param_size = sizeof(struct afe_clk_set);
  7462. pr_debug("%s: Minor version =0x%x clk id = %d\n"
  7463. "clk freq (Hz) = %d, clk attri = 0x%x\n"
  7464. "clk root = 0x%x clk enable = 0x%x\n",
  7465. __func__, cfg->clk_set_minor_version,
  7466. cfg->clk_id, cfg->clk_freq_in_hz, cfg->clk_attri,
  7467. cfg->clk_root, cfg->enable);
  7468. trace_printk("%s: Minor version =0x%x clk id = %d\n"
  7469. "clk freq (Hz) = %d, clk attri = 0x%x\n"
  7470. "clk root = 0x%x clk enable = 0x%x\n",
  7471. __func__, cfg->clk_set_minor_version,
  7472. cfg->clk_id, cfg->clk_freq_in_hz, cfg->clk_attri,
  7473. cfg->clk_root, cfg->enable);
  7474. ret = q6afe_svc_pack_and_set_param_in_band(index, param_hdr,
  7475. (u8 *) cfg);
  7476. if (ret < 0) {
  7477. pr_err_ratelimited("%s: AFE clk cfg failed with ret %d\n",
  7478. __func__, ret);
  7479. trace_printk("%s: AFE clk cfg failed with ret %d\n",
  7480. __func__, ret);
  7481. }
  7482. mutex_unlock(&this_afe.afe_clk_lock);
  7483. return ret;
  7484. }
  7485. EXPORT_SYMBOL(afe_set_lpass_clk_cfg);
  7486. /**
  7487. * afe_set_lpass_clock_v2 - Enable AFE lpass clock
  7488. *
  7489. * @port_id: AFE port id
  7490. * @cfg: pointer to clk set struct
  7491. *
  7492. * Returns 0 on success, appropriate error code otherwise
  7493. */
  7494. int afe_set_lpass_clock_v2(u16 port_id, struct afe_clk_set *cfg)
  7495. {
  7496. int index = 0;
  7497. int ret = 0;
  7498. index = q6audio_get_port_index(port_id);
  7499. if (index < 0 || index >= AFE_MAX_PORTS) {
  7500. pr_err("%s: AFE port index[%d] invalid!\n",
  7501. __func__, index);
  7502. return -EINVAL;
  7503. }
  7504. ret = q6audio_is_digital_pcm_interface(port_id);
  7505. if (ret < 0) {
  7506. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  7507. __func__, ret);
  7508. return -EINVAL;
  7509. }
  7510. ret = afe_set_lpass_clk_cfg(index, cfg);
  7511. if (ret)
  7512. pr_err("%s: afe_set_lpass_clk_cfg_v2 failed %d\n",
  7513. __func__, ret);
  7514. return ret;
  7515. }
  7516. EXPORT_SYMBOL(afe_set_lpass_clock_v2);
  7517. int afe_set_lpass_internal_digital_codec_clock(u16 port_id,
  7518. struct afe_digital_clk_cfg *cfg)
  7519. {
  7520. struct afe_digital_clk_cfg clk_cfg;
  7521. struct param_hdr_v3 param_hdr;
  7522. int ret = 0;
  7523. if (!cfg) {
  7524. pr_err("%s: clock cfg is NULL\n", __func__);
  7525. return -EINVAL;
  7526. }
  7527. memset(&clk_cfg, 0, sizeof(clk_cfg));
  7528. memset(&param_hdr, 0, sizeof(param_hdr));
  7529. ret = q6audio_is_digital_pcm_interface(port_id);
  7530. if (ret < 0) {
  7531. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  7532. __func__, ret);
  7533. return -EINVAL;
  7534. }
  7535. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  7536. param_hdr.instance_id = INSTANCE_ID_0;
  7537. param_hdr.param_id = AFE_PARAM_ID_INTERNAL_DIGIATL_CDC_CLK_CONFIG;
  7538. param_hdr.param_size = sizeof(clk_cfg);
  7539. clk_cfg = *cfg;
  7540. pr_debug("%s: Minor version =0x%x clk val = %d\n"
  7541. "clk root = 0x%x resrv = 0x%x port id = 0x%x\n",
  7542. __func__, cfg->i2s_cfg_minor_version,
  7543. cfg->clk_val, cfg->clk_root, cfg->reserved,
  7544. q6audio_get_port_id(port_id));
  7545. ret = q6afe_pack_and_set_param_in_band(port_id,
  7546. q6audio_get_port_index(port_id),
  7547. param_hdr, (u8 *) &clk_cfg);
  7548. if (ret < 0)
  7549. pr_err("%s: AFE enable for port 0x0x%x ret %d\n",
  7550. __func__, port_id, ret);
  7551. return ret;
  7552. }
  7553. /**
  7554. * afe_enable_lpass_core_shared_clock -
  7555. * Configures the core clk on LPASS.
  7556. * Need on targets where lpass provides
  7557. * clocks
  7558. * @port_id: afe port id
  7559. * @enable: enable or disable clk
  7560. *
  7561. * Returns success or failure of call.
  7562. */
  7563. int afe_enable_lpass_core_shared_clock(u16 port_id, u32 enable)
  7564. {
  7565. struct afe_param_id_lpass_core_shared_clk_cfg clk_cfg;
  7566. struct param_hdr_v3 param_hdr;
  7567. int ret = 0;
  7568. memset(&clk_cfg, 0, sizeof(clk_cfg));
  7569. memset(&param_hdr, 0, sizeof(param_hdr));
  7570. ret = q6audio_is_digital_pcm_interface(port_id);
  7571. if (ret < 0) {
  7572. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  7573. __func__, ret);
  7574. return -EINVAL;
  7575. }
  7576. mutex_lock(&this_afe.afe_cmd_lock);
  7577. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  7578. param_hdr.instance_id = INSTANCE_ID_0;
  7579. param_hdr.param_id = AFE_PARAM_ID_LPASS_CORE_SHARED_CLOCK_CONFIG;
  7580. param_hdr.param_size = sizeof(clk_cfg);
  7581. clk_cfg.lpass_core_shared_clk_cfg_minor_version =
  7582. AFE_API_VERSION_LPASS_CORE_SHARED_CLK_CONFIG;
  7583. clk_cfg.enable = enable;
  7584. pr_debug("%s: port id = %d, enable = %d\n",
  7585. __func__, q6audio_get_port_id(port_id), enable);
  7586. ret = q6afe_pack_and_set_param_in_band(port_id,
  7587. q6audio_get_port_index(port_id),
  7588. param_hdr, (u8 *) &clk_cfg);
  7589. if (ret < 0)
  7590. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  7591. __func__, port_id, ret);
  7592. mutex_unlock(&this_afe.afe_cmd_lock);
  7593. return ret;
  7594. }
  7595. EXPORT_SYMBOL(afe_enable_lpass_core_shared_clock);
  7596. /**
  7597. * q6afe_check_osr_clk_freq -
  7598. * Gets supported OSR CLK frequencies
  7599. *
  7600. * @freq: frequency to check
  7601. *
  7602. * Returns success if freq is supported.
  7603. */
  7604. int q6afe_check_osr_clk_freq(u32 freq)
  7605. {
  7606. int ret = 0;
  7607. switch (freq) {
  7608. case Q6AFE_LPASS_OSR_CLK_12_P288_MHZ:
  7609. case Q6AFE_LPASS_OSR_CLK_9_P600_MHZ:
  7610. case Q6AFE_LPASS_OSR_CLK_8_P192_MHZ:
  7611. case Q6AFE_LPASS_OSR_CLK_6_P144_MHZ:
  7612. case Q6AFE_LPASS_OSR_CLK_4_P096_MHZ:
  7613. case Q6AFE_LPASS_OSR_CLK_3_P072_MHZ:
  7614. case Q6AFE_LPASS_OSR_CLK_2_P048_MHZ:
  7615. case Q6AFE_LPASS_OSR_CLK_1_P536_MHZ:
  7616. case Q6AFE_LPASS_OSR_CLK_1_P024_MHZ:
  7617. case Q6AFE_LPASS_OSR_CLK_768_kHZ:
  7618. case Q6AFE_LPASS_OSR_CLK_512_kHZ:
  7619. break;
  7620. default:
  7621. pr_err("%s: default freq 0x%x\n",
  7622. __func__, freq);
  7623. ret = -EINVAL;
  7624. }
  7625. return ret;
  7626. }
  7627. EXPORT_SYMBOL(q6afe_check_osr_clk_freq);
  7628. static int afe_get_spv4_th_vi_v_vali_data(void *params, uint32_t size)
  7629. {
  7630. struct param_hdr_v3 param_hdr;
  7631. int port = AFE_PORT_ID_WSA_CODEC_DMA_TX_0;
  7632. int ret = -EINVAL;
  7633. u8 *rcvd_params = NULL;
  7634. struct afe_sp_v4_channel_v_vali_params *v_vali_params = NULL;
  7635. if (!params) {
  7636. pr_err("%s: Invalid params\n", __func__);
  7637. goto done;
  7638. }
  7639. if (this_afe.vi_tx_port != -1)
  7640. port = this_afe.vi_tx_port;
  7641. mutex_lock(&this_afe.afe_cmd_lock);
  7642. memset(&param_hdr, 0, sizeof(param_hdr));
  7643. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  7644. param_hdr.instance_id = INSTANCE_ID_0;
  7645. param_hdr.param_id = AFE_PARAM_ID_SP_V4_TH_VI_V_VALI_PARAMS;
  7646. param_hdr.param_size = size;
  7647. ret = q6afe_get_params(port, NULL, &param_hdr);
  7648. if (ret) {
  7649. pr_err("%s: Failed to get TH VI V-Vali data\n", __func__);
  7650. goto get_params_fail;
  7651. }
  7652. rcvd_params = (u8 *)this_afe.spv4_get_param_resp_ptr +
  7653. sizeof(struct afe_sp_v4_gen_get_param_resp);
  7654. memcpy(params, rcvd_params, this_afe.spv4_rcvd_param_size);
  7655. v_vali_params = (struct afe_sp_v4_channel_v_vali_params *)
  7656. (params + sizeof(struct afe_sp_v4_param_th_vi_v_vali_params));
  7657. pr_debug("%s: Vrms %d %d status %d %d\n", __func__,
  7658. v_vali_params[SP_V2_SPKR_1].vrms_q24,
  7659. v_vali_params[SP_V2_SPKR_2].vrms_q24,
  7660. v_vali_params[SP_V2_SPKR_1].status,
  7661. v_vali_params[SP_V2_SPKR_2].status);
  7662. /*using the non-spv4 status varaible to support v_vali debug app. */
  7663. this_afe.th_vi_v_vali_resp.param.status[SP_V2_SPKR_1] =
  7664. v_vali_params[SP_V2_SPKR_1].status;
  7665. this_afe.th_vi_v_vali_resp.param.status[SP_V2_SPKR_2] =
  7666. v_vali_params[SP_V2_SPKR_2].status;
  7667. ret = 0;
  7668. get_params_fail:
  7669. kfree(this_afe.spv4_get_param_resp_ptr);
  7670. mutex_unlock(&this_afe.afe_cmd_lock);
  7671. done:
  7672. return ret;
  7673. }
  7674. static int afe_get_sp_th_vi_v_vali_data(
  7675. struct afe_sp_th_vi_v_vali_get_param *th_vi_v_vali)
  7676. {
  7677. struct param_hdr_v3 param_hdr;
  7678. int port = SLIMBUS_4_TX;
  7679. int ret = -EINVAL;
  7680. if (!th_vi_v_vali) {
  7681. pr_err("%s: Invalid params\n", __func__);
  7682. goto done;
  7683. }
  7684. if (this_afe.vi_tx_port != -1)
  7685. port = this_afe.vi_tx_port;
  7686. mutex_lock(&this_afe.afe_cmd_lock);
  7687. memset(&param_hdr, 0, sizeof(param_hdr));
  7688. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  7689. param_hdr.instance_id = INSTANCE_ID_0;
  7690. param_hdr.param_id = AFE_PARAM_ID_SP_V2_TH_VI_V_VALI_PARAMS;
  7691. param_hdr.param_size = sizeof(struct afe_sp_th_vi_v_vali_params);
  7692. ret = q6afe_get_params(port, NULL, &param_hdr);
  7693. if (ret) {
  7694. pr_err("%s: Failed to get TH VI V-Vali data\n", __func__);
  7695. goto get_params_fail;
  7696. }
  7697. th_vi_v_vali->pdata = param_hdr;
  7698. memcpy(&th_vi_v_vali->param, &this_afe.th_vi_v_vali_resp.param,
  7699. sizeof(this_afe.th_vi_v_vali_resp.param));
  7700. pr_debug("%s: Vrms %d %d status %d %d\n", __func__,
  7701. th_vi_v_vali->param.vrms_q24[SP_V2_SPKR_1],
  7702. th_vi_v_vali->param.vrms_q24[SP_V2_SPKR_2],
  7703. th_vi_v_vali->param.status[SP_V2_SPKR_1],
  7704. th_vi_v_vali->param.status[SP_V2_SPKR_2]);
  7705. ret = 0;
  7706. get_params_fail:
  7707. mutex_unlock(&this_afe.afe_cmd_lock);
  7708. done:
  7709. return ret;
  7710. }
  7711. static int afe_get_spv4_th_vi_ftm_data(void *params, uint32_t size)
  7712. {
  7713. struct param_hdr_v3 param_hdr;
  7714. int port = SLIMBUS_4_TX;
  7715. int ret = -EINVAL;
  7716. u8 *rcvd_params = NULL;
  7717. struct afe_sp_v4_channel_ftm_params *th_vi_params;
  7718. if (!params) {
  7719. pr_err("%s: Invalid params\n", __func__);
  7720. goto done;
  7721. }
  7722. if (this_afe.vi_tx_port != -1)
  7723. port = this_afe.vi_tx_port;
  7724. mutex_lock(&this_afe.afe_cmd_lock);
  7725. memset(&param_hdr, 0, sizeof(param_hdr));
  7726. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  7727. param_hdr.instance_id = INSTANCE_ID_0;
  7728. param_hdr.param_id = AFE_PARAM_ID_SP_V4_TH_VI_FTM_PARAMS;
  7729. param_hdr.param_size = size;
  7730. ret = q6afe_get_params(port, NULL, &param_hdr);
  7731. if (ret) {
  7732. pr_err("%s: Failed to get TH VI FTM data\n", __func__);
  7733. goto get_params_fail;
  7734. }
  7735. rcvd_params = (u8 *)this_afe.spv4_get_param_resp_ptr +
  7736. sizeof(struct afe_sp_v4_gen_get_param_resp);
  7737. memcpy(params, rcvd_params, this_afe.spv4_rcvd_param_size);
  7738. th_vi_params = (struct afe_sp_v4_channel_ftm_params *)
  7739. (params + sizeof(struct afe_sp_v4_param_th_vi_ftm_params));
  7740. pr_debug("%s: DC resistance %d %d temp %d %d status %d %d\n",
  7741. __func__, th_vi_params[SP_V2_SPKR_1].dc_res_q24,
  7742. th_vi_params[SP_V2_SPKR_2].dc_res_q24,
  7743. th_vi_params[SP_V2_SPKR_1].temp_q22,
  7744. th_vi_params[SP_V2_SPKR_2].temp_q22,
  7745. th_vi_params[SP_V2_SPKR_1].status,
  7746. th_vi_params[SP_V2_SPKR_2].status);
  7747. ret = 0;
  7748. get_params_fail:
  7749. kfree(this_afe.spv4_get_param_resp_ptr);
  7750. mutex_unlock(&this_afe.afe_cmd_lock);
  7751. done:
  7752. return ret;
  7753. }
  7754. static int afe_get_sp_th_vi_ftm_data(struct afe_sp_th_vi_get_param *th_vi)
  7755. {
  7756. struct param_hdr_v3 param_hdr;
  7757. int port = SLIMBUS_4_TX;
  7758. int ret = -EINVAL;
  7759. if (!th_vi) {
  7760. pr_err("%s: Invalid params\n", __func__);
  7761. goto done;
  7762. }
  7763. if (this_afe.vi_tx_port != -1)
  7764. port = this_afe.vi_tx_port;
  7765. mutex_lock(&this_afe.afe_cmd_lock);
  7766. memset(&param_hdr, 0, sizeof(param_hdr));
  7767. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  7768. param_hdr.instance_id = INSTANCE_ID_0;
  7769. param_hdr.param_id = AFE_PARAM_ID_SP_V2_TH_VI_FTM_PARAMS;
  7770. param_hdr.param_size = sizeof(struct afe_sp_th_vi_ftm_params);
  7771. ret = q6afe_get_params(port, NULL, &param_hdr);
  7772. if (ret) {
  7773. pr_err("%s: Failed to get TH VI FTM data\n", __func__);
  7774. goto get_params_fail;
  7775. }
  7776. th_vi->pdata = param_hdr;
  7777. memcpy(&th_vi->param, &this_afe.th_vi_resp.param,
  7778. sizeof(this_afe.th_vi_resp.param));
  7779. pr_debug("%s: DC resistance %d %d temp %d %d status %d %d\n",
  7780. __func__, th_vi->param.dc_res_q24[SP_V2_SPKR_1],
  7781. th_vi->param.dc_res_q24[SP_V2_SPKR_2],
  7782. th_vi->param.temp_q22[SP_V2_SPKR_1],
  7783. th_vi->param.temp_q22[SP_V2_SPKR_2],
  7784. th_vi->param.status[SP_V2_SPKR_1],
  7785. th_vi->param.status[SP_V2_SPKR_2]);
  7786. ret = 0;
  7787. get_params_fail:
  7788. mutex_unlock(&this_afe.afe_cmd_lock);
  7789. done:
  7790. return ret;
  7791. }
  7792. static int afe_get_spv4_ex_vi_ftm_data(void *params, uint32_t size)
  7793. {
  7794. struct param_hdr_v3 param_hdr;
  7795. int port = SLIMBUS_4_TX;
  7796. int ret = -EINVAL;
  7797. u8 *rcvd_params = NULL;
  7798. struct afe_sp_v4_channel_ex_vi_ftm_params *ex_vi_ftm_param;
  7799. if (!params) {
  7800. pr_err("%s: Invalid params\n", __func__);
  7801. goto done;
  7802. }
  7803. if (this_afe.vi_tx_port != -1)
  7804. port = this_afe.vi_tx_port;
  7805. mutex_lock(&this_afe.afe_cmd_lock);
  7806. memset(&param_hdr, 0, sizeof(param_hdr));
  7807. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  7808. param_hdr.instance_id = INSTANCE_ID_0;
  7809. param_hdr.param_id = AFE_PARAM_ID_SP_V4_EX_VI_FTM_PARAMS;
  7810. param_hdr.param_size = size;
  7811. ret = q6afe_get_params(port, NULL, &param_hdr);
  7812. if (ret < 0) {
  7813. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  7814. __func__, port, param_hdr.param_id, ret);
  7815. goto get_params_fail;
  7816. }
  7817. rcvd_params = (u8 *)this_afe.spv4_get_param_resp_ptr +
  7818. sizeof(struct afe_sp_v4_gen_get_param_resp);
  7819. memcpy(params, rcvd_params, this_afe.spv4_rcvd_param_size);
  7820. ex_vi_ftm_param = (struct afe_sp_v4_channel_ex_vi_ftm_params *)
  7821. (params + sizeof(struct afe_sp_v4_param_ex_vi_ftm_params));
  7822. pr_debug("%s: resistance %d %d force factor %d %d Damping kg/s %d %d\n"
  7823. "stiffness N/mm %d %d freq %d %d Qfactor %d %d status %d %d",
  7824. __func__, ex_vi_ftm_param[SP_V2_SPKR_1].ftm_re_q24,
  7825. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_re_q24,
  7826. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Bl_q24,
  7827. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Bl_q24,
  7828. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Rms_q24,
  7829. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Rms_q24,
  7830. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Kms_q24,
  7831. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Kms_q24,
  7832. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Fres_q20,
  7833. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Fres_q20,
  7834. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Qms_q24,
  7835. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Qms_q24,
  7836. ex_vi_ftm_param[SP_V2_SPKR_1].status,
  7837. ex_vi_ftm_param[SP_V2_SPKR_2].status);
  7838. ret = 0;
  7839. get_params_fail:
  7840. kfree(this_afe.spv4_get_param_resp_ptr);
  7841. mutex_unlock(&this_afe.afe_cmd_lock);
  7842. done:
  7843. return ret;
  7844. }
  7845. static int afe_get_sp_ex_vi_ftm_data(struct afe_sp_ex_vi_get_param *ex_vi)
  7846. {
  7847. struct param_hdr_v3 param_hdr;
  7848. int port = SLIMBUS_4_TX;
  7849. int ret = -EINVAL;
  7850. if (!ex_vi) {
  7851. pr_err("%s: Invalid params\n", __func__);
  7852. goto done;
  7853. }
  7854. if (this_afe.vi_tx_port != -1)
  7855. port = this_afe.vi_tx_port;
  7856. mutex_lock(&this_afe.afe_cmd_lock);
  7857. memset(&param_hdr, 0, sizeof(param_hdr));
  7858. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI;
  7859. param_hdr.instance_id = INSTANCE_ID_0;
  7860. param_hdr.param_id = AFE_PARAM_ID_SP_V2_EX_VI_FTM_PARAMS;
  7861. param_hdr.param_size = sizeof(struct afe_sp_ex_vi_ftm_params);
  7862. ret = q6afe_get_params(port, NULL, &param_hdr);
  7863. if (ret < 0) {
  7864. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  7865. __func__, port, param_hdr.param_id, ret);
  7866. goto get_params_fail;
  7867. }
  7868. ex_vi->pdata = param_hdr;
  7869. memcpy(&ex_vi->param, &this_afe.ex_vi_resp.param,
  7870. sizeof(this_afe.ex_vi_resp.param));
  7871. pr_debug("%s: freq %d %d resistance %d %d qfactor %d %d state %d %d\n",
  7872. __func__, ex_vi->param.freq_q20[SP_V2_SPKR_1],
  7873. ex_vi->param.freq_q20[SP_V2_SPKR_2],
  7874. ex_vi->param.resis_q24[SP_V2_SPKR_1],
  7875. ex_vi->param.resis_q24[SP_V2_SPKR_2],
  7876. ex_vi->param.qmct_q24[SP_V2_SPKR_1],
  7877. ex_vi->param.qmct_q24[SP_V2_SPKR_2],
  7878. ex_vi->param.status[SP_V2_SPKR_1],
  7879. ex_vi->param.status[SP_V2_SPKR_2]);
  7880. ret = 0;
  7881. get_params_fail:
  7882. mutex_unlock(&this_afe.afe_cmd_lock);
  7883. done:
  7884. return ret;
  7885. }
  7886. static int afe_get_sp_v4_rx_tmax_xmax_logging_data(
  7887. struct afe_sp_rx_tmax_xmax_logging_param *xt_logging,
  7888. u16 port_id)
  7889. {
  7890. struct param_hdr_v3 param_hdr;
  7891. int ret = -EINVAL;
  7892. struct afe_sp_v4_param_tmax_xmax_logging *tmax_xmax_logging;
  7893. struct afe_sp_v4_channel_tmax_xmax_params *tx_channel_params;
  7894. uint32_t i, size = 0;
  7895. if (!xt_logging) {
  7896. pr_err("%s: Invalid params\n", __func__);
  7897. goto done;
  7898. }
  7899. size = sizeof(struct afe_sp_v4_param_tmax_xmax_logging) +
  7900. (SP_V2_NUM_MAX_SPKRS *
  7901. sizeof(struct afe_sp_v4_channel_tmax_xmax_params));
  7902. memset(&param_hdr, 0, sizeof(param_hdr));
  7903. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_RX;
  7904. param_hdr.instance_id = INSTANCE_ID_0;
  7905. param_hdr.param_id = AFE_PARAM_ID_SP_V4_RX_TMAX_XMAX_LOGGING;
  7906. param_hdr.param_size = size;
  7907. ret = q6afe_get_params(port_id, NULL, &param_hdr);
  7908. if (ret) {
  7909. pr_err("%s: Failed to get Tmax Xmax logging data\n", __func__);
  7910. goto get_params_fail;
  7911. }
  7912. tmax_xmax_logging = (struct afe_sp_v4_param_tmax_xmax_logging *)
  7913. ((u8 *)this_afe.spv4_get_param_resp_ptr +
  7914. sizeof(struct afe_sp_v4_gen_get_param_resp));
  7915. tx_channel_params = (struct afe_sp_v4_channel_tmax_xmax_params *)
  7916. ((u8 *)tmax_xmax_logging +
  7917. sizeof(struct afe_sp_v4_param_tmax_xmax_logging));
  7918. for (i = 0; i < tmax_xmax_logging->num_ch; i++) {
  7919. xt_logging->max_excursion[i] =
  7920. tx_channel_params[i].max_excursion;
  7921. xt_logging->count_exceeded_excursion[i] =
  7922. tx_channel_params[i].count_exceeded_excursion;
  7923. xt_logging->max_temperature[i] =
  7924. tx_channel_params[i].max_temperature;
  7925. xt_logging->count_exceeded_temperature[i] =
  7926. tx_channel_params[i].count_exceeded_temperature;
  7927. }
  7928. ret = 0;
  7929. get_params_fail:
  7930. kfree(this_afe.spv4_get_param_resp_ptr);
  7931. done:
  7932. return ret;
  7933. }
  7934. /**
  7935. * afe_get_sp_rx_tmax_xmax_logging_data -
  7936. * command to get excursion logging data from DSP
  7937. *
  7938. * @xt_logging: excursion logging params
  7939. * @port: AFE port ID
  7940. *
  7941. * Returns 0 on success or error on failure
  7942. */
  7943. int afe_get_sp_rx_tmax_xmax_logging_data(
  7944. struct afe_sp_rx_tmax_xmax_logging_param *xt_logging,
  7945. u16 port_id)
  7946. {
  7947. struct param_hdr_v3 param_hdr;
  7948. int ret = -EINVAL;
  7949. if (!xt_logging) {
  7950. pr_err("%s: Invalid params\n", __func__);
  7951. goto done;
  7952. }
  7953. mutex_lock(&this_afe.afe_cmd_lock);
  7954. if (q6core_get_avcs_api_version_per_service(
  7955. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  7956. ret = afe_get_sp_v4_rx_tmax_xmax_logging_data(xt_logging,
  7957. port_id);
  7958. } else {
  7959. memset(&param_hdr, 0, sizeof(param_hdr));
  7960. param_hdr.module_id = AFE_MODULE_FB_SPKR_PROT_V2_RX;
  7961. param_hdr.instance_id = INSTANCE_ID_0;
  7962. param_hdr.param_id = AFE_PARAM_ID_SP_RX_TMAX_XMAX_LOGGING;
  7963. param_hdr.param_size =
  7964. sizeof(struct afe_sp_rx_tmax_xmax_logging_param);
  7965. ret = q6afe_get_params(port_id, NULL, &param_hdr);
  7966. if (ret < 0) {
  7967. pr_err(
  7968. "%s: get param port 0x%x param id[0x%x]failed %d\n",
  7969. __func__, port_id, param_hdr.param_id, ret);
  7970. goto get_params_fail;
  7971. }
  7972. memcpy(xt_logging, &this_afe.xt_logging_resp.param,
  7973. sizeof(this_afe.xt_logging_resp.param));
  7974. }
  7975. pr_debug("%s: max_excursion %d %d count_exceeded_excursion %d %d"
  7976. " max_temperature %d %d count_exceeded_temperature %d %d\n",
  7977. __func__, xt_logging->max_excursion[SP_V2_SPKR_1],
  7978. xt_logging->max_excursion[SP_V2_SPKR_2],
  7979. xt_logging->count_exceeded_excursion[SP_V2_SPKR_1],
  7980. xt_logging->count_exceeded_excursion[SP_V2_SPKR_2],
  7981. xt_logging->max_temperature[SP_V2_SPKR_1],
  7982. xt_logging->max_temperature[SP_V2_SPKR_2],
  7983. xt_logging->count_exceeded_temperature[SP_V2_SPKR_1],
  7984. xt_logging->count_exceeded_temperature[SP_V2_SPKR_2]);
  7985. get_params_fail:
  7986. mutex_unlock(&this_afe.afe_cmd_lock);
  7987. done:
  7988. return ret;
  7989. }
  7990. EXPORT_SYMBOL(afe_get_sp_rx_tmax_xmax_logging_data);
  7991. /**
  7992. * afe_get_av_dev_drift -
  7993. * command to retrieve AV drift
  7994. *
  7995. * @timing_stats: timing stats to be updated with AV drift values
  7996. * @port: AFE port ID
  7997. *
  7998. * Returns 0 on success or error on failure
  7999. */
  8000. int afe_get_av_dev_drift(struct afe_param_id_dev_timing_stats *timing_stats,
  8001. u16 port)
  8002. {
  8003. struct param_hdr_v3 param_hdr;
  8004. int ret = -EINVAL;
  8005. if (!timing_stats) {
  8006. pr_err("%s: Invalid params\n", __func__);
  8007. goto exit;
  8008. }
  8009. mutex_lock(&this_afe.afe_cmd_lock);
  8010. memset(&param_hdr, 0, sizeof(param_hdr));
  8011. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  8012. param_hdr.instance_id = INSTANCE_ID_0;
  8013. param_hdr.param_id = AFE_PARAM_ID_DEV_TIMING_STATS;
  8014. param_hdr.param_size = sizeof(struct afe_param_id_dev_timing_stats);
  8015. ret = q6afe_get_params(port, NULL, &param_hdr);
  8016. if (ret < 0) {
  8017. pr_err("%s: get param port 0x%x param id[0x%x] failed %d\n",
  8018. __func__, port, param_hdr.param_id, ret);
  8019. goto get_params_fail;
  8020. }
  8021. memcpy(timing_stats, &this_afe.av_dev_drift_resp.timing_stats,
  8022. param_hdr.param_size);
  8023. ret = 0;
  8024. get_params_fail:
  8025. mutex_unlock(&this_afe.afe_cmd_lock);
  8026. exit:
  8027. return ret;
  8028. }
  8029. EXPORT_SYMBOL(afe_get_av_dev_drift);
  8030. /**
  8031. * afe_get_doa_tracking_mon -
  8032. * command to retrieve doa tracking monitor data
  8033. *
  8034. * @port: AFE port ID
  8035. * @doa_tracking_data: param to be updated with doa tracking data
  8036. *
  8037. * Returns 0 on success or error on failure
  8038. */
  8039. int afe_get_doa_tracking_mon(u16 port,
  8040. struct doa_tracking_mon_param *doa_tracking_data)
  8041. {
  8042. struct param_hdr_v3 param_hdr;
  8043. int ret = -EINVAL, i = 0;
  8044. if (!doa_tracking_data) {
  8045. pr_err("%s: Invalid params\n", __func__);
  8046. goto exit;
  8047. }
  8048. mutex_lock(&this_afe.afe_cmd_lock);
  8049. memset(&param_hdr, 0, sizeof(param_hdr));
  8050. param_hdr.module_id = AUDPROC_MODULE_ID_FFNS;
  8051. param_hdr.instance_id = INSTANCE_ID_0;
  8052. param_hdr.param_id = AUDPROC_PARAM_ID_FFV_DOA_TRACKING_MONITOR;
  8053. param_hdr.param_size = sizeof(struct doa_tracking_mon_param);
  8054. ret = q6afe_get_params(port, NULL, &param_hdr);
  8055. if (ret < 0) {
  8056. pr_err("%s: get param port 0x%x param id[0x%x] failed %d\n",
  8057. __func__, port, param_hdr.param_id, ret);
  8058. goto get_params_fail;
  8059. }
  8060. memcpy(doa_tracking_data, &this_afe.doa_tracking_mon_resp.doa,
  8061. param_hdr.param_size);
  8062. for (i = 0; i < MAX_DOA_TRACKING_ANGLES; i++) {
  8063. pr_debug("%s: target angle[%d] = %d\n",
  8064. __func__, i, doa_tracking_data->target_angle_L16[i]);
  8065. pr_debug("%s: interference angle[%d] = %d\n",
  8066. __func__, i, doa_tracking_data->interf_angle_L16[i]);
  8067. }
  8068. get_params_fail:
  8069. mutex_unlock(&this_afe.afe_cmd_lock);
  8070. exit:
  8071. return ret;
  8072. }
  8073. EXPORT_SYMBOL(afe_get_doa_tracking_mon);
  8074. static int afe_spv4_get_calib_data(
  8075. struct afe_sp_v4_th_vi_calib_resp *calib_resp)
  8076. {
  8077. struct param_hdr_v3 param_hdr;
  8078. int port = SLIMBUS_4_TX;
  8079. int ret = -EINVAL;
  8080. if (!calib_resp) {
  8081. pr_err("%s: Invalid params\n", __func__);
  8082. goto fail_cmd;
  8083. }
  8084. if (this_afe.vi_tx_port != -1)
  8085. port = this_afe.vi_tx_port;
  8086. mutex_lock(&this_afe.afe_cmd_lock);
  8087. memset(&param_hdr, 0, sizeof(param_hdr));
  8088. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  8089. param_hdr.instance_id = INSTANCE_ID_0;
  8090. param_hdr.param_id = AFE_PARAM_ID_SP_V4_CALIB_RES_CFG;
  8091. param_hdr.param_size = sizeof(struct afe_sp_v4_th_vi_calib_resp);
  8092. ret = q6afe_get_params(port, NULL, &param_hdr);
  8093. if (ret < 0) {
  8094. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  8095. __func__, port, param_hdr.param_id, ret);
  8096. goto get_params_fail;
  8097. }
  8098. memcpy(&calib_resp->res_cfg, &this_afe.spv4_calib_data.res_cfg,
  8099. sizeof(this_afe.calib_data.res_cfg));
  8100. pr_info("%s: state %s resistance %d %d\n", __func__,
  8101. fbsp_state[calib_resp->res_cfg.th_vi_ca_state],
  8102. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_1],
  8103. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_2]);
  8104. ret = 0;
  8105. get_params_fail:
  8106. mutex_unlock(&this_afe.afe_cmd_lock);
  8107. fail_cmd:
  8108. return ret;
  8109. }
  8110. int afe_spk_prot_get_calib_data(struct afe_spkr_prot_get_vi_calib *calib_resp)
  8111. {
  8112. struct param_hdr_v3 param_hdr;
  8113. int port = SLIMBUS_4_TX;
  8114. int ret = -EINVAL;
  8115. if (!calib_resp) {
  8116. pr_err("%s: Invalid params\n", __func__);
  8117. goto fail_cmd;
  8118. }
  8119. if (this_afe.vi_tx_port != -1)
  8120. port = this_afe.vi_tx_port;
  8121. mutex_lock(&this_afe.afe_cmd_lock);
  8122. memset(&param_hdr, 0, sizeof(param_hdr));
  8123. param_hdr.module_id = AFE_MODULE_FB_SPKR_PROT_VI_PROC_V2;
  8124. param_hdr.instance_id = INSTANCE_ID_0;
  8125. param_hdr.param_id = AFE_PARAM_ID_CALIB_RES_CFG_V2;
  8126. param_hdr.param_size = sizeof(struct afe_spkr_prot_get_vi_calib);
  8127. ret = q6afe_get_params(port, NULL, &param_hdr);
  8128. if (ret < 0) {
  8129. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  8130. __func__, port, param_hdr.param_id, ret);
  8131. goto get_params_fail;
  8132. }
  8133. memcpy(&calib_resp->res_cfg, &this_afe.calib_data.res_cfg,
  8134. sizeof(this_afe.calib_data.res_cfg));
  8135. pr_info("%s: state %s resistance %d %d\n", __func__,
  8136. fbsp_state[calib_resp->res_cfg.th_vi_ca_state],
  8137. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_1],
  8138. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_2]);
  8139. ret = 0;
  8140. get_params_fail:
  8141. mutex_unlock(&this_afe.afe_cmd_lock);
  8142. fail_cmd:
  8143. return ret;
  8144. }
  8145. /**
  8146. * afe_spk_prot_feed_back_cfg -
  8147. * command to setup spk protection feedback config
  8148. *
  8149. * @src_port: source port id
  8150. * @dst_port: destination port id
  8151. * @l_ch: left speaker active or not
  8152. * @r_ch: right speaker active or not
  8153. * @enable: flag to enable or disable
  8154. *
  8155. * Returns 0 on success or error on failure
  8156. */
  8157. int afe_spk_prot_feed_back_cfg(int src_port, int dst_port,
  8158. int l_ch, int r_ch, u32 enable)
  8159. {
  8160. int ret = -EINVAL;
  8161. union afe_spkr_prot_config prot_config;
  8162. int index = 0;
  8163. if (!enable) {
  8164. pr_debug("%s: Disable Feedback tx path", __func__);
  8165. this_afe.vi_tx_port = -1;
  8166. this_afe.vi_rx_port = -1;
  8167. return 0;
  8168. }
  8169. if ((q6audio_validate_port(src_port) < 0) ||
  8170. (q6audio_validate_port(dst_port) < 0)) {
  8171. pr_err("%s: invalid ports src 0x%x dst 0x%x",
  8172. __func__, src_port, dst_port);
  8173. goto fail_cmd;
  8174. }
  8175. if (!l_ch && !r_ch) {
  8176. pr_err("%s: error ch values zero\n", __func__);
  8177. goto fail_cmd;
  8178. }
  8179. pr_debug("%s: src_port 0x%x dst_port 0x%x l_ch %d r_ch %d\n",
  8180. __func__, src_port, dst_port, l_ch, r_ch);
  8181. if (q6core_get_avcs_api_version_per_service(
  8182. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  8183. if (l_ch) {
  8184. this_afe.v4_ch_map_cfg.chan_info[index++] = 1;
  8185. this_afe.v4_ch_map_cfg.chan_info[index++] = 2;
  8186. }
  8187. if (r_ch) {
  8188. this_afe.v4_ch_map_cfg.chan_info[index++] = 3;
  8189. this_afe.v4_ch_map_cfg.chan_info[index++] = 4;
  8190. }
  8191. this_afe.v4_ch_map_cfg.num_channels = index;
  8192. pr_debug("%s no of channels: %d\n", __func__, index);
  8193. this_afe.vi_tx_port = src_port;
  8194. this_afe.vi_rx_port = dst_port;
  8195. ret = 0;
  8196. } else {
  8197. memset(&prot_config, 0, sizeof(prot_config));
  8198. prot_config.feedback_path_cfg.dst_portid =
  8199. q6audio_get_port_id(dst_port);
  8200. if (l_ch) {
  8201. prot_config.feedback_path_cfg.chan_info[index++] = 1;
  8202. prot_config.feedback_path_cfg.chan_info[index++] = 2;
  8203. }
  8204. if (r_ch) {
  8205. prot_config.feedback_path_cfg.chan_info[index++] = 3;
  8206. prot_config.feedback_path_cfg.chan_info[index++] = 4;
  8207. }
  8208. prot_config.feedback_path_cfg.num_channels = index;
  8209. pr_debug("%s no of channels: %d\n", __func__, index);
  8210. prot_config.feedback_path_cfg.minor_version = 1;
  8211. ret = afe_spk_prot_prepare(src_port, dst_port,
  8212. AFE_PARAM_ID_FEEDBACK_PATH_CFG, &prot_config,
  8213. sizeof(union afe_spkr_prot_config));
  8214. }
  8215. fail_cmd:
  8216. return ret;
  8217. }
  8218. EXPORT_SYMBOL(afe_spk_prot_feed_back_cfg);
  8219. static int get_cal_type_index(int32_t cal_type)
  8220. {
  8221. int ret = -EINVAL;
  8222. switch (cal_type) {
  8223. case AFE_COMMON_RX_CAL_TYPE:
  8224. ret = AFE_COMMON_RX_CAL;
  8225. break;
  8226. case AFE_COMMON_TX_CAL_TYPE:
  8227. ret = AFE_COMMON_TX_CAL;
  8228. break;
  8229. case AFE_LSM_TX_CAL_TYPE:
  8230. ret = AFE_LSM_TX_CAL;
  8231. break;
  8232. case AFE_AANC_CAL_TYPE:
  8233. ret = AFE_AANC_CAL;
  8234. break;
  8235. case AFE_HW_DELAY_CAL_TYPE:
  8236. ret = AFE_HW_DELAY_CAL;
  8237. break;
  8238. case AFE_FB_SPKR_PROT_CAL_TYPE:
  8239. ret = AFE_FB_SPKR_PROT_CAL;
  8240. break;
  8241. case AFE_SIDETONE_CAL_TYPE:
  8242. ret = AFE_SIDETONE_CAL;
  8243. break;
  8244. case AFE_SIDETONE_IIR_CAL_TYPE:
  8245. ret = AFE_SIDETONE_IIR_CAL;
  8246. break;
  8247. case AFE_TOPOLOGY_CAL_TYPE:
  8248. ret = AFE_TOPOLOGY_CAL;
  8249. break;
  8250. case AFE_LSM_TOPOLOGY_CAL_TYPE:
  8251. ret = AFE_LSM_TOPOLOGY_CAL;
  8252. break;
  8253. case AFE_CUST_TOPOLOGY_CAL_TYPE:
  8254. ret = AFE_CUST_TOPOLOGY_CAL;
  8255. break;
  8256. default:
  8257. pr_err("%s: invalid cal type %d!\n", __func__, cal_type);
  8258. }
  8259. return ret;
  8260. }
  8261. int afe_alloc_cal(int32_t cal_type, size_t data_size,
  8262. void *data)
  8263. {
  8264. int ret = 0;
  8265. int cal_index;
  8266. cal_index = get_cal_type_index(cal_type);
  8267. pr_debug("%s: cal_type = %d cal_index = %d\n",
  8268. __func__, cal_type, cal_index);
  8269. if (cal_index < 0) {
  8270. pr_err("%s: could not get cal index %d!\n",
  8271. __func__, cal_index);
  8272. ret = -EINVAL;
  8273. goto done;
  8274. }
  8275. mutex_lock(&this_afe.afe_cmd_lock);
  8276. ret = cal_utils_alloc_cal(data_size, data,
  8277. this_afe.cal_data[cal_index], 0, NULL);
  8278. if (ret < 0) {
  8279. pr_err("%s: cal_utils_alloc_block failed, ret = %d, cal type = %d!\n",
  8280. __func__, ret, cal_type);
  8281. ret = -EINVAL;
  8282. mutex_unlock(&this_afe.afe_cmd_lock);
  8283. goto done;
  8284. }
  8285. mutex_unlock(&this_afe.afe_cmd_lock);
  8286. done:
  8287. return ret;
  8288. }
  8289. static int afe_dealloc_cal(int32_t cal_type, size_t data_size,
  8290. void *data)
  8291. {
  8292. int ret = 0;
  8293. int cal_index;
  8294. pr_debug("%s:\n", __func__);
  8295. cal_index = get_cal_type_index(cal_type);
  8296. if (cal_index < 0) {
  8297. pr_err("%s: could not get cal index %d!\n",
  8298. __func__, cal_index);
  8299. ret = -EINVAL;
  8300. goto done;
  8301. }
  8302. ret = cal_utils_dealloc_cal(data_size, data,
  8303. this_afe.cal_data[cal_index]);
  8304. if (ret < 0) {
  8305. pr_err("%s: cal_utils_dealloc_block failed, ret = %d, cal type = %d!\n",
  8306. __func__, ret, cal_type);
  8307. ret = -EINVAL;
  8308. goto done;
  8309. }
  8310. done:
  8311. return ret;
  8312. }
  8313. static int afe_set_cal(int32_t cal_type, size_t data_size,
  8314. void *data)
  8315. {
  8316. int ret = 0;
  8317. int cal_index;
  8318. pr_debug("%s:\n", __func__);
  8319. cal_index = get_cal_type_index(cal_type);
  8320. if (cal_index < 0) {
  8321. pr_err("%s: could not get cal index %d!\n",
  8322. __func__, cal_index);
  8323. ret = -EINVAL;
  8324. goto done;
  8325. }
  8326. ret = cal_utils_set_cal(data_size, data,
  8327. this_afe.cal_data[cal_index], 0, NULL);
  8328. if (ret < 0) {
  8329. pr_err("%s: cal_utils_set_cal failed, ret = %d, cal type = %d!\n",
  8330. __func__, ret, cal_type);
  8331. ret = -EINVAL;
  8332. goto done;
  8333. }
  8334. if (cal_index == AFE_CUST_TOPOLOGY_CAL) {
  8335. mutex_lock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  8336. this_afe.set_custom_topology = 1;
  8337. pr_debug("%s:[AFE_CUSTOM_TOPOLOGY] ret = %d, cal type = %d!\n",
  8338. __func__, ret, cal_type);
  8339. mutex_unlock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  8340. }
  8341. done:
  8342. return ret;
  8343. }
  8344. static struct cal_block_data *afe_find_hw_delay_by_path(
  8345. struct cal_type_data *cal_type, int path)
  8346. {
  8347. struct list_head *ptr, *next;
  8348. struct cal_block_data *cal_block = NULL;
  8349. pr_debug("%s:\n", __func__);
  8350. list_for_each_safe(ptr, next,
  8351. &cal_type->cal_blocks) {
  8352. cal_block = list_entry(ptr,
  8353. struct cal_block_data, list);
  8354. if (cal_utils_is_cal_stale(cal_block))
  8355. continue;
  8356. if (((struct audio_cal_info_hw_delay *)cal_block->cal_info)
  8357. ->path == path) {
  8358. return cal_block;
  8359. }
  8360. }
  8361. return NULL;
  8362. }
  8363. static int afe_get_cal_hw_delay(int32_t path,
  8364. struct audio_cal_hw_delay_entry *entry)
  8365. {
  8366. int ret = 0;
  8367. int i;
  8368. struct cal_block_data *cal_block = NULL;
  8369. struct audio_cal_hw_delay_data *hw_delay_info = NULL;
  8370. pr_debug("%s:\n", __func__);
  8371. if (this_afe.cal_data[AFE_HW_DELAY_CAL] == NULL) {
  8372. pr_err("%s: AFE_HW_DELAY_CAL not initialized\n", __func__);
  8373. ret = -EINVAL;
  8374. goto done;
  8375. }
  8376. if (entry == NULL) {
  8377. pr_err("%s: entry is NULL\n", __func__);
  8378. ret = -EINVAL;
  8379. goto done;
  8380. }
  8381. if ((path >= MAX_PATH_TYPE) || (path < 0)) {
  8382. pr_err("%s: bad path: %d\n",
  8383. __func__, path);
  8384. ret = -EINVAL;
  8385. goto done;
  8386. }
  8387. mutex_lock(&this_afe.cal_data[AFE_HW_DELAY_CAL]->lock);
  8388. cal_block = afe_find_hw_delay_by_path(
  8389. this_afe.cal_data[AFE_HW_DELAY_CAL], path);
  8390. if (cal_block == NULL)
  8391. goto unlock;
  8392. hw_delay_info = &((struct audio_cal_info_hw_delay *)
  8393. cal_block->cal_info)->data;
  8394. if (hw_delay_info->num_entries > MAX_HW_DELAY_ENTRIES) {
  8395. pr_err("%s: invalid num entries: %d\n",
  8396. __func__, hw_delay_info->num_entries);
  8397. ret = -EINVAL;
  8398. goto unlock;
  8399. }
  8400. for (i = 0; i < hw_delay_info->num_entries; i++) {
  8401. if (hw_delay_info->entry[i].sample_rate ==
  8402. entry->sample_rate) {
  8403. entry->delay_usec = hw_delay_info->entry[i].delay_usec;
  8404. break;
  8405. }
  8406. }
  8407. if (i == hw_delay_info->num_entries) {
  8408. pr_err("%s: Unable to find delay for sample rate %d\n",
  8409. __func__, entry->sample_rate);
  8410. ret = -EFAULT;
  8411. goto unlock;
  8412. }
  8413. cal_utils_mark_cal_used(cal_block);
  8414. pr_debug("%s: Path = %d samplerate = %u usec = %u status %d\n",
  8415. __func__, path, entry->sample_rate, entry->delay_usec, ret);
  8416. unlock:
  8417. mutex_unlock(&this_afe.cal_data[AFE_HW_DELAY_CAL]->lock);
  8418. done:
  8419. return ret;
  8420. }
  8421. static int afe_set_cal_sp_th_vi_v_vali_cfg(int32_t cal_type, size_t data_size,
  8422. void *data)
  8423. {
  8424. int ret = 0;
  8425. struct audio_cal_type_sp_th_vi_v_vali_cfg *cal_data = data;
  8426. if (cal_data == NULL || data_size != sizeof(*cal_data))
  8427. goto done;
  8428. memcpy(&this_afe.v_vali_cfg, &cal_data->cal_info,
  8429. sizeof(this_afe.v_vali_cfg));
  8430. done:
  8431. return ret;
  8432. }
  8433. static int afe_set_cal_sp_th_vi_ftm_cfg(int32_t cal_type, size_t data_size,
  8434. void *data)
  8435. {
  8436. int ret = 0;
  8437. struct audio_cal_type_sp_th_vi_ftm_cfg *cal_data = data;
  8438. if (cal_data == NULL || data_size != sizeof(*cal_data))
  8439. goto done;
  8440. memcpy(&this_afe.th_ftm_cfg, &cal_data->cal_info,
  8441. sizeof(this_afe.th_ftm_cfg));
  8442. done:
  8443. return ret;
  8444. }
  8445. static int afe_set_cal_sp_th_vi_cfg(int32_t cal_type, size_t data_size,
  8446. void *data)
  8447. {
  8448. int ret = 0;
  8449. struct audio_cal_type_sp_th_vi_ftm_cfg *cal_data = data;
  8450. uint32_t mode;
  8451. if (cal_data == NULL ||
  8452. data_size > sizeof(*cal_data) ||
  8453. this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL)
  8454. goto done;
  8455. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  8456. mode = cal_data->cal_info.mode;
  8457. pr_debug("%s: cal_type = %d, mode = %d\n", __func__, cal_type, mode);
  8458. if (mode == MSM_SPKR_PROT_IN_FTM_MODE) {
  8459. ret = afe_set_cal_sp_th_vi_ftm_cfg(cal_type,
  8460. data_size, data);
  8461. } else if (mode == MSM_SPKR_PROT_IN_V_VALI_MODE) {
  8462. ret = afe_set_cal_sp_th_vi_v_vali_cfg(cal_type,
  8463. data_size, data);
  8464. }
  8465. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  8466. done:
  8467. return ret;
  8468. }
  8469. static int afe_set_cal_sp_ex_vi_ftm_cfg(int32_t cal_type, size_t data_size,
  8470. void *data)
  8471. {
  8472. int ret = 0;
  8473. struct audio_cal_type_sp_ex_vi_ftm_cfg *cal_data = data;
  8474. if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL ||
  8475. cal_data == NULL ||
  8476. data_size != sizeof(*cal_data))
  8477. goto done;
  8478. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  8479. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  8480. memcpy(&this_afe.ex_ftm_cfg, &cal_data->cal_info,
  8481. sizeof(this_afe.ex_ftm_cfg));
  8482. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  8483. done:
  8484. return ret;
  8485. }
  8486. static int afe_set_cal_fb_spkr_prot(int32_t cal_type, size_t data_size,
  8487. void *data)
  8488. {
  8489. int ret = 0;
  8490. struct audio_cal_type_fb_spk_prot_cfg *cal_data = data;
  8491. pr_debug("%s:\n", __func__);
  8492. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  8493. goto done;
  8494. if (cal_data == NULL)
  8495. goto done;
  8496. if (data_size != sizeof(*cal_data))
  8497. goto done;
  8498. if (cal_data->cal_info.mode == MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS)
  8499. __pm_wakeup_event(wl.ws, jiffies_to_msecs(WAKELOCK_TIMEOUT));
  8500. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  8501. memcpy(&this_afe.prot_cfg, &cal_data->cal_info,
  8502. sizeof(this_afe.prot_cfg));
  8503. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  8504. done:
  8505. return ret;
  8506. }
  8507. static int afe_get_cal_sp_th_vi_v_vali_param(int32_t cal_type, size_t data_size,
  8508. void *data)
  8509. {
  8510. int i, ret = 0;
  8511. struct audio_cal_type_sp_th_vi_v_vali_param *cal_data = data;
  8512. struct afe_sp_th_vi_v_vali_get_param th_vi_v_vali;
  8513. uint32_t size;
  8514. void *params = NULL;
  8515. struct afe_sp_v4_channel_v_vali_params *v_vali_params;
  8516. if (this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  8517. cal_data == NULL ||
  8518. data_size != sizeof(*cal_data))
  8519. goto done;
  8520. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  8521. cal_data->cal_info.status[i] = -EINVAL;
  8522. cal_data->cal_info.vrms_q24[i] = -1;
  8523. }
  8524. if (q6core_get_avcs_api_version_per_service(
  8525. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  8526. size = sizeof(struct afe_sp_v4_param_th_vi_v_vali_params) +
  8527. (SP_V2_NUM_MAX_SPKRS *
  8528. sizeof(struct afe_sp_v4_channel_v_vali_params));
  8529. params = kzalloc(size, GFP_KERNEL);
  8530. if (!params)
  8531. return -ENOMEM;
  8532. v_vali_params =
  8533. (struct afe_sp_v4_channel_v_vali_params *)((u8 *)params +
  8534. sizeof(struct afe_sp_v4_param_th_vi_v_vali_params));
  8535. if (!afe_get_spv4_th_vi_v_vali_data(params, size)) {
  8536. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  8537. pr_debug("%s: ftm param status = %d\n",
  8538. __func__, v_vali_params[i].status);
  8539. if (v_vali_params[i].status ==
  8540. V_VALI_IN_PROGRESS) {
  8541. cal_data->cal_info.status[i] = -EAGAIN;
  8542. } else if (v_vali_params[i].status ==
  8543. V_VALI_SUCCESS) {
  8544. cal_data->cal_info.status[i] =
  8545. V_VALI_SUCCESS;
  8546. cal_data->cal_info.vrms_q24[i] =
  8547. v_vali_params[i].vrms_q24;
  8548. }
  8549. }
  8550. }
  8551. kfree(params);
  8552. } else {
  8553. if (!afe_get_sp_th_vi_v_vali_data(&th_vi_v_vali)) {
  8554. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  8555. pr_debug(
  8556. "%s: v-vali param status = %d\n",
  8557. __func__, th_vi_v_vali.param.status[i]);
  8558. if (th_vi_v_vali.param.status[i] ==
  8559. V_VALI_IN_PROGRESS) {
  8560. cal_data->cal_info.status[i] = -EAGAIN;
  8561. } else if (th_vi_v_vali.param.status[i] ==
  8562. V_VALI_SUCCESS) {
  8563. cal_data->cal_info.status[i] =
  8564. V_VALI_SUCCESS;
  8565. cal_data->cal_info.vrms_q24[i] =
  8566. th_vi_v_vali.param.vrms_q24[i];
  8567. }
  8568. }
  8569. }
  8570. }
  8571. this_afe.v_vali_flag = 0;
  8572. done:
  8573. return ret;
  8574. }
  8575. static int afe_get_cal_sp_th_vi_ftm_param(int32_t cal_type, size_t data_size,
  8576. void *data)
  8577. {
  8578. int i, ret = 0;
  8579. struct audio_cal_type_sp_th_vi_param *cal_data = data;
  8580. struct afe_sp_th_vi_get_param th_vi;
  8581. uint32_t size;
  8582. void *params = NULL;
  8583. struct afe_sp_v4_channel_ftm_params *th_vi_ftm_params = NULL;
  8584. if (this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  8585. cal_data == NULL ||
  8586. data_size != sizeof(*cal_data))
  8587. goto done;
  8588. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  8589. cal_data->cal_info.status[i] = -EINVAL;
  8590. cal_data->cal_info.r_dc_q24[i] = -1;
  8591. cal_data->cal_info.temp_q22[i] = -1;
  8592. }
  8593. if (q6core_get_avcs_api_version_per_service(
  8594. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  8595. size = sizeof(struct afe_sp_v4_param_th_vi_ftm_params) +
  8596. (SP_V2_NUM_MAX_SPKRS *
  8597. sizeof(struct afe_sp_v4_channel_ftm_params));
  8598. params = kzalloc(size, GFP_KERNEL);
  8599. if (!params)
  8600. return -ENOMEM;
  8601. th_vi_ftm_params = (struct afe_sp_v4_channel_ftm_params *)
  8602. ((u8 *)params +
  8603. sizeof(struct afe_sp_v4_param_th_vi_ftm_params));
  8604. if (!afe_get_spv4_th_vi_ftm_data(params, size)) {
  8605. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  8606. pr_debug("%s: SP V4 ftm param status = %d\n",
  8607. __func__, th_vi_ftm_params[i].status);
  8608. if (th_vi_ftm_params[i].status ==
  8609. FBSP_IN_PROGRESS) {
  8610. cal_data->cal_info.status[i] = -EAGAIN;
  8611. } else if (th_vi_ftm_params[i].status ==
  8612. FBSP_SUCCESS) {
  8613. cal_data->cal_info.status[i] = 0;
  8614. cal_data->cal_info.r_dc_q24[i] =
  8615. th_vi_ftm_params[i].dc_res_q24;
  8616. cal_data->cal_info.temp_q22[i] =
  8617. th_vi_ftm_params[i].temp_q22;
  8618. }
  8619. }
  8620. }
  8621. kfree(params);
  8622. } else {
  8623. if (!afe_get_sp_th_vi_ftm_data(&th_vi)) {
  8624. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  8625. pr_debug("%s: ftm param status = %d\n",
  8626. __func__, th_vi.param.status[i]);
  8627. if (th_vi.param.status[i] == FBSP_IN_PROGRESS) {
  8628. cal_data->cal_info.status[i] = -EAGAIN;
  8629. } else if (th_vi.param.status[i] ==
  8630. FBSP_SUCCESS) {
  8631. cal_data->cal_info.status[i] = 0;
  8632. cal_data->cal_info.r_dc_q24[i] =
  8633. th_vi.param.dc_res_q24[i];
  8634. cal_data->cal_info.temp_q22[i] =
  8635. th_vi.param.temp_q22[i];
  8636. }
  8637. }
  8638. }
  8639. }
  8640. done:
  8641. return ret;
  8642. }
  8643. static int afe_get_cal_sp_th_vi_param(int32_t cal_type, size_t data_size,
  8644. void *data)
  8645. {
  8646. struct audio_cal_type_sp_th_vi_param *cal_data = data;
  8647. uint32_t mode;
  8648. int ret = 0;
  8649. if (cal_data == NULL ||
  8650. data_size > sizeof(*cal_data) ||
  8651. this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL)
  8652. return 0;
  8653. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  8654. mode = cal_data->cal_info.mode;
  8655. pr_debug("%s: cal_type = %d,mode = %d\n", __func__, cal_type, mode);
  8656. if (mode == MSM_SPKR_PROT_IN_V_VALI_MODE)
  8657. ret = afe_get_cal_sp_th_vi_v_vali_param(cal_type,
  8658. data_size, data);
  8659. else
  8660. ret = afe_get_cal_sp_th_vi_ftm_param(cal_type,
  8661. data_size, data);
  8662. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  8663. return ret;
  8664. }
  8665. static int afe_get_cal_spv4_ex_vi_ftm_param(int32_t cal_type, size_t data_size,
  8666. void *data)
  8667. {
  8668. int i, ret = 0;
  8669. struct audio_cal_type_sp_v4_ex_vi_param *cal_data = data;
  8670. uint32_t size;
  8671. void *params = NULL;
  8672. struct afe_sp_v4_channel_ex_vi_ftm_params *ex_vi_ftm_param;
  8673. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  8674. if (this_afe.cal_data[AFE_FB_SPKR_PROT_V4_EX_VI_CAL] == NULL ||
  8675. cal_data == NULL ||
  8676. data_size != sizeof(*cal_data))
  8677. goto done;
  8678. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_V4_EX_VI_CAL]->lock);
  8679. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  8680. cal_data->cal_info.status[i] = -EINVAL;
  8681. cal_data->cal_info.ftm_re_q24[i] = -1;
  8682. cal_data->cal_info.ftm_re_q24[i] = -1;
  8683. cal_data->cal_info.ftm_Rms_q24[i] = -1;
  8684. cal_data->cal_info.ftm_Kms_q24[i] = -1;
  8685. cal_data->cal_info.ftm_freq_q20[i] = -1;
  8686. cal_data->cal_info.ftm_Qms_q24[i] = -1;
  8687. }
  8688. size = sizeof(struct afe_sp_v4_param_ex_vi_ftm_params) +
  8689. (SP_V2_NUM_MAX_SPKRS *
  8690. sizeof(struct afe_sp_v4_channel_ex_vi_ftm_params));
  8691. params = kzalloc(size, GFP_KERNEL);
  8692. if (!params) {
  8693. mutex_unlock(
  8694. &this_afe.cal_data[AFE_FB_SPKR_PROT_V4_EX_VI_CAL]->lock);
  8695. return -ENOMEM;
  8696. }
  8697. ex_vi_ftm_param = (struct afe_sp_v4_channel_ex_vi_ftm_params *)
  8698. ((u8 *)params +
  8699. sizeof(struct afe_sp_v4_param_ex_vi_ftm_params));
  8700. if (!afe_get_spv4_ex_vi_ftm_data(params, size)) {
  8701. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  8702. pr_debug("%s: ftm param status = %d\n",
  8703. __func__, ex_vi_ftm_param[i].status);
  8704. if (ex_vi_ftm_param[i].status == FBSP_IN_PROGRESS) {
  8705. cal_data->cal_info.status[i] = -EAGAIN;
  8706. } else if (ex_vi_ftm_param[i].status == FBSP_SUCCESS) {
  8707. cal_data->cal_info.status[i] = 0;
  8708. cal_data->cal_info.ftm_re_q24[i] =
  8709. ex_vi_ftm_param[i].ftm_re_q24;
  8710. cal_data->cal_info.ftm_Bl_q24[i] =
  8711. ex_vi_ftm_param[i].ftm_Bl_q24;
  8712. cal_data->cal_info.ftm_Rms_q24[i] =
  8713. ex_vi_ftm_param[i].ftm_Rms_q24;
  8714. cal_data->cal_info.ftm_Kms_q24[i] =
  8715. ex_vi_ftm_param[i].ftm_Kms_q24;
  8716. cal_data->cal_info.ftm_freq_q20[i] =
  8717. ex_vi_ftm_param[i].ftm_Fres_q20;
  8718. cal_data->cal_info.ftm_Qms_q24[i] =
  8719. ex_vi_ftm_param[i].ftm_Qms_q24;
  8720. }
  8721. }
  8722. }
  8723. kfree(params);
  8724. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_V4_EX_VI_CAL]->lock);
  8725. done:
  8726. return ret;
  8727. }
  8728. static int afe_get_cal_sp_ex_vi_ftm_param(int32_t cal_type, size_t data_size,
  8729. void *data)
  8730. {
  8731. int i, ret = 0;
  8732. struct audio_cal_type_sp_ex_vi_param *cal_data = data;
  8733. struct afe_sp_ex_vi_get_param ex_vi;
  8734. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  8735. if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL ||
  8736. cal_data == NULL ||
  8737. data_size != sizeof(*cal_data))
  8738. goto done;
  8739. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  8740. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  8741. cal_data->cal_info.status[i] = -EINVAL;
  8742. cal_data->cal_info.freq_q20[i] = -1;
  8743. cal_data->cal_info.resis_q24[i] = -1;
  8744. cal_data->cal_info.qmct_q24[i] = -1;
  8745. }
  8746. if (!afe_get_sp_ex_vi_ftm_data(&ex_vi)) {
  8747. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  8748. pr_debug("%s: ftm param status = %d\n",
  8749. __func__, ex_vi.param.status[i]);
  8750. if (ex_vi.param.status[i] == FBSP_IN_PROGRESS) {
  8751. cal_data->cal_info.status[i] = -EAGAIN;
  8752. } else if (ex_vi.param.status[i] == FBSP_SUCCESS) {
  8753. cal_data->cal_info.status[i] = 0;
  8754. cal_data->cal_info.freq_q20[i] =
  8755. ex_vi.param.freq_q20[i];
  8756. cal_data->cal_info.resis_q24[i] =
  8757. ex_vi.param.resis_q24[i];
  8758. cal_data->cal_info.qmct_q24[i] =
  8759. ex_vi.param.qmct_q24[i];
  8760. }
  8761. }
  8762. }
  8763. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  8764. done:
  8765. return ret;
  8766. }
  8767. static int afe_get_cal_fb_spkr_prot(int32_t cal_type, size_t data_size,
  8768. void *data)
  8769. {
  8770. int ret = 0;
  8771. struct audio_cal_type_fb_spk_prot_status *cal_data = data;
  8772. struct afe_spkr_prot_get_vi_calib calib_resp;
  8773. struct afe_sp_v4_th_vi_calib_resp spv4_calib_resp;
  8774. pr_debug("%s:\n", __func__);
  8775. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  8776. goto done;
  8777. if (cal_data == NULL)
  8778. goto done;
  8779. if (data_size != sizeof(*cal_data))
  8780. goto done;
  8781. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  8782. if (this_afe.prot_cfg.mode == MSM_SPKR_PROT_CALIBRATED) {
  8783. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  8784. this_afe.prot_cfg.r0[SP_V2_SPKR_1];
  8785. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  8786. this_afe.prot_cfg.r0[SP_V2_SPKR_2];
  8787. cal_data->cal_info.status = 0;
  8788. } else if (this_afe.prot_cfg.mode ==
  8789. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS) {
  8790. /*Call AFE to query the status*/
  8791. cal_data->cal_info.status = -EINVAL;
  8792. cal_data->cal_info.r0[SP_V2_SPKR_1] = -1;
  8793. cal_data->cal_info.r0[SP_V2_SPKR_2] = -1;
  8794. if (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9) {
  8795. if (!(q6core_get_avcs_api_version_per_service(
  8796. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >=
  8797. AFE_API_VERSION_V9)) {
  8798. pr_debug(
  8799. "%s: AFE API version is not supported!\n",
  8800. __func__);
  8801. goto done;
  8802. }
  8803. if (!afe_spv4_get_calib_data(&spv4_calib_resp)) {
  8804. if (spv4_calib_resp.res_cfg.th_vi_ca_state ==
  8805. FBSP_IN_PROGRESS)
  8806. cal_data->cal_info.status = -EAGAIN;
  8807. else if (
  8808. spv4_calib_resp.res_cfg.th_vi_ca_state ==
  8809. FBSP_SUCCESS) {
  8810. cal_data->cal_info.status = 0;
  8811. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  8812. spv4_calib_resp.res_cfg.r0_cali_q24[
  8813. SP_V2_SPKR_1];
  8814. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  8815. spv4_calib_resp.res_cfg.r0_cali_q24[
  8816. SP_V2_SPKR_2];
  8817. }
  8818. }
  8819. } else {
  8820. if (!afe_spk_prot_get_calib_data(&calib_resp)) {
  8821. if (calib_resp.res_cfg.th_vi_ca_state ==
  8822. FBSP_IN_PROGRESS)
  8823. cal_data->cal_info.status = -EAGAIN;
  8824. else if (calib_resp.res_cfg.th_vi_ca_state ==
  8825. FBSP_SUCCESS) {
  8826. cal_data->cal_info.status = 0;
  8827. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  8828. calib_resp.res_cfg.r0_cali_q24[
  8829. SP_V2_SPKR_1];
  8830. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  8831. calib_resp.res_cfg.r0_cali_q24[
  8832. SP_V2_SPKR_2];
  8833. }
  8834. }
  8835. }
  8836. if (!cal_data->cal_info.status) {
  8837. this_afe.prot_cfg.mode =
  8838. MSM_SPKR_PROT_CALIBRATED;
  8839. this_afe.prot_cfg.r0[SP_V2_SPKR_1] =
  8840. cal_data->cal_info.r0[SP_V2_SPKR_1];
  8841. this_afe.prot_cfg.r0[SP_V2_SPKR_2] =
  8842. cal_data->cal_info.r0[SP_V2_SPKR_2];
  8843. }
  8844. } else {
  8845. /*Indicates calibration data is invalid*/
  8846. cal_data->cal_info.status = -EINVAL;
  8847. cal_data->cal_info.r0[SP_V2_SPKR_1] = -1;
  8848. cal_data->cal_info.r0[SP_V2_SPKR_2] = -1;
  8849. }
  8850. this_afe.initial_cal = 0;
  8851. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  8852. __pm_relax(wl.ws);
  8853. done:
  8854. return ret;
  8855. }
  8856. static int afe_map_cal_data(int32_t cal_type,
  8857. struct cal_block_data *cal_block)
  8858. {
  8859. int ret = 0;
  8860. int cal_index;
  8861. pr_debug("%s:\n", __func__);
  8862. cal_index = get_cal_type_index(cal_type);
  8863. if (cal_index < 0) {
  8864. pr_err("%s: could not get cal index %d!\n",
  8865. __func__, cal_index);
  8866. ret = -EINVAL;
  8867. goto done;
  8868. }
  8869. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  8870. ret = afe_cmd_memory_map(cal_block->cal_data.paddr,
  8871. cal_block->map_data.map_size);
  8872. atomic_set(&this_afe.mem_map_cal_index, -1);
  8873. if (ret < 0) {
  8874. pr_err("%s: mmap did not work! size = %zd ret %d\n",
  8875. __func__,
  8876. cal_block->map_data.map_size, ret);
  8877. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %zd\n",
  8878. __func__,
  8879. &cal_block->cal_data.paddr,
  8880. cal_block->map_data.map_size);
  8881. goto done;
  8882. }
  8883. cal_block->map_data.q6map_handle = atomic_read(&this_afe.
  8884. mem_map_cal_handles[cal_index]);
  8885. done:
  8886. return ret;
  8887. }
  8888. static int afe_unmap_cal_data(int32_t cal_type,
  8889. struct cal_block_data *cal_block)
  8890. {
  8891. int ret = 0;
  8892. int cal_index;
  8893. pr_debug("%s:\n", __func__);
  8894. cal_index = get_cal_type_index(cal_type);
  8895. if (cal_index < 0) {
  8896. pr_err("%s: could not get cal index %d!\n",
  8897. __func__, cal_index);
  8898. ret = -EINVAL;
  8899. goto done;
  8900. }
  8901. if (cal_block == NULL) {
  8902. pr_err("%s: Cal block is NULL!\n",
  8903. __func__);
  8904. goto done;
  8905. }
  8906. if (cal_block->map_data.q6map_handle == 0) {
  8907. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  8908. __func__);
  8909. goto done;
  8910. }
  8911. atomic_set(&this_afe.mem_map_cal_handles[cal_index],
  8912. cal_block->map_data.q6map_handle);
  8913. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  8914. ret = afe_cmd_memory_unmap_nowait(
  8915. cal_block->map_data.q6map_handle);
  8916. atomic_set(&this_afe.mem_map_cal_index, -1);
  8917. if (ret < 0) {
  8918. pr_err("%s: unmap did not work! cal_type %i ret %d\n",
  8919. __func__, cal_index, ret);
  8920. }
  8921. cal_block->map_data.q6map_handle = 0;
  8922. done:
  8923. return ret;
  8924. }
  8925. static void afe_delete_cal_data(void)
  8926. {
  8927. pr_debug("%s:\n", __func__);
  8928. cal_utils_destroy_cal_types(MAX_AFE_CAL_TYPES, this_afe.cal_data);
  8929. }
  8930. static int afe_init_cal_data(void)
  8931. {
  8932. int ret = 0;
  8933. struct cal_type_info cal_type_info[] = {
  8934. {{AFE_COMMON_RX_CAL_TYPE,
  8935. {afe_alloc_cal, afe_dealloc_cal, NULL,
  8936. afe_set_cal, NULL, NULL} },
  8937. {afe_map_cal_data, afe_unmap_cal_data,
  8938. cal_utils_match_buf_num} },
  8939. {{AFE_COMMON_TX_CAL_TYPE,
  8940. {afe_alloc_cal, afe_dealloc_cal, NULL,
  8941. afe_set_cal, NULL, NULL} },
  8942. {afe_map_cal_data, afe_unmap_cal_data,
  8943. cal_utils_match_buf_num} },
  8944. {{AFE_LSM_TX_CAL_TYPE,
  8945. {afe_alloc_cal, afe_dealloc_cal, NULL,
  8946. afe_set_cal, NULL, NULL} },
  8947. {afe_map_cal_data, afe_unmap_cal_data,
  8948. cal_utils_match_buf_num} },
  8949. {{AFE_AANC_CAL_TYPE,
  8950. {afe_alloc_cal, afe_dealloc_cal, NULL,
  8951. afe_set_cal, NULL, NULL} },
  8952. {afe_map_cal_data, afe_unmap_cal_data,
  8953. cal_utils_match_buf_num} },
  8954. {{AFE_FB_SPKR_PROT_CAL_TYPE,
  8955. {NULL, NULL, NULL, afe_set_cal_fb_spkr_prot,
  8956. afe_get_cal_fb_spkr_prot, NULL} },
  8957. {NULL, NULL, cal_utils_match_buf_num} },
  8958. {{AFE_HW_DELAY_CAL_TYPE,
  8959. {NULL, NULL, NULL,
  8960. afe_set_cal, NULL, NULL} },
  8961. {NULL, NULL, cal_utils_match_buf_num} },
  8962. {{AFE_SIDETONE_CAL_TYPE,
  8963. {NULL, NULL, NULL,
  8964. afe_set_cal, NULL, NULL} },
  8965. {NULL, NULL, cal_utils_match_buf_num} },
  8966. {{AFE_SIDETONE_IIR_CAL_TYPE,
  8967. {NULL, NULL, NULL,
  8968. afe_set_cal, NULL, NULL} },
  8969. {NULL, NULL, cal_utils_match_buf_num} },
  8970. {{AFE_TOPOLOGY_CAL_TYPE,
  8971. {NULL, NULL, NULL,
  8972. afe_set_cal, NULL, NULL} },
  8973. {NULL, NULL,
  8974. cal_utils_match_buf_num} },
  8975. {{AFE_LSM_TOPOLOGY_CAL_TYPE,
  8976. {NULL, NULL, NULL,
  8977. afe_set_cal, NULL, NULL} },
  8978. {NULL, NULL,
  8979. cal_utils_match_buf_num} },
  8980. {{AFE_CUST_TOPOLOGY_CAL_TYPE,
  8981. {afe_alloc_cal, afe_dealloc_cal, NULL,
  8982. afe_set_cal, NULL, NULL} },
  8983. {afe_map_cal_data, afe_unmap_cal_data,
  8984. cal_utils_match_buf_num} },
  8985. {{AFE_FB_SPKR_PROT_TH_VI_CAL_TYPE,
  8986. {NULL, NULL, NULL, afe_set_cal_sp_th_vi_cfg,
  8987. afe_get_cal_sp_th_vi_param, NULL} },
  8988. {NULL, NULL, cal_utils_match_buf_num} },
  8989. {{AFE_FB_SPKR_PROT_EX_VI_CAL_TYPE,
  8990. {NULL, NULL, NULL, afe_set_cal_sp_ex_vi_ftm_cfg,
  8991. afe_get_cal_sp_ex_vi_ftm_param, NULL} },
  8992. {NULL, NULL, cal_utils_match_buf_num} },
  8993. {{AFE_FB_SPKR_PROT_V4_EX_VI_CAL_TYPE,
  8994. {NULL, NULL, NULL, NULL,
  8995. afe_get_cal_spv4_ex_vi_ftm_param, NULL} },
  8996. {NULL, NULL, cal_utils_match_buf_num} },
  8997. };
  8998. pr_debug("%s:\n", __func__);
  8999. ret = cal_utils_create_cal_types(MAX_AFE_CAL_TYPES, this_afe.cal_data,
  9000. cal_type_info);
  9001. if (ret < 0) {
  9002. pr_err("%s: could not create cal type! %d\n",
  9003. __func__, ret);
  9004. ret = -EINVAL;
  9005. goto err;
  9006. }
  9007. return ret;
  9008. err:
  9009. afe_delete_cal_data();
  9010. return ret;
  9011. }
  9012. int afe_map_rtac_block(struct rtac_cal_block_data *cal_block)
  9013. {
  9014. int result = 0;
  9015. pr_debug("%s:\n", __func__);
  9016. if (cal_block == NULL) {
  9017. pr_err("%s: cal_block is NULL!\n",
  9018. __func__);
  9019. result = -EINVAL;
  9020. goto done;
  9021. }
  9022. if (cal_block->cal_data.paddr == 0) {
  9023. pr_debug("%s: No address to map!\n",
  9024. __func__);
  9025. result = -EINVAL;
  9026. goto done;
  9027. }
  9028. if (cal_block->map_data.map_size == 0) {
  9029. pr_debug("%s: map size is 0!\n",
  9030. __func__);
  9031. result = -EINVAL;
  9032. goto done;
  9033. }
  9034. result = afe_cmd_memory_map(cal_block->cal_data.paddr,
  9035. cal_block->map_data.map_size);
  9036. if (result < 0) {
  9037. pr_err("%s: afe_cmd_memory_map failed for addr = 0x%pK, size = %d, err %d\n",
  9038. __func__, &cal_block->cal_data.paddr,
  9039. cal_block->map_data.map_size, result);
  9040. return result;
  9041. }
  9042. cal_block->map_data.map_handle = this_afe.mmap_handle;
  9043. done:
  9044. return result;
  9045. }
  9046. int afe_unmap_rtac_block(uint32_t *mem_map_handle)
  9047. {
  9048. int result = 0;
  9049. pr_debug("%s:\n", __func__);
  9050. if (mem_map_handle == NULL) {
  9051. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  9052. __func__);
  9053. goto done;
  9054. }
  9055. if (*mem_map_handle == 0) {
  9056. pr_debug("%s: Map handle is 0, nothing to unmap\n",
  9057. __func__);
  9058. goto done;
  9059. }
  9060. result = afe_cmd_memory_unmap(*mem_map_handle);
  9061. if (result) {
  9062. pr_err("%s: AFE memory unmap failed %d, handle 0x%x\n",
  9063. __func__, result, *mem_map_handle);
  9064. goto done;
  9065. } else {
  9066. *mem_map_handle = 0;
  9067. }
  9068. done:
  9069. return result;
  9070. }
  9071. static void afe_release_uevent_data(struct kobject *kobj)
  9072. {
  9073. struct audio_uevent_data *data = container_of(kobj,
  9074. struct audio_uevent_data, kobj);
  9075. kfree(data);
  9076. }
  9077. int __init afe_init(void)
  9078. {
  9079. int i = 0, ret;
  9080. atomic_set(&this_afe.state, 0);
  9081. atomic_set(&this_afe.status, 0);
  9082. atomic_set(&this_afe.clk_state, 0);
  9083. atomic_set(&this_afe.clk_status, 0);
  9084. atomic_set(&this_afe.mem_map_cal_index, -1);
  9085. this_afe.apr = NULL;
  9086. this_afe.dtmf_gen_rx_portid = -1;
  9087. this_afe.mmap_handle = 0;
  9088. this_afe.vi_tx_port = -1;
  9089. this_afe.vi_rx_port = -1;
  9090. for (i = 0; i < AFE_LPASS_CORE_HW_VOTE_MAX; i++)
  9091. this_afe.lpass_hw_core_client_hdl[i] = 0;
  9092. this_afe.prot_cfg.mode = MSM_SPKR_PROT_DISABLED;
  9093. this_afe.th_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  9094. this_afe.ex_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  9095. mutex_init(&this_afe.afe_cmd_lock);
  9096. mutex_init(&this_afe.afe_apr_lock);
  9097. mutex_init(&this_afe.afe_clk_lock);
  9098. for (i = 0; i < AFE_MAX_PORTS; i++) {
  9099. this_afe.afe_cal_mode[i] = AFE_CAL_MODE_DEFAULT;
  9100. this_afe.afe_sample_rates[i] = 0;
  9101. this_afe.dev_acdb_id[i] = 0;
  9102. this_afe.island_mode[i] = 0;
  9103. this_afe.vad_cfg[i].is_enable = 0;
  9104. this_afe.vad_cfg[i].pre_roll = 0;
  9105. init_waitqueue_head(&this_afe.wait[i]);
  9106. }
  9107. init_waitqueue_head(&this_afe.wait_wakeup);
  9108. init_waitqueue_head(&this_afe.lpass_core_hw_wait);
  9109. init_waitqueue_head(&this_afe.clk_wait);
  9110. wl.ws = wakeup_source_register(NULL, "spkr-prot");
  9111. if (!wl.ws)
  9112. return -ENOMEM;
  9113. ret = afe_init_cal_data();
  9114. if (ret)
  9115. pr_err("%s: could not init cal data! %d\n", __func__, ret);
  9116. config_debug_fs_init();
  9117. this_afe.uevent_data = kzalloc(sizeof(*(this_afe.uevent_data)), GFP_KERNEL);
  9118. if (!this_afe.uevent_data) {
  9119. wakeup_source_unregister(wl.ws);
  9120. return -ENOMEM;
  9121. }
  9122. /*
  9123. * Set release function to cleanup memory related to kobject
  9124. * before initializing the kobject.
  9125. */
  9126. this_afe.uevent_data->ktype.release = afe_release_uevent_data;
  9127. q6core_init_uevent_data(this_afe.uevent_data, "q6afe_uevent");
  9128. INIT_WORK(&this_afe.afe_dc_work, afe_notify_dc_presence_work_fn);
  9129. INIT_WORK(&this_afe.afe_spdif_work,
  9130. afe_notify_spdif_fmt_update_work_fn);
  9131. this_afe.event_notifier.notifier_call = afe_aud_event_notify;
  9132. msm_aud_evt_blocking_register_client(&this_afe.event_notifier);
  9133. return 0;
  9134. }
  9135. void afe_exit(void)
  9136. {
  9137. if (this_afe.apr) {
  9138. apr_reset(this_afe.apr);
  9139. atomic_set(&this_afe.state, 0);
  9140. this_afe.apr = NULL;
  9141. rtac_set_afe_handle(this_afe.apr);
  9142. }
  9143. q6core_destroy_uevent_data(this_afe.uevent_data);
  9144. afe_delete_cal_data();
  9145. config_debug_fs_exit();
  9146. mutex_destroy(&this_afe.afe_cmd_lock);
  9147. mutex_destroy(&this_afe.afe_apr_lock);
  9148. mutex_destroy(&this_afe.afe_clk_lock);
  9149. wakeup_source_unregister(wl.ws);
  9150. }
  9151. /*
  9152. * afe_cal_init_hwdep -
  9153. * Initiliaze AFE HW dependent Node
  9154. *
  9155. * @card: pointer to sound card
  9156. *
  9157. */
  9158. int afe_cal_init_hwdep(void *card)
  9159. {
  9160. int ret = 0;
  9161. this_afe.fw_data = kzalloc(sizeof(*(this_afe.fw_data)),
  9162. GFP_KERNEL);
  9163. if (!this_afe.fw_data)
  9164. return -ENOMEM;
  9165. set_bit(Q6AFE_VAD_CORE_CAL, this_afe.fw_data->cal_bit);
  9166. ret = q6afe_cal_create_hwdep(this_afe.fw_data, Q6AFE_HWDEP_NODE, card);
  9167. if (ret < 0) {
  9168. pr_err("%s: couldn't create hwdep for AFE %d\n", __func__, ret);
  9169. return ret;
  9170. }
  9171. return ret;
  9172. }
  9173. EXPORT_SYMBOL(afe_cal_init_hwdep);
  9174. /*
  9175. * afe_vote_lpass_core_hw -
  9176. * Voting for lpass core hardware
  9177. *
  9178. * @hw_block_id: id of the hardware block
  9179. * @client_name: client name
  9180. * @client_handle: client handle
  9181. *
  9182. */
  9183. int afe_vote_lpass_core_hw(uint32_t hw_block_id, char *client_name,
  9184. uint32_t *client_handle)
  9185. {
  9186. struct afe_cmd_remote_lpass_core_hw_vote_request hw_vote_cfg;
  9187. struct afe_cmd_remote_lpass_core_hw_vote_request *cmd_ptr =
  9188. &hw_vote_cfg;
  9189. int ret = 0;
  9190. if (!client_handle) {
  9191. pr_err("%s: Invalid client_handle\n", __func__);
  9192. return -EINVAL;
  9193. }
  9194. if (!client_name) {
  9195. pr_err("%s: Invalid client_name\n", __func__);
  9196. *client_handle = 0;
  9197. return -EINVAL;
  9198. }
  9199. ret = afe_q6_interface_prepare();
  9200. if(ret) {
  9201. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  9202. return ret;
  9203. }
  9204. mutex_lock(&this_afe.afe_clk_lock);
  9205. memset(cmd_ptr, 0, sizeof(hw_vote_cfg));
  9206. cmd_ptr->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  9207. APR_HDR_LEN(APR_HDR_SIZE),
  9208. APR_PKT_VER);
  9209. cmd_ptr->hdr.pkt_size = sizeof(hw_vote_cfg);
  9210. cmd_ptr->hdr.src_port = 0;
  9211. cmd_ptr->hdr.dest_port = 0;
  9212. cmd_ptr->hdr.token = hw_block_id;
  9213. cmd_ptr->hdr.opcode = AFE_CMD_REMOTE_LPASS_CORE_HW_VOTE_REQUEST;
  9214. cmd_ptr->hw_block_id = hw_block_id;
  9215. strlcpy(cmd_ptr->client_name, client_name,
  9216. sizeof(cmd_ptr->client_name));
  9217. pr_debug("%s: lpass core hw vote opcode[0x%x] hw id[0x%x]\n",
  9218. __func__, cmd_ptr->hdr.opcode, cmd_ptr->hw_block_id);
  9219. trace_printk("%s: lpass core hw vote opcode[0x%x] hw id[0x%x]\n",
  9220. __func__, cmd_ptr->hdr.opcode, cmd_ptr->hw_block_id);
  9221. *client_handle = 0;
  9222. ret = afe_apr_send_clk_pkt((uint32_t *)cmd_ptr,
  9223. &this_afe.lpass_core_hw_wait);
  9224. if (ret == 0) {
  9225. *client_handle = this_afe.lpass_hw_core_client_hdl[hw_block_id];
  9226. pr_debug("%s: lpass_hw_core_client_hdl %d\n", __func__,
  9227. this_afe.lpass_hw_core_client_hdl[hw_block_id]);
  9228. }
  9229. mutex_unlock(&this_afe.afe_clk_lock);
  9230. return ret;
  9231. }
  9232. EXPORT_SYMBOL(afe_vote_lpass_core_hw);
  9233. /*
  9234. * afe_unvote_lpass_core_hw -
  9235. * unvoting for lpass core hardware
  9236. *
  9237. * @hw_block_id: id of the hardware block
  9238. * @client_handle: client handle
  9239. *
  9240. */
  9241. int afe_unvote_lpass_core_hw(uint32_t hw_block_id, uint32_t client_handle)
  9242. {
  9243. struct afe_cmd_remote_lpass_core_hw_devote_request hw_vote_cfg;
  9244. struct afe_cmd_remote_lpass_core_hw_devote_request *cmd_ptr =
  9245. &hw_vote_cfg;
  9246. int ret = 0;
  9247. ret = afe_q6_interface_prepare();
  9248. if(ret) {
  9249. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  9250. return ret;
  9251. }
  9252. mutex_lock(&this_afe.afe_clk_lock);
  9253. if (!this_afe.lpass_hw_core_client_hdl[hw_block_id]) {
  9254. pr_debug("%s: SSR in progress, return\n", __func__);
  9255. trace_printk("%s: SSR in progress, return\n", __func__);
  9256. goto done;
  9257. }
  9258. memset(cmd_ptr, 0, sizeof(hw_vote_cfg));
  9259. cmd_ptr->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  9260. APR_HDR_LEN(APR_HDR_SIZE),
  9261. APR_PKT_VER);
  9262. cmd_ptr->hdr.pkt_size = sizeof(hw_vote_cfg);
  9263. cmd_ptr->hdr.src_port = 0;
  9264. cmd_ptr->hdr.dest_port = 0;
  9265. cmd_ptr->hdr.token = 0;
  9266. cmd_ptr->hdr.opcode = AFE_CMD_REMOTE_LPASS_CORE_HW_DEVOTE_REQUEST;
  9267. cmd_ptr->hw_block_id = hw_block_id;
  9268. cmd_ptr->client_handle = client_handle;
  9269. pr_debug("%s: lpass core hw unvote opcode[0x%x] hw id[0x%x]\n",
  9270. __func__, cmd_ptr->hdr.opcode, cmd_ptr->hw_block_id);
  9271. trace_printk("%s: lpass core hw unvote opcode[0x%x] hw id[0x%x]\n",
  9272. __func__, cmd_ptr->hdr.opcode, cmd_ptr->hw_block_id);
  9273. if (cmd_ptr->client_handle <= 0) {
  9274. pr_err("%s: invalid client handle\n", __func__);
  9275. ret = -EINVAL;
  9276. goto done;
  9277. }
  9278. ret = afe_apr_send_clk_pkt((uint32_t *)cmd_ptr,
  9279. &this_afe.lpass_core_hw_wait);
  9280. done:
  9281. mutex_unlock(&this_afe.afe_clk_lock);
  9282. return ret;
  9283. }
  9284. EXPORT_SYMBOL(afe_unvote_lpass_core_hw);