q6afe.c 326 KB

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