q6afe.c 330 KB

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