q6afe.c 326 KB

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