q6afe.c 299 KB

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