q6afe.c 234 KB

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