q6afe.c 251 KB

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