q6afe.c 307 KB

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