q6afe.c 326 KB

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