q6afe.c 304 KB

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