q6afe.c 262 KB

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