q6afe.c 231 KB

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