q6afe.c 330 KB

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