q6afe.c 302 KB

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