q6afe.c 310 KB

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