q6afe.c 270 KB

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