q6afe.c 314 KB

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