q6afe.c 235 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391
  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. }
  2511. memset(&param_hdr, 0, sizeof(param_hdr));
  2512. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2513. param_hdr.instance_id = INSTANCE_ID_0;
  2514. param_hdr.param_id = AFE_PARAM_ID_SPDIF_CLK_CONFIG;
  2515. param_hdr.param_size = sizeof(struct afe_param_id_spdif_ch_status_cfg);
  2516. ret = q6afe_pack_and_set_param_in_band(port_id,
  2517. q6audio_get_port_index(port_id),
  2518. param_hdr, (u8 *) ch_status_cfg);
  2519. if (ret < 0)
  2520. pr_err("%s: AFE send channel status for port 0x%x failed ret = %d\n",
  2521. __func__, port_id, ret);
  2522. return ret;
  2523. }
  2524. EXPORT_SYMBOL(afe_send_spdif_ch_status_cfg);
  2525. int afe_send_cmd_wakeup_register(void *handle, bool enable)
  2526. {
  2527. struct afe_svc_cmd_evt_cfg_payload wakeup_irq;
  2528. int ret;
  2529. pr_debug("%s: enter\n", __func__);
  2530. wakeup_irq.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2531. APR_HDR_LEN(APR_HDR_SIZE),
  2532. APR_PKT_VER);
  2533. wakeup_irq.hdr.pkt_size = sizeof(wakeup_irq);
  2534. wakeup_irq.hdr.src_port = 0;
  2535. wakeup_irq.hdr.dest_port = 0;
  2536. wakeup_irq.hdr.token = 0x0;
  2537. wakeup_irq.hdr.opcode = AFE_SVC_CMD_EVENT_CFG;
  2538. wakeup_irq.event_id = AFE_EVENT_ID_MBHC_DETECTION_SW_WA;
  2539. wakeup_irq.reg_flag = enable;
  2540. pr_debug("%s: cmd device start opcode[0x%x] register:%d\n",
  2541. __func__, wakeup_irq.hdr.opcode, wakeup_irq.reg_flag);
  2542. ret = afe_apr_send_pkt(&wakeup_irq, &this_afe.wait_wakeup);
  2543. if (ret) {
  2544. pr_err("%s: AFE wakeup command register %d failed %d\n",
  2545. __func__, enable, ret);
  2546. } else if (this_afe.task != current) {
  2547. this_afe.task = current;
  2548. pr_debug("task_name = %s pid = %d\n",
  2549. this_afe.task->comm, this_afe.task->pid);
  2550. }
  2551. return ret;
  2552. }
  2553. EXPORT_SYMBOL(afe_send_cmd_wakeup_register);
  2554. static int afe_send_cmd_port_start(u16 port_id)
  2555. {
  2556. struct afe_port_cmd_device_start start;
  2557. int ret, index;
  2558. pr_debug("%s: enter\n", __func__);
  2559. index = q6audio_get_port_index(port_id);
  2560. if (index < 0 || index >= AFE_MAX_PORTS) {
  2561. pr_err("%s: AFE port index[%d] invalid!\n",
  2562. __func__, index);
  2563. return -EINVAL;
  2564. }
  2565. ret = q6audio_validate_port(port_id);
  2566. if (ret < 0) {
  2567. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  2568. return -EINVAL;
  2569. }
  2570. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2571. APR_HDR_LEN(APR_HDR_SIZE),
  2572. APR_PKT_VER);
  2573. start.hdr.pkt_size = sizeof(start);
  2574. start.hdr.src_port = 0;
  2575. start.hdr.dest_port = 0;
  2576. start.hdr.token = index;
  2577. start.hdr.opcode = AFE_PORT_CMD_DEVICE_START;
  2578. start.port_id = q6audio_get_port_id(port_id);
  2579. pr_debug("%s: cmd device start opcode[0x%x] port id[0x%x]\n",
  2580. __func__, start.hdr.opcode, start.port_id);
  2581. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  2582. if (ret) {
  2583. pr_err("%s: AFE enable for port 0x%x failed %d\n", __func__,
  2584. port_id, ret);
  2585. } else if (this_afe.task != current) {
  2586. this_afe.task = current;
  2587. pr_debug("task_name = %s pid = %d\n",
  2588. this_afe.task->comm, this_afe.task->pid);
  2589. }
  2590. return ret;
  2591. }
  2592. static int afe_aanc_start(uint16_t tx_port_id, uint16_t rx_port_id)
  2593. {
  2594. int ret;
  2595. pr_debug("%s: Tx port is 0x%x, Rx port is 0x%x\n",
  2596. __func__, tx_port_id, rx_port_id);
  2597. ret = afe_aanc_port_cfg(this_afe.apr, tx_port_id, rx_port_id);
  2598. if (ret) {
  2599. pr_err("%s: Send AANC Port Config failed %d\n",
  2600. __func__, ret);
  2601. goto fail_cmd;
  2602. }
  2603. send_afe_cal_type(AFE_AANC_CAL, tx_port_id);
  2604. fail_cmd:
  2605. return ret;
  2606. }
  2607. /**
  2608. * afe_spdif_port_start - to configure AFE session with
  2609. * specified port configuration
  2610. *
  2611. * @port_id: AFE port id number
  2612. * @spdif_port: spdif port configutation
  2613. * @rate: sampling rate of port
  2614. *
  2615. * Returns 0 on success or error value on port start failure.
  2616. */
  2617. int afe_spdif_port_start(u16 port_id, struct afe_spdif_port_config *spdif_port,
  2618. u32 rate)
  2619. {
  2620. struct param_hdr_v3 param_hdr;
  2621. uint16_t port_index;
  2622. int ret = 0;
  2623. if (!spdif_port) {
  2624. pr_err("%s: Error, no configuration data\n", __func__);
  2625. ret = -EINVAL;
  2626. return ret;
  2627. }
  2628. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  2629. memset(&param_hdr, 0, sizeof(param_hdr));
  2630. ret = q6audio_validate_port(port_id);
  2631. if (ret < 0) {
  2632. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  2633. return -EINVAL;
  2634. }
  2635. afe_send_cal(port_id);
  2636. afe_send_hw_delay(port_id, rate);
  2637. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2638. param_hdr.instance_id = INSTANCE_ID_0;
  2639. param_hdr.param_id = AFE_PARAM_ID_SPDIF_CONFIG;
  2640. param_hdr.param_size = sizeof(struct afe_spdif_port_config);
  2641. ret = q6afe_pack_and_set_param_in_band(port_id,
  2642. q6audio_get_port_index(port_id),
  2643. param_hdr, (u8 *) spdif_port);
  2644. if (ret) {
  2645. pr_err("%s: AFE enable for port 0x%x failed ret = %d\n",
  2646. __func__, port_id, ret);
  2647. goto fail_cmd;
  2648. }
  2649. port_index = afe_get_port_index(port_id);
  2650. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  2651. this_afe.afe_sample_rates[port_index] = rate;
  2652. } else {
  2653. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  2654. ret = -EINVAL;
  2655. goto fail_cmd;
  2656. }
  2657. if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX) {
  2658. ret = afe_send_spdif_ch_status_cfg(&spdif_port->ch_status,
  2659. port_id);
  2660. if (ret < 0) {
  2661. pr_err("%s: afe send failed %d\n", __func__, ret);
  2662. goto fail_cmd;
  2663. }
  2664. }
  2665. return afe_send_cmd_port_start(port_id);
  2666. fail_cmd:
  2667. return ret;
  2668. }
  2669. EXPORT_SYMBOL(afe_spdif_port_start);
  2670. /**
  2671. * afe_spdif_reg_event_cfg -
  2672. * register for event from AFE spdif port
  2673. *
  2674. * @port_id: Port ID to register event
  2675. * @reg_flag: register or unregister
  2676. * @cb: callback function to invoke for events from module
  2677. * @private_data: private data to sent back in callback fn
  2678. *
  2679. * Returns 0 on success or error on failure
  2680. */
  2681. int afe_spdif_reg_event_cfg(u16 port_id, u16 reg_flag,
  2682. void (*cb)(uint32_t opcode,
  2683. uint32_t token, uint32_t *payload, void *priv),
  2684. void *private_data)
  2685. {
  2686. struct afe_port_cmd_event_cfg *config;
  2687. struct afe_port_cmd_mod_evt_cfg_payload pl;
  2688. int index;
  2689. int ret;
  2690. int num_events = 1;
  2691. int cmd_size = sizeof(struct afe_port_cmd_event_cfg) +
  2692. (num_events * sizeof(struct afe_port_cmd_mod_evt_cfg_payload));
  2693. config = kzalloc(cmd_size, GFP_KERNEL);
  2694. if (!config)
  2695. return -ENOMEM;
  2696. if (port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX) {
  2697. this_afe.pri_spdif_tx_cb = cb;
  2698. this_afe.pri_spdif_tx_private_data = private_data;
  2699. } else if (port_id == AFE_PORT_ID_SECONDARY_SPDIF_TX) {
  2700. this_afe.sec_spdif_tx_cb = cb;
  2701. this_afe.sec_spdif_tx_private_data = private_data;
  2702. } else {
  2703. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  2704. ret = -EINVAL;
  2705. goto fail_idx;
  2706. }
  2707. index = q6audio_get_port_index(port_id);
  2708. if (index < 0) {
  2709. pr_err("%s: Invalid index number: %d\n", __func__, index);
  2710. ret = -EINVAL;
  2711. goto fail_idx;
  2712. }
  2713. memset(&pl, 0, sizeof(pl));
  2714. pl.module_id = AFE_MODULE_CUSTOM_EVENTS;
  2715. pl.event_id = AFE_PORT_FMT_UPDATE_EVENT;
  2716. pl.reg_flag = reg_flag;
  2717. config->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2718. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  2719. config->hdr.pkt_size = cmd_size;
  2720. config->hdr.src_port = 1;
  2721. config->hdr.dest_port = 1;
  2722. config->hdr.token = index;
  2723. config->hdr.opcode = AFE_PORT_CMD_MOD_EVENT_CFG;
  2724. config->port_id = q6audio_get_port_id(port_id);
  2725. config->num_events = num_events;
  2726. config->version = 1;
  2727. memcpy(config->payload, &pl, sizeof(pl));
  2728. atomic_set(&this_afe.state, 1);
  2729. atomic_set(&this_afe.status, 0);
  2730. ret = apr_send_pkt(this_afe.apr, (uint32_t *) config);
  2731. if (ret < 0) {
  2732. pr_err("%s: port = 0x%x failed %d\n",
  2733. __func__, port_id, ret);
  2734. goto fail_cmd;
  2735. }
  2736. ret = wait_event_timeout(this_afe.wait[index],
  2737. (atomic_read(&this_afe.state) == 0),
  2738. msecs_to_jiffies(TIMEOUT_MS));
  2739. if (!ret) {
  2740. pr_err("%s: wait_event timeout\n", __func__);
  2741. ret = -EINVAL;
  2742. goto fail_cmd;
  2743. }
  2744. if (atomic_read(&this_afe.status) > 0) {
  2745. pr_err("%s: config cmd failed [%s]\n",
  2746. __func__, adsp_err_get_err_str(
  2747. atomic_read(&this_afe.status)));
  2748. ret = adsp_err_get_lnx_err_code(
  2749. atomic_read(&this_afe.status));
  2750. goto fail_idx;
  2751. }
  2752. ret = 0;
  2753. fail_cmd:
  2754. pr_debug("%s: config.opcode 0x%x status %d\n",
  2755. __func__, config->hdr.opcode, ret);
  2756. fail_idx:
  2757. kfree(config);
  2758. return ret;
  2759. }
  2760. EXPORT_SYMBOL(afe_spdif_reg_event_cfg);
  2761. int afe_send_slot_mapping_cfg(
  2762. struct afe_param_id_slot_mapping_cfg *slot_mapping_cfg,
  2763. u16 port_id)
  2764. {
  2765. struct param_hdr_v3 param_hdr;
  2766. int ret = 0;
  2767. if (!slot_mapping_cfg) {
  2768. pr_err("%s: Error, no configuration data\n", __func__);
  2769. return -EINVAL;
  2770. }
  2771. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  2772. memset(&param_hdr, 0, sizeof(param_hdr));
  2773. param_hdr.module_id = AFE_MODULE_TDM;
  2774. param_hdr.instance_id = INSTANCE_ID_0;
  2775. param_hdr.param_id = AFE_PARAM_ID_PORT_SLOT_MAPPING_CONFIG;
  2776. param_hdr.param_size = sizeof(struct afe_param_id_slot_mapping_cfg);
  2777. ret = q6afe_pack_and_set_param_in_band(port_id,
  2778. q6audio_get_port_index(port_id),
  2779. param_hdr,
  2780. (u8 *) slot_mapping_cfg);
  2781. if (ret < 0)
  2782. pr_err("%s: AFE send slot mapping for port 0x%x failed ret = %d\n",
  2783. __func__, port_id, ret);
  2784. return ret;
  2785. }
  2786. int afe_send_custom_tdm_header_cfg(
  2787. struct afe_param_id_custom_tdm_header_cfg *custom_tdm_header_cfg,
  2788. u16 port_id)
  2789. {
  2790. struct param_hdr_v3 param_hdr;
  2791. int ret = 0;
  2792. if (!custom_tdm_header_cfg) {
  2793. pr_err("%s: Error, no configuration data\n", __func__);
  2794. return -EINVAL;
  2795. }
  2796. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  2797. memset(&param_hdr, 0, sizeof(param_hdr));
  2798. param_hdr.module_id = AFE_MODULE_TDM;
  2799. param_hdr.instance_id = INSTANCE_ID_0;
  2800. param_hdr.param_id = AFE_PARAM_ID_CUSTOM_TDM_HEADER_CONFIG;
  2801. param_hdr.param_size =
  2802. sizeof(struct afe_param_id_custom_tdm_header_cfg);
  2803. ret = q6afe_pack_and_set_param_in_band(port_id,
  2804. q6audio_get_port_index(port_id),
  2805. param_hdr,
  2806. (u8 *) custom_tdm_header_cfg);
  2807. if (ret < 0)
  2808. pr_err("%s: AFE send custom tdm header for port 0x%x failed ret = %d\n",
  2809. __func__, port_id, ret);
  2810. return ret;
  2811. }
  2812. /**
  2813. * afe_tdm_port_start - to configure AFE session with
  2814. * specified port configuration
  2815. *
  2816. * @port_id: AFE port id number
  2817. * @tdm_port: TDM port configutation
  2818. * @rate: sampling rate of port
  2819. * @num_groups: number of TDM groups
  2820. *
  2821. * Returns 0 on success or error value on port start failure.
  2822. */
  2823. int afe_tdm_port_start(u16 port_id, struct afe_tdm_port_config *tdm_port,
  2824. u32 rate, u16 num_groups)
  2825. {
  2826. struct param_hdr_v3 param_hdr;
  2827. int index = 0;
  2828. uint16_t port_index = 0;
  2829. enum afe_mad_type mad_type = MAD_HW_NONE;
  2830. int ret = 0;
  2831. if (!tdm_port) {
  2832. pr_err("%s: Error, no configuration data\n", __func__);
  2833. return -EINVAL;
  2834. }
  2835. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  2836. memset(&param_hdr, 0, sizeof(param_hdr));
  2837. index = q6audio_get_port_index(port_id);
  2838. if (index < 0 || index >= AFE_MAX_PORTS) {
  2839. pr_err("%s: AFE port index[%d] invalid!\n",
  2840. __func__, index);
  2841. return -EINVAL;
  2842. }
  2843. ret = q6audio_validate_port(port_id);
  2844. if (ret < 0) {
  2845. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  2846. return -EINVAL;
  2847. }
  2848. ret = afe_q6_interface_prepare();
  2849. if (ret != 0) {
  2850. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  2851. return ret;
  2852. }
  2853. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  2854. this_afe.afe_sample_rates[index] = rate;
  2855. if (this_afe.rt_cb)
  2856. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  2857. }
  2858. port_index = afe_get_port_index(port_id);
  2859. if (q6core_get_avcs_api_version_per_service(
  2860. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V4) {
  2861. /* send VAD configuration if enabled */
  2862. if (this_afe.vad_cfg[port_index].is_enable) {
  2863. ret = afe_send_port_vad_cfg_params(port_id);
  2864. if (ret) {
  2865. pr_err("%s: afe send VAD config failed %d\n",
  2866. __func__, ret);
  2867. goto fail_cmd;
  2868. }
  2869. }
  2870. }
  2871. /* Also send the topology id here: */
  2872. if (!(this_afe.afe_cal_mode[port_index] == AFE_CAL_MODE_NONE)) {
  2873. /* One time call: only for first time */
  2874. afe_send_custom_topology();
  2875. afe_send_port_topology_id(port_id);
  2876. afe_send_cal(port_id);
  2877. afe_send_hw_delay(port_id, rate);
  2878. }
  2879. /* Start SW MAD module */
  2880. mad_type = afe_port_get_mad_type(port_id);
  2881. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  2882. mad_type);
  2883. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  2884. if (!afe_has_config(AFE_CDC_REGISTERS_CONFIG) ||
  2885. !afe_has_config(AFE_SLIMBUS_SLAVE_CONFIG)) {
  2886. pr_err("%s: AFE isn't configured yet for\n"
  2887. "HW MAD try Again\n", __func__);
  2888. ret = -EAGAIN;
  2889. goto fail_cmd;
  2890. }
  2891. ret = afe_turn_onoff_hw_mad(mad_type, true);
  2892. if (ret) {
  2893. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  2894. __func__, ret);
  2895. goto fail_cmd;
  2896. }
  2897. }
  2898. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2899. param_hdr.instance_id = INSTANCE_ID_0;
  2900. param_hdr.param_id = AFE_PARAM_ID_TDM_CONFIG;
  2901. param_hdr.param_size = sizeof(struct afe_param_id_tdm_cfg);
  2902. ret = q6afe_pack_and_set_param_in_band(port_id,
  2903. q6audio_get_port_index(port_id),
  2904. param_hdr,
  2905. (u8 *) &tdm_port->tdm);
  2906. if (ret) {
  2907. pr_err("%s: AFE enable for port 0x%x failed ret = %d\n",
  2908. __func__, port_id, ret);
  2909. goto fail_cmd;
  2910. }
  2911. port_index = afe_get_port_index(port_id);
  2912. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  2913. this_afe.afe_sample_rates[port_index] = rate;
  2914. } else {
  2915. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  2916. ret = -EINVAL;
  2917. goto fail_cmd;
  2918. }
  2919. ret = afe_send_slot_mapping_cfg(&tdm_port->slot_mapping,
  2920. port_id);
  2921. if (ret < 0) {
  2922. pr_err("%s: afe send failed %d\n", __func__, ret);
  2923. goto fail_cmd;
  2924. }
  2925. if (tdm_port->custom_tdm_header.header_type) {
  2926. ret = afe_send_custom_tdm_header_cfg(
  2927. &tdm_port->custom_tdm_header, port_id);
  2928. if (ret < 0) {
  2929. pr_err("%s: afe send failed %d\n", __func__, ret);
  2930. goto fail_cmd;
  2931. }
  2932. }
  2933. ret = afe_send_cmd_port_start(port_id);
  2934. fail_cmd:
  2935. return ret;
  2936. }
  2937. EXPORT_SYMBOL(afe_tdm_port_start);
  2938. /**
  2939. * afe_set_cal_mode -
  2940. * set cal mode for AFE calibration
  2941. *
  2942. * @port_id: AFE port id number
  2943. * @afe_cal_mode: AFE calib mode
  2944. *
  2945. */
  2946. void afe_set_cal_mode(u16 port_id, enum afe_cal_mode afe_cal_mode)
  2947. {
  2948. uint16_t port_index;
  2949. port_index = afe_get_port_index(port_id);
  2950. this_afe.afe_cal_mode[port_index] = afe_cal_mode;
  2951. }
  2952. EXPORT_SYMBOL(afe_set_cal_mode);
  2953. /**
  2954. * afe_set_vad_cfg -
  2955. * set configuration for VAD
  2956. *
  2957. * @port_id: AFE port id number
  2958. * @vad_enable: enable/disable vad
  2959. * @preroll_config: Preroll configuration
  2960. *
  2961. */
  2962. void afe_set_vad_cfg(u32 vad_enable, u32 preroll_config,
  2963. u32 port_id)
  2964. {
  2965. uint16_t port_index;
  2966. port_index = afe_get_port_index(port_id);
  2967. this_afe.vad_cfg[port_index].is_enable = vad_enable;
  2968. this_afe.vad_cfg[port_index].pre_roll = preroll_config;
  2969. }
  2970. EXPORT_SYMBOL(afe_set_vad_cfg);
  2971. /**
  2972. * afe_get_island_mode_cfg -
  2973. * get island mode configuration
  2974. *
  2975. * @port_id: AFE port id number
  2976. * @enable_flag: Enable or Disable
  2977. *
  2978. */
  2979. void afe_get_island_mode_cfg(u16 port_id, u32 *enable_flag)
  2980. {
  2981. uint16_t port_index;
  2982. if (enable_flag) {
  2983. port_index = afe_get_port_index(port_id);
  2984. *enable_flag = this_afe.island_mode[port_index];
  2985. }
  2986. }
  2987. EXPORT_SYMBOL(afe_get_island_mode_cfg);
  2988. /**
  2989. * afe_set_island_mode_cfg -
  2990. * set island mode configuration
  2991. *
  2992. * @port_id: AFE port id number
  2993. * @enable_flag: Enable or Disable
  2994. *
  2995. */
  2996. void afe_set_island_mode_cfg(u16 port_id, u32 enable_flag)
  2997. {
  2998. uint16_t port_index;
  2999. port_index = afe_get_port_index(port_id);
  3000. this_afe.island_mode[port_index] = enable_flag;
  3001. }
  3002. EXPORT_SYMBOL(afe_set_island_mode_cfg);
  3003. /**
  3004. * afe_set_routing_callback -
  3005. * Update callback function for routing
  3006. *
  3007. * @cb: callback function to update with
  3008. *
  3009. */
  3010. void afe_set_routing_callback(routing_cb cb)
  3011. {
  3012. this_afe.rt_cb = cb;
  3013. }
  3014. EXPORT_SYMBOL(afe_set_routing_callback);
  3015. int afe_port_send_usb_dev_param(u16 port_id, union afe_port_config *afe_config)
  3016. {
  3017. struct afe_param_id_usb_audio_dev_params usb_dev;
  3018. struct afe_param_id_usb_audio_dev_lpcm_fmt lpcm_fmt;
  3019. struct afe_param_id_usb_audio_svc_interval svc_int;
  3020. struct param_hdr_v3 param_hdr;
  3021. int ret = 0, index = 0;
  3022. if (!afe_config) {
  3023. pr_err("%s: Error, no configuration data\n", __func__);
  3024. ret = -EINVAL;
  3025. goto exit;
  3026. }
  3027. index = q6audio_get_port_index(port_id);
  3028. if (index < 0 || index >= AFE_MAX_PORTS) {
  3029. pr_err("%s: AFE port index[%d] invalid!\n",
  3030. __func__, index);
  3031. return -EINVAL;
  3032. }
  3033. memset(&usb_dev, 0, sizeof(usb_dev));
  3034. memset(&lpcm_fmt, 0, sizeof(lpcm_fmt));
  3035. memset(&param_hdr, 0, sizeof(param_hdr));
  3036. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3037. param_hdr.instance_id = INSTANCE_ID_0;
  3038. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_DEV_PARAMS;
  3039. param_hdr.param_size = sizeof(usb_dev);
  3040. usb_dev.cfg_minor_version = AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  3041. usb_dev.dev_token = afe_config->usb_audio.dev_token;
  3042. ret = q6afe_pack_and_set_param_in_band(port_id,
  3043. q6audio_get_port_index(port_id),
  3044. param_hdr, (u8 *) &usb_dev);
  3045. if (ret) {
  3046. pr_err("%s: AFE device param cmd failed %d\n",
  3047. __func__, ret);
  3048. goto exit;
  3049. }
  3050. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_DEV_LPCM_FMT;
  3051. param_hdr.param_size = sizeof(lpcm_fmt);
  3052. lpcm_fmt.cfg_minor_version = AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  3053. lpcm_fmt.endian = afe_config->usb_audio.endian;
  3054. ret = q6afe_pack_and_set_param_in_band(port_id,
  3055. q6audio_get_port_index(port_id),
  3056. param_hdr, (u8 *) &lpcm_fmt);
  3057. if (ret) {
  3058. pr_err("%s: AFE device param cmd LPCM_FMT failed %d\n",
  3059. __func__, ret);
  3060. goto exit;
  3061. }
  3062. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_SVC_INTERVAL;
  3063. param_hdr.param_size = sizeof(svc_int);
  3064. svc_int.cfg_minor_version =
  3065. AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  3066. svc_int.svc_interval = afe_config->usb_audio.service_interval;
  3067. pr_debug("%s: AFE device param cmd sending SVC_INTERVAL %d\n",
  3068. __func__, svc_int.svc_interval);
  3069. ret = q6afe_pack_and_set_param_in_band(port_id,
  3070. q6audio_get_port_index(port_id),
  3071. param_hdr, (u8 *) &svc_int);
  3072. if (ret) {
  3073. pr_err("%s: AFE device param cmd svc_interval failed %d\n",
  3074. __func__, ret);
  3075. ret = -EINVAL;
  3076. goto exit;
  3077. }
  3078. exit:
  3079. return ret;
  3080. }
  3081. static int q6afe_send_dec_config(u16 port_id,
  3082. union afe_port_config afe_config,
  3083. struct afe_dec_config *cfg,
  3084. u32 format,
  3085. u16 afe_in_channels, u16 afe_in_bit_width)
  3086. {
  3087. struct afe_dec_media_fmt_t dec_media_fmt;
  3088. struct avs_dec_depacketizer_id_param_t dec_depkt_id_param;
  3089. struct avs_dec_congestion_buffer_param_t dec_buffer_id_param;
  3090. struct afe_enc_dec_imc_info_param_t imc_info_param;
  3091. struct afe_port_media_type_t media_type;
  3092. struct param_hdr_v3 param_hdr;
  3093. int ret;
  3094. u32 dec_fmt;
  3095. memset(&dec_depkt_id_param, 0, sizeof(dec_depkt_id_param));
  3096. memset(&dec_media_fmt, 0, sizeof(dec_media_fmt));
  3097. memset(&imc_info_param, 0, sizeof(imc_info_param));
  3098. memset(&media_type, 0, sizeof(media_type));
  3099. memset(&param_hdr, 0, sizeof(param_hdr));
  3100. param_hdr.module_id = AFE_MODULE_ID_DECODER;
  3101. param_hdr.instance_id = INSTANCE_ID_0;
  3102. pr_debug("%s: sending AFE_DECODER_PARAM_ID_DEPACKETIZER to DSP payload\n",
  3103. __func__);
  3104. param_hdr.param_id = AFE_DECODER_PARAM_ID_DEPACKETIZER_ID;
  3105. param_hdr.param_size = sizeof(struct avs_dec_depacketizer_id_param_t);
  3106. dec_depkt_id_param.dec_depacketizer_id =
  3107. AFE_MODULE_ID_DEPACKETIZER_COP_V1;
  3108. if (cfg->format == ENC_CODEC_TYPE_LDAC)
  3109. dec_depkt_id_param.dec_depacketizer_id =
  3110. AFE_MODULE_ID_DEPACKETIZER_COP;
  3111. ret = q6afe_pack_and_set_param_in_band(port_id,
  3112. q6audio_get_port_index(port_id),
  3113. param_hdr,
  3114. (u8 *) &dec_depkt_id_param);
  3115. if (ret) {
  3116. pr_err("%s: AFE_DECODER_PARAM_ID_DEPACKETIZER for port 0x%x failed %d\n",
  3117. __func__, port_id, ret);
  3118. goto exit;
  3119. }
  3120. switch (cfg->format) {
  3121. case ASM_MEDIA_FMT_SBC:
  3122. case ASM_MEDIA_FMT_AAC_V2:
  3123. case ASM_MEDIA_FMT_MP3:
  3124. if (port_id == SLIMBUS_9_TX) {
  3125. dec_buffer_id_param.max_nr_buffers = 200;
  3126. dec_buffer_id_param.pre_buffer_size = 200;
  3127. } else {
  3128. dec_buffer_id_param.max_nr_buffers = 0;
  3129. dec_buffer_id_param.pre_buffer_size = 0;
  3130. }
  3131. pr_debug("%s: sending AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE to DSP payload\n",
  3132. __func__);
  3133. param_hdr.param_id =
  3134. AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE;
  3135. param_hdr.param_size =
  3136. sizeof(struct avs_dec_congestion_buffer_param_t);
  3137. dec_buffer_id_param.version = 0;
  3138. ret = q6afe_pack_and_set_param_in_band(port_id,
  3139. q6audio_get_port_index(port_id),
  3140. param_hdr,
  3141. (u8 *) &dec_buffer_id_param);
  3142. if (ret) {
  3143. pr_err("%s: AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE for port 0x%x failed %d\n",
  3144. __func__, port_id, ret);
  3145. goto exit;
  3146. }
  3147. break;
  3148. default:
  3149. pr_debug("%s:sending AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION to DSP payload\n",
  3150. __func__);
  3151. param_hdr.param_id =
  3152. AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION;
  3153. param_hdr.param_size =
  3154. sizeof(struct afe_enc_dec_imc_info_param_t);
  3155. imc_info_param.imc_info = cfg->abr_dec_cfg.imc_info;
  3156. ret = q6afe_pack_and_set_param_in_band(port_id,
  3157. q6audio_get_port_index(port_id),
  3158. param_hdr,
  3159. (u8 *) &imc_info_param);
  3160. if (ret) {
  3161. pr_err("%s: AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION for port 0x%x failed %d\n",
  3162. __func__, port_id, ret);
  3163. goto exit;
  3164. }
  3165. break;
  3166. }
  3167. pr_debug("%s:Sending AFE_API_VERSION_PORT_MEDIA_TYPE to DSP", __func__);
  3168. param_hdr.module_id = AFE_MODULE_PORT;
  3169. param_hdr.param_id = AFE_PARAM_ID_PORT_MEDIA_TYPE;
  3170. param_hdr.param_size = sizeof(struct afe_port_media_type_t);
  3171. media_type.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  3172. switch (cfg->format) {
  3173. case ASM_MEDIA_FMT_AAC_V2:
  3174. media_type.sample_rate =
  3175. cfg->data.aac_config.sample_rate;
  3176. break;
  3177. case ASM_MEDIA_FMT_SBC:
  3178. media_type.sample_rate =
  3179. cfg->data.sbc_config.sample_rate;
  3180. break;
  3181. default:
  3182. media_type.sample_rate =
  3183. afe_config.slim_sch.sample_rate;
  3184. }
  3185. if (afe_in_bit_width)
  3186. media_type.bit_width = afe_in_bit_width;
  3187. else
  3188. media_type.bit_width = afe_config.slim_sch.bit_width;
  3189. if (afe_in_channels)
  3190. media_type.num_channels = afe_in_channels;
  3191. else
  3192. media_type.num_channels = afe_config.slim_sch.num_channels;
  3193. media_type.data_format = AFE_PORT_DATA_FORMAT_PCM;
  3194. media_type.reserved = 0;
  3195. ret = q6afe_pack_and_set_param_in_band(port_id,
  3196. q6audio_get_port_index(port_id),
  3197. param_hdr, (u8 *) &media_type);
  3198. if (ret) {
  3199. pr_err("%s: AFE_API_VERSION_PORT_MEDIA_TYPE for port 0x%x failed %d\n",
  3200. __func__, port_id, ret);
  3201. goto exit;
  3202. }
  3203. if (format != ASM_MEDIA_FMT_SBC && format != ASM_MEDIA_FMT_AAC_V2) {
  3204. pr_debug("%s:Unsuppported dec format. Ignore AFE config %u\n",
  3205. __func__, format);
  3206. goto exit;
  3207. }
  3208. pr_debug("%s: sending AFE_DECODER_PARAM_ID_DEC_MEDIA_FMT to DSP payload\n",
  3209. __func__);
  3210. param_hdr.module_id = AFE_MODULE_ID_DECODER;
  3211. param_hdr.instance_id = INSTANCE_ID_0;
  3212. param_hdr.param_id = AFE_DECODER_PARAM_ID_DEC_FMT_ID;
  3213. param_hdr.param_size = sizeof(dec_fmt);
  3214. dec_fmt = format;
  3215. ret = q6afe_pack_and_set_param_in_band(port_id,
  3216. q6audio_get_port_index(port_id),
  3217. param_hdr, (u8 *) &dec_fmt);
  3218. if (ret) {
  3219. pr_err("%s: AFE_DECODER_PARAM_ID_DEC_MEDIA_FMT for port 0x%x failed %d\n",
  3220. __func__, port_id, ret);
  3221. goto exit;
  3222. }
  3223. switch (cfg->format) {
  3224. case ASM_MEDIA_FMT_AAC_V2:
  3225. param_hdr.param_size = sizeof(struct afe_dec_media_fmt_t);
  3226. pr_debug("%s:send AFE_DECODER_PARAM_ID DEC_MEDIA_FMT to DSP payload\n",
  3227. __func__);
  3228. param_hdr.param_id = AVS_DECODER_PARAM_ID_DEC_MEDIA_FMT;
  3229. dec_media_fmt.dec_media_config = cfg->data;
  3230. ret = q6afe_pack_and_set_param_in_band(port_id,
  3231. q6audio_get_port_index(port_id),
  3232. param_hdr,
  3233. (u8 *) &dec_media_fmt);
  3234. if (ret) {
  3235. pr_err("%s: AFE_DECODER_PARAM_ID DEC_MEDIA_FMT for port 0x%x failed %d\n",
  3236. __func__, port_id, ret);
  3237. goto exit;
  3238. }
  3239. break;
  3240. default:
  3241. pr_debug("%s:No need to send DEC_MEDIA_FMT to DSP payload\n",
  3242. __func__);
  3243. }
  3244. exit:
  3245. return ret;
  3246. }
  3247. static int q6afe_send_enc_config(u16 port_id,
  3248. union afe_enc_config_data *cfg, u32 format,
  3249. union afe_port_config afe_config,
  3250. u16 afe_in_channels, u16 afe_in_bit_width,
  3251. u32 scrambler_mode, u32 mono_mode)
  3252. {
  3253. u32 enc_fmt;
  3254. struct afe_enc_cfg_blk_param_t enc_blk_param;
  3255. struct afe_param_id_aptx_sync_mode sync_mode_param;
  3256. struct afe_id_aptx_adaptive_enc_init aptx_adaptive_enc_init;
  3257. struct avs_enc_packetizer_id_param_t enc_pkt_id_param;
  3258. struct avs_enc_set_scrambler_param_t enc_set_scrambler_param;
  3259. struct afe_enc_level_to_bitrate_map_param_t map_param;
  3260. struct afe_enc_dec_imc_info_param_t imc_info_param;
  3261. struct afe_port_media_type_t media_type;
  3262. struct aptx_channel_mode_param_t channel_mode_param;
  3263. struct param_hdr_v3 param_hdr;
  3264. int ret;
  3265. pr_debug("%s:update DSP for enc format = %d\n", __func__, format);
  3266. memset(&enc_blk_param, 0, sizeof(enc_blk_param));
  3267. memset(&sync_mode_param, 0, sizeof(sync_mode_param));
  3268. memset(&aptx_adaptive_enc_init, 0, sizeof(aptx_adaptive_enc_init));
  3269. memset(&enc_pkt_id_param, 0, sizeof(enc_pkt_id_param));
  3270. memset(&enc_set_scrambler_param, 0, sizeof(enc_set_scrambler_param));
  3271. memset(&map_param, 0, sizeof(map_param));
  3272. memset(&imc_info_param, 0, sizeof(imc_info_param));
  3273. memset(&media_type, 0, sizeof(media_type));
  3274. memset(&param_hdr, 0, sizeof(param_hdr));
  3275. if (format != ASM_MEDIA_FMT_SBC && format != ASM_MEDIA_FMT_AAC_V2 &&
  3276. format != ASM_MEDIA_FMT_APTX && format != ASM_MEDIA_FMT_APTX_HD &&
  3277. format != ASM_MEDIA_FMT_CELT && format != ASM_MEDIA_FMT_LDAC &&
  3278. format != ASM_MEDIA_FMT_APTX_ADAPTIVE) {
  3279. pr_err("%s:Unsuppported enc format. Ignore AFE config\n",
  3280. __func__);
  3281. return 0;
  3282. }
  3283. param_hdr.module_id = AFE_MODULE_ID_ENCODER;
  3284. param_hdr.instance_id = INSTANCE_ID_0;
  3285. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENC_FMT_ID;
  3286. param_hdr.param_size = sizeof(enc_fmt);
  3287. enc_fmt = format;
  3288. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_ENC_FMT_ID payload\n",
  3289. __func__);
  3290. ret = q6afe_pack_and_set_param_in_band(port_id,
  3291. q6audio_get_port_index(port_id),
  3292. param_hdr, (u8 *) &enc_fmt);
  3293. if (ret) {
  3294. pr_err("%s:unable to send AFE_ENCODER_PARAM_ID_ENC_FMT_ID",
  3295. __func__);
  3296. goto exit;
  3297. }
  3298. if (format == ASM_MEDIA_FMT_LDAC) {
  3299. param_hdr.param_size = sizeof(struct afe_enc_cfg_blk_param_t)
  3300. - sizeof(struct afe_abr_enc_cfg_t);
  3301. enc_blk_param.enc_cfg_blk_size =
  3302. sizeof(union afe_enc_config_data)
  3303. - sizeof(struct afe_abr_enc_cfg_t);
  3304. } else {
  3305. param_hdr.param_size = sizeof(struct afe_enc_cfg_blk_param_t);
  3306. enc_blk_param.enc_cfg_blk_size =
  3307. sizeof(union afe_enc_config_data);
  3308. }
  3309. pr_debug("%s:send AFE_ENCODER_PARAM_ID_ENC_CFG_BLK to DSP payload\n",
  3310. __func__);
  3311. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENC_CFG_BLK;
  3312. enc_blk_param.enc_blk_config = *cfg;
  3313. ret = q6afe_pack_and_set_param_in_band(port_id,
  3314. q6audio_get_port_index(port_id),
  3315. param_hdr,
  3316. (u8 *) &enc_blk_param);
  3317. if (ret) {
  3318. pr_err("%s: AFE_ENCODER_PARAM_ID_ENC_CFG_BLK for port 0x%x failed %d\n",
  3319. __func__, port_id, ret);
  3320. goto exit;
  3321. }
  3322. if (format == ASM_MEDIA_FMT_APTX) {
  3323. pr_debug("%s: sending AFE_PARAM_ID_APTX_SYNC_MODE to DSP",
  3324. __func__);
  3325. param_hdr.param_id = AFE_PARAM_ID_APTX_SYNC_MODE;
  3326. param_hdr.param_size =
  3327. sizeof(struct afe_param_id_aptx_sync_mode);
  3328. sync_mode_param.sync_mode =
  3329. enc_blk_param.enc_blk_config.aptx_config.
  3330. aptx_v2_cfg.sync_mode;
  3331. ret = q6afe_pack_and_set_param_in_band(port_id,
  3332. q6audio_get_port_index(port_id),
  3333. param_hdr,
  3334. (u8 *) &sync_mode_param);
  3335. if (ret) {
  3336. pr_err("%s: AFE_PARAM_ID_APTX_SYNC_MODE for port 0x%x failed %d\n",
  3337. __func__, port_id, ret);
  3338. goto exit;
  3339. }
  3340. }
  3341. if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE) {
  3342. pr_debug("%s: sending AFE_ID_APTX_ADAPTIVE_ENC_INIT to DSP\n",
  3343. __func__);
  3344. param_hdr.param_id = AFE_ID_APTX_ADAPTIVE_ENC_INIT;
  3345. param_hdr.param_size =
  3346. sizeof(struct afe_id_aptx_adaptive_enc_init);
  3347. aptx_adaptive_enc_init =
  3348. enc_blk_param.enc_blk_config.aptx_ad_config.
  3349. aptx_ad_cfg;
  3350. ret = q6afe_pack_and_set_param_in_band(port_id,
  3351. q6audio_get_port_index(port_id),
  3352. param_hdr,
  3353. (u8 *) &aptx_adaptive_enc_init);
  3354. if (ret) {
  3355. pr_err("%s: AFE_ID_APTX_ADAPTIVE_ENC_INIT for port 0x%x failed %d\n",
  3356. __func__, port_id, ret);
  3357. goto exit;
  3358. }
  3359. }
  3360. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_PACKETIZER to DSP\n",
  3361. __func__);
  3362. param_hdr.param_id = AFE_ENCODER_PARAM_ID_PACKETIZER_ID;
  3363. param_hdr.param_size = sizeof(struct avs_enc_packetizer_id_param_t);
  3364. enc_pkt_id_param.enc_packetizer_id = AFE_MODULE_ID_PACKETIZER_COP;
  3365. ret = q6afe_pack_and_set_param_in_band(port_id,
  3366. q6audio_get_port_index(port_id),
  3367. param_hdr,
  3368. (u8 *) &enc_pkt_id_param);
  3369. if (ret) {
  3370. pr_err("%s: AFE_ENCODER_PARAM_ID_PACKETIZER for port 0x%x failed %d\n",
  3371. __func__, port_id, ret);
  3372. goto exit;
  3373. }
  3374. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING mode= %d to DSP payload\n",
  3375. __func__, scrambler_mode);
  3376. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING;
  3377. param_hdr.param_size = sizeof(struct avs_enc_set_scrambler_param_t);
  3378. enc_set_scrambler_param.enable_scrambler = scrambler_mode;
  3379. ret = q6afe_pack_and_set_param_in_band(port_id,
  3380. q6audio_get_port_index(port_id),
  3381. param_hdr,
  3382. (u8 *) &enc_set_scrambler_param);
  3383. if (ret) {
  3384. pr_err("%s: AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING for port 0x%x failed %d\n",
  3385. __func__, port_id, ret);
  3386. goto exit;
  3387. }
  3388. if (format == ASM_MEDIA_FMT_APTX) {
  3389. pr_debug("%s:sending CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO mode= %d to DSP payload\n",
  3390. __func__, mono_mode);
  3391. param_hdr.param_id = CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO;
  3392. param_hdr.param_size = sizeof(channel_mode_param);
  3393. channel_mode_param.channel_mode = mono_mode;
  3394. ret = q6afe_pack_and_set_param_in_band(port_id,
  3395. q6audio_get_port_index(port_id),
  3396. param_hdr,
  3397. (u8 *) &channel_mode_param);
  3398. if (ret) {
  3399. pr_err("%s: CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO for port 0x%x failed %d\n",
  3400. __func__, port_id, ret);
  3401. }
  3402. }
  3403. if ((format == ASM_MEDIA_FMT_LDAC &&
  3404. cfg->ldac_config.abr_config.is_abr_enabled) ||
  3405. format == ASM_MEDIA_FMT_APTX_ADAPTIVE) {
  3406. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP to DSP payload",
  3407. __func__);
  3408. param_hdr.param_id = AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP;
  3409. param_hdr.param_size =
  3410. sizeof(struct afe_enc_level_to_bitrate_map_param_t);
  3411. map_param.mapping_table =
  3412. cfg->ldac_config.abr_config.mapping_info;
  3413. ret = q6afe_pack_and_set_param_in_band(port_id,
  3414. q6audio_get_port_index(port_id),
  3415. param_hdr,
  3416. (u8 *) &map_param);
  3417. if (ret) {
  3418. pr_err("%s: AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP for port 0x%x failed %d\n",
  3419. __func__, port_id, ret);
  3420. goto exit;
  3421. }
  3422. pr_debug("%s: sending AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION to DSP payload",
  3423. __func__);
  3424. param_hdr.param_id =
  3425. AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION;
  3426. param_hdr.param_size =
  3427. sizeof(struct afe_enc_dec_imc_info_param_t);
  3428. if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE)
  3429. imc_info_param.imc_info =
  3430. cfg->aptx_ad_config.abr_cfg.imc_info;
  3431. else
  3432. imc_info_param.imc_info =
  3433. cfg->ldac_config.abr_config.imc_info;
  3434. ret = q6afe_pack_and_set_param_in_band(port_id,
  3435. q6audio_get_port_index(port_id),
  3436. param_hdr,
  3437. (u8 *) &imc_info_param);
  3438. if (ret) {
  3439. pr_err("%s: AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION for port 0x%x failed %d\n",
  3440. __func__, port_id, ret);
  3441. goto exit;
  3442. }
  3443. }
  3444. pr_debug("%s:Sending AFE_API_VERSION_PORT_MEDIA_TYPE to DSP", __func__);
  3445. param_hdr.module_id = AFE_MODULE_PORT;
  3446. param_hdr.param_id = AFE_PARAM_ID_PORT_MEDIA_TYPE;
  3447. param_hdr.param_size = sizeof(struct afe_port_media_type_t);
  3448. media_type.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  3449. if (format == ASM_MEDIA_FMT_LDAC)
  3450. media_type.sample_rate =
  3451. cfg->ldac_config.custom_config.sample_rate;
  3452. else if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE)
  3453. media_type.sample_rate =
  3454. cfg->aptx_ad_config.custom_cfg.sample_rate;
  3455. else
  3456. media_type.sample_rate =
  3457. afe_config.slim_sch.sample_rate;
  3458. if (afe_in_bit_width)
  3459. media_type.bit_width = afe_in_bit_width;
  3460. else
  3461. media_type.bit_width = afe_config.slim_sch.bit_width;
  3462. if (afe_in_channels)
  3463. media_type.num_channels = afe_in_channels;
  3464. else
  3465. media_type.num_channels = afe_config.slim_sch.num_channels;
  3466. media_type.data_format = AFE_PORT_DATA_FORMAT_PCM;
  3467. media_type.reserved = 0;
  3468. ret = q6afe_pack_and_set_param_in_band(port_id,
  3469. q6audio_get_port_index(port_id),
  3470. param_hdr, (u8 *) &media_type);
  3471. if (ret) {
  3472. pr_err("%s: AFE_API_VERSION_PORT_MEDIA_TYPE for port 0x%x failed %d\n",
  3473. __func__, port_id, ret);
  3474. goto exit;
  3475. }
  3476. exit:
  3477. return ret;
  3478. }
  3479. int afe_set_tws_channel_mode(u16 port_id, u32 channel_mode)
  3480. {
  3481. struct aptx_channel_mode_param_t channel_mode_param;
  3482. struct param_hdr_v3 param_info;
  3483. int ret = 0;
  3484. memset(&param_info, 0, sizeof(param_info));
  3485. memset(&channel_mode_param, 0, sizeof(channel_mode_param));
  3486. param_info.module_id = AFE_MODULE_ID_ENCODER;
  3487. param_info.instance_id = INSTANCE_ID_0;
  3488. param_info.param_id = CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO;
  3489. param_info.param_size = sizeof(channel_mode_param);
  3490. channel_mode_param.channel_mode = channel_mode;
  3491. ret = q6afe_pack_and_set_param_in_band(port_id,
  3492. q6audio_get_port_index(port_id),
  3493. param_info,
  3494. (u8 *) &channel_mode_param);
  3495. if (ret)
  3496. pr_err("%s: AFE set channel mode cfg for port 0x%x failed %d\n",
  3497. __func__, port_id, ret);
  3498. return ret;
  3499. }
  3500. EXPORT_SYMBOL(afe_set_tws_channel_mode);
  3501. static int __afe_port_start(u16 port_id, union afe_port_config *afe_config,
  3502. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  3503. union afe_enc_config_data *enc_cfg,
  3504. u32 codec_format, u32 scrambler_mode, u32 mono_mode,
  3505. struct afe_dec_config *dec_cfg)
  3506. {
  3507. union afe_port_config port_cfg;
  3508. struct param_hdr_v3 param_hdr;
  3509. int ret = 0;
  3510. int cfg_type;
  3511. int index = 0;
  3512. enum afe_mad_type mad_type;
  3513. uint16_t port_index;
  3514. memset(&param_hdr, 0, sizeof(param_hdr));
  3515. memset(&port_cfg, 0, sizeof(port_cfg));
  3516. if (!afe_config) {
  3517. pr_err("%s: Error, no configuration data\n", __func__);
  3518. ret = -EINVAL;
  3519. return ret;
  3520. }
  3521. if ((port_id == RT_PROXY_DAI_001_RX) ||
  3522. (port_id == RT_PROXY_DAI_002_TX)) {
  3523. pr_debug("%s: before incrementing pcm_afe_instance %d port_id 0x%x\n",
  3524. __func__,
  3525. pcm_afe_instance[port_id & 0x1], port_id);
  3526. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  3527. pcm_afe_instance[port_id & 0x1]++;
  3528. return 0;
  3529. }
  3530. if ((port_id == RT_PROXY_DAI_002_RX) ||
  3531. (port_id == RT_PROXY_DAI_001_TX)) {
  3532. pr_debug("%s: before incrementing proxy_afe_instance %d port_id 0x%x\n",
  3533. __func__,
  3534. proxy_afe_instance[port_id & 0x1], port_id);
  3535. if (!afe_close_done[port_id & 0x1]) {
  3536. /*close pcm dai corresponding to the proxy dai*/
  3537. afe_close(port_id - 0x10);
  3538. pcm_afe_instance[port_id & 0x1]++;
  3539. pr_debug("%s: reconfigure afe port again\n", __func__);
  3540. }
  3541. proxy_afe_instance[port_id & 0x1]++;
  3542. afe_close_done[port_id & 0x1] = false;
  3543. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  3544. }
  3545. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3546. index = q6audio_get_port_index(port_id);
  3547. if (index < 0 || index >= AFE_MAX_PORTS) {
  3548. pr_err("%s: AFE port index[%d] invalid!\n",
  3549. __func__, index);
  3550. return -EINVAL;
  3551. }
  3552. ret = q6audio_validate_port(port_id);
  3553. if (ret < 0) {
  3554. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  3555. return -EINVAL;
  3556. }
  3557. ret = afe_q6_interface_prepare();
  3558. if (ret != 0) {
  3559. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3560. return ret;
  3561. }
  3562. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  3563. this_afe.afe_sample_rates[index] = rate;
  3564. if (this_afe.rt_cb)
  3565. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  3566. }
  3567. mutex_lock(&this_afe.afe_cmd_lock);
  3568. port_index = afe_get_port_index(port_id);
  3569. if (q6core_get_avcs_api_version_per_service(
  3570. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V4) {
  3571. /* send VAD configuration if is enabled */
  3572. if (this_afe.vad_cfg[port_index].is_enable) {
  3573. ret = afe_send_port_vad_cfg_params(port_id);
  3574. if (ret) {
  3575. pr_err("%s: afe send VAD config failed %d\n",
  3576. __func__, ret);
  3577. goto fail_cmd;
  3578. }
  3579. }
  3580. }
  3581. /* Also send the topology id here: */
  3582. if (!(this_afe.afe_cal_mode[port_index] == AFE_CAL_MODE_NONE)) {
  3583. /* One time call: only for first time */
  3584. afe_send_custom_topology();
  3585. afe_send_port_topology_id(port_id);
  3586. afe_send_cal(port_id);
  3587. afe_send_hw_delay(port_id, rate);
  3588. }
  3589. /* Start SW MAD module */
  3590. mad_type = afe_port_get_mad_type(port_id);
  3591. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  3592. mad_type);
  3593. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  3594. if (!afe_has_config(AFE_CDC_REGISTERS_CONFIG) ||
  3595. !afe_has_config(AFE_SLIMBUS_SLAVE_CONFIG)) {
  3596. pr_err("%s: AFE isn't configured yet for\n"
  3597. "HW MAD try Again\n", __func__);
  3598. ret = -EAGAIN;
  3599. goto fail_cmd;
  3600. }
  3601. ret = afe_turn_onoff_hw_mad(mad_type, true);
  3602. if (ret) {
  3603. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  3604. __func__, ret);
  3605. goto fail_cmd;
  3606. }
  3607. }
  3608. if ((this_afe.aanc_info.aanc_active) &&
  3609. (this_afe.aanc_info.aanc_tx_port == port_id)) {
  3610. this_afe.aanc_info.aanc_tx_port_sample_rate = rate;
  3611. port_index =
  3612. afe_get_port_index(this_afe.aanc_info.aanc_rx_port);
  3613. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  3614. this_afe.aanc_info.aanc_rx_port_sample_rate =
  3615. this_afe.afe_sample_rates[port_index];
  3616. } else {
  3617. pr_err("%s: Invalid port index %d\n",
  3618. __func__, port_index);
  3619. ret = -EINVAL;
  3620. goto fail_cmd;
  3621. }
  3622. ret = afe_aanc_start(this_afe.aanc_info.aanc_tx_port,
  3623. this_afe.aanc_info.aanc_rx_port);
  3624. pr_debug("%s: afe_aanc_start ret %d\n", __func__, ret);
  3625. }
  3626. if ((port_id == AFE_PORT_ID_USB_RX) ||
  3627. (port_id == AFE_PORT_ID_USB_TX)) {
  3628. ret = afe_port_send_usb_dev_param(port_id, afe_config);
  3629. if (ret) {
  3630. pr_err("%s: AFE device param for port 0x%x failed %d\n",
  3631. __func__, port_id, ret);
  3632. ret = -EINVAL;
  3633. goto fail_cmd;
  3634. }
  3635. }
  3636. switch (port_id) {
  3637. case AFE_PORT_ID_PRIMARY_PCM_RX:
  3638. case AFE_PORT_ID_PRIMARY_PCM_TX:
  3639. case AFE_PORT_ID_SECONDARY_PCM_RX:
  3640. case AFE_PORT_ID_SECONDARY_PCM_TX:
  3641. case AFE_PORT_ID_TERTIARY_PCM_RX:
  3642. case AFE_PORT_ID_TERTIARY_PCM_TX:
  3643. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  3644. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  3645. case AFE_PORT_ID_QUINARY_PCM_RX:
  3646. case AFE_PORT_ID_QUINARY_PCM_TX:
  3647. case AFE_PORT_ID_SENARY_PCM_RX:
  3648. case AFE_PORT_ID_SENARY_PCM_TX:
  3649. cfg_type = AFE_PARAM_ID_PCM_CONFIG;
  3650. break;
  3651. case PRIMARY_I2S_RX:
  3652. case PRIMARY_I2S_TX:
  3653. case SECONDARY_I2S_RX:
  3654. case SECONDARY_I2S_TX:
  3655. case MI2S_RX:
  3656. case MI2S_TX:
  3657. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  3658. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  3659. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  3660. case AFE_PORT_ID_SECONDARY_MI2S_RX_SD1:
  3661. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  3662. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  3663. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  3664. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  3665. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  3666. case AFE_PORT_ID_QUINARY_MI2S_RX:
  3667. case AFE_PORT_ID_QUINARY_MI2S_TX:
  3668. case AFE_PORT_ID_SENARY_MI2S_TX:
  3669. case AFE_PORT_ID_INT0_MI2S_RX:
  3670. case AFE_PORT_ID_INT0_MI2S_TX:
  3671. case AFE_PORT_ID_INT1_MI2S_RX:
  3672. case AFE_PORT_ID_INT1_MI2S_TX:
  3673. case AFE_PORT_ID_INT2_MI2S_RX:
  3674. case AFE_PORT_ID_INT2_MI2S_TX:
  3675. case AFE_PORT_ID_INT3_MI2S_RX:
  3676. case AFE_PORT_ID_INT3_MI2S_TX:
  3677. case AFE_PORT_ID_INT4_MI2S_RX:
  3678. case AFE_PORT_ID_INT4_MI2S_TX:
  3679. case AFE_PORT_ID_INT5_MI2S_RX:
  3680. case AFE_PORT_ID_INT5_MI2S_TX:
  3681. case AFE_PORT_ID_INT6_MI2S_RX:
  3682. case AFE_PORT_ID_INT6_MI2S_TX:
  3683. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  3684. break;
  3685. case HDMI_RX:
  3686. case DISPLAY_PORT_RX:
  3687. cfg_type = AFE_PARAM_ID_HDMI_CONFIG;
  3688. break;
  3689. case VOICE_PLAYBACK_TX:
  3690. case VOICE2_PLAYBACK_TX:
  3691. case VOICE_RECORD_RX:
  3692. case VOICE_RECORD_TX:
  3693. cfg_type = AFE_PARAM_ID_PSEUDO_PORT_CONFIG;
  3694. break;
  3695. case SLIMBUS_0_RX:
  3696. case SLIMBUS_0_TX:
  3697. case SLIMBUS_1_RX:
  3698. case SLIMBUS_1_TX:
  3699. case SLIMBUS_2_RX:
  3700. case SLIMBUS_2_TX:
  3701. case SLIMBUS_3_RX:
  3702. case SLIMBUS_3_TX:
  3703. case SLIMBUS_4_RX:
  3704. case SLIMBUS_4_TX:
  3705. case SLIMBUS_5_RX:
  3706. case SLIMBUS_5_TX:
  3707. case SLIMBUS_6_RX:
  3708. case SLIMBUS_6_TX:
  3709. case SLIMBUS_7_RX:
  3710. case SLIMBUS_7_TX:
  3711. case SLIMBUS_8_RX:
  3712. case SLIMBUS_8_TX:
  3713. case SLIMBUS_9_RX:
  3714. case SLIMBUS_9_TX:
  3715. cfg_type = AFE_PARAM_ID_SLIMBUS_CONFIG;
  3716. break;
  3717. case AFE_PORT_ID_USB_RX:
  3718. case AFE_PORT_ID_USB_TX:
  3719. cfg_type = AFE_PARAM_ID_USB_AUDIO_CONFIG;
  3720. break;
  3721. case RT_PROXY_PORT_001_RX:
  3722. case RT_PROXY_PORT_001_TX:
  3723. cfg_type = AFE_PARAM_ID_RT_PROXY_CONFIG;
  3724. break;
  3725. case INT_BT_SCO_RX:
  3726. case INT_BT_A2DP_RX:
  3727. case INT_BT_SCO_TX:
  3728. case INT_FM_RX:
  3729. case INT_FM_TX:
  3730. cfg_type = AFE_PARAM_ID_INTERNAL_BT_FM_CONFIG;
  3731. break;
  3732. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  3733. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  3734. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  3735. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  3736. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  3737. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  3738. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  3739. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  3740. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  3741. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  3742. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  3743. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  3744. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  3745. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  3746. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  3747. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  3748. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  3749. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  3750. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  3751. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  3752. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  3753. cfg_type = AFE_PARAM_ID_CODEC_DMA_CONFIG;
  3754. break;
  3755. default:
  3756. pr_err("%s: Invalid port id 0x%x\n", __func__, port_id);
  3757. ret = -EINVAL;
  3758. goto fail_cmd;
  3759. }
  3760. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3761. param_hdr.instance_id = INSTANCE_ID_0;
  3762. param_hdr.param_id = cfg_type;
  3763. param_hdr.param_size = sizeof(union afe_port_config);
  3764. port_cfg = *afe_config;
  3765. if (((enc_cfg != NULL) || (dec_cfg != NULL)) &&
  3766. (codec_format != ASM_MEDIA_FMT_NONE) &&
  3767. (cfg_type == AFE_PARAM_ID_SLIMBUS_CONFIG)) {
  3768. port_cfg.slim_sch.data_format =
  3769. AFE_SB_DATA_FORMAT_GENERIC_COMPRESSED;
  3770. }
  3771. ret = q6afe_pack_and_set_param_in_band(port_id,
  3772. q6audio_get_port_index(port_id),
  3773. param_hdr, (u8 *) &port_cfg);
  3774. if (ret) {
  3775. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  3776. __func__, port_id, ret);
  3777. goto fail_cmd;
  3778. }
  3779. if ((codec_format != ASM_MEDIA_FMT_NONE) &&
  3780. (cfg_type == AFE_PARAM_ID_SLIMBUS_CONFIG)) {
  3781. if (enc_cfg != NULL) {
  3782. pr_debug("%s: Found AFE encoder support for SLIMBUS format = %d\n",
  3783. __func__, codec_format);
  3784. ret = q6afe_send_enc_config(port_id, enc_cfg,
  3785. codec_format, *afe_config,
  3786. afe_in_channels,
  3787. afe_in_bit_width,
  3788. scrambler_mode, mono_mode);
  3789. if (ret) {
  3790. pr_err("%s: AFE encoder config for port 0x%x failed %d\n",
  3791. __func__, port_id, ret);
  3792. goto fail_cmd;
  3793. }
  3794. }
  3795. if (dec_cfg != NULL) {
  3796. pr_debug("%s: Found AFE decoder support for SLIMBUS format = %d\n",
  3797. __func__, codec_format);
  3798. ret = q6afe_send_dec_config(port_id, *afe_config,
  3799. dec_cfg, codec_format,
  3800. afe_in_channels,
  3801. afe_in_bit_width);
  3802. if (ret) {
  3803. pr_err("%s: AFE decoder config for port 0x%x failed %d\n",
  3804. __func__, port_id, ret);
  3805. goto fail_cmd;
  3806. }
  3807. }
  3808. }
  3809. port_index = afe_get_port_index(port_id);
  3810. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  3811. /*
  3812. * If afe_port_start() for tx port called before
  3813. * rx port, then aanc rx sample rate is zero. So,
  3814. * AANC state machine in AFE will not get triggered.
  3815. * Make sure to check whether aanc is active during
  3816. * afe_port_start() for rx port and if aanc rx
  3817. * sample rate is zero, call afe_aanc_start to configure
  3818. * aanc with valid sample rates.
  3819. */
  3820. if (this_afe.aanc_info.aanc_active &&
  3821. !this_afe.aanc_info.aanc_rx_port_sample_rate) {
  3822. this_afe.aanc_info.aanc_rx_port_sample_rate =
  3823. this_afe.afe_sample_rates[port_index];
  3824. ret = afe_aanc_start(this_afe.aanc_info.aanc_tx_port,
  3825. this_afe.aanc_info.aanc_rx_port);
  3826. pr_debug("%s: afe_aanc_start ret %d\n", __func__, ret);
  3827. }
  3828. } else {
  3829. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  3830. ret = -EINVAL;
  3831. goto fail_cmd;
  3832. }
  3833. ret = afe_send_cmd_port_start(port_id);
  3834. fail_cmd:
  3835. mutex_unlock(&this_afe.afe_cmd_lock);
  3836. return ret;
  3837. }
  3838. /**
  3839. * afe_port_start - to configure AFE session with
  3840. * specified port configuration
  3841. *
  3842. * @port_id: AFE port id number
  3843. * @afe_config: port configutation
  3844. * @rate: sampling rate of port
  3845. *
  3846. * Returns 0 on success or error value on port start failure.
  3847. */
  3848. int afe_port_start(u16 port_id, union afe_port_config *afe_config,
  3849. u32 rate)
  3850. {
  3851. return __afe_port_start(port_id, afe_config, rate,
  3852. 0, 0, NULL, ASM_MEDIA_FMT_NONE, 0, 0, NULL);
  3853. }
  3854. EXPORT_SYMBOL(afe_port_start);
  3855. /**
  3856. * afe_port_start_v2 - to configure AFE session with
  3857. * specified port configuration and encoder /decoder params
  3858. *
  3859. * @port_id: AFE port id number
  3860. * @afe_config: port configutation
  3861. * @rate: sampling rate of port
  3862. * @enc_cfg: AFE enc configuration information to setup encoder
  3863. * @afe_in_channels: AFE input channel configuration, this needs
  3864. * update only if input channel is differ from AFE output
  3865. * @dec_cfg: AFE dec configuration information to set up decoder
  3866. *
  3867. * Returns 0 on success or error value on port start failure.
  3868. */
  3869. int afe_port_start_v2(u16 port_id, union afe_port_config *afe_config,
  3870. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  3871. struct afe_enc_config *enc_cfg,
  3872. struct afe_dec_config *dec_cfg)
  3873. {
  3874. int ret = 0;
  3875. if (enc_cfg != NULL)
  3876. ret = __afe_port_start(port_id, afe_config, rate,
  3877. afe_in_channels, afe_in_bit_width,
  3878. &enc_cfg->data, enc_cfg->format,
  3879. enc_cfg->scrambler_mode,
  3880. enc_cfg->mono_mode, dec_cfg);
  3881. else if (dec_cfg != NULL)
  3882. ret = __afe_port_start(port_id, afe_config, rate,
  3883. afe_in_channels, afe_in_bit_width,
  3884. NULL, dec_cfg->format, 0, 0, dec_cfg);
  3885. return ret;
  3886. }
  3887. EXPORT_SYMBOL(afe_port_start_v2);
  3888. int afe_get_port_index(u16 port_id)
  3889. {
  3890. switch (port_id) {
  3891. case PRIMARY_I2S_RX: return IDX_PRIMARY_I2S_RX;
  3892. case PRIMARY_I2S_TX: return IDX_PRIMARY_I2S_TX;
  3893. case AFE_PORT_ID_PRIMARY_PCM_RX:
  3894. return IDX_AFE_PORT_ID_PRIMARY_PCM_RX;
  3895. case AFE_PORT_ID_PRIMARY_PCM_TX:
  3896. return IDX_AFE_PORT_ID_PRIMARY_PCM_TX;
  3897. case AFE_PORT_ID_SECONDARY_PCM_RX:
  3898. return IDX_AFE_PORT_ID_SECONDARY_PCM_RX;
  3899. case AFE_PORT_ID_SECONDARY_PCM_TX:
  3900. return IDX_AFE_PORT_ID_SECONDARY_PCM_TX;
  3901. case AFE_PORT_ID_TERTIARY_PCM_RX:
  3902. return IDX_AFE_PORT_ID_TERTIARY_PCM_RX;
  3903. case AFE_PORT_ID_TERTIARY_PCM_TX:
  3904. return IDX_AFE_PORT_ID_TERTIARY_PCM_TX;
  3905. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  3906. return IDX_AFE_PORT_ID_QUATERNARY_PCM_RX;
  3907. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  3908. return IDX_AFE_PORT_ID_QUATERNARY_PCM_TX;
  3909. case AFE_PORT_ID_QUINARY_PCM_RX:
  3910. return IDX_AFE_PORT_ID_QUINARY_PCM_RX;
  3911. case AFE_PORT_ID_QUINARY_PCM_TX:
  3912. return IDX_AFE_PORT_ID_QUINARY_PCM_TX;
  3913. case AFE_PORT_ID_SENARY_PCM_RX:
  3914. return IDX_AFE_PORT_ID_SENARY_PCM_RX;
  3915. case AFE_PORT_ID_SENARY_PCM_TX:
  3916. return IDX_AFE_PORT_ID_SENARY_PCM_TX;
  3917. case SECONDARY_I2S_RX: return IDX_SECONDARY_I2S_RX;
  3918. case SECONDARY_I2S_TX: return IDX_SECONDARY_I2S_TX;
  3919. case MI2S_RX: return IDX_MI2S_RX;
  3920. case MI2S_TX: return IDX_MI2S_TX;
  3921. case HDMI_RX: return IDX_HDMI_RX;
  3922. case DISPLAY_PORT_RX: return IDX_DISPLAY_PORT_RX;
  3923. case AFE_PORT_ID_PRIMARY_SPDIF_RX: return IDX_PRIMARY_SPDIF_RX;
  3924. case AFE_PORT_ID_PRIMARY_SPDIF_TX: return IDX_PRIMARY_SPDIF_TX;
  3925. case AFE_PORT_ID_SECONDARY_SPDIF_RX: return IDX_SECONDARY_SPDIF_RX;
  3926. case AFE_PORT_ID_SECONDARY_SPDIF_TX: return IDX_SECONDARY_SPDIF_TX;
  3927. case RSVD_2: return IDX_RSVD_2;
  3928. case RSVD_3: return IDX_RSVD_3;
  3929. case DIGI_MIC_TX: return IDX_DIGI_MIC_TX;
  3930. case VOICE_RECORD_RX: return IDX_VOICE_RECORD_RX;
  3931. case VOICE_RECORD_TX: return IDX_VOICE_RECORD_TX;
  3932. case VOICE_PLAYBACK_TX: return IDX_VOICE_PLAYBACK_TX;
  3933. case VOICE2_PLAYBACK_TX: return IDX_VOICE2_PLAYBACK_TX;
  3934. case SLIMBUS_0_RX: return IDX_SLIMBUS_0_RX;
  3935. case SLIMBUS_0_TX: return IDX_SLIMBUS_0_TX;
  3936. case SLIMBUS_1_RX: return IDX_SLIMBUS_1_RX;
  3937. case SLIMBUS_1_TX: return IDX_SLIMBUS_1_TX;
  3938. case SLIMBUS_2_RX: return IDX_SLIMBUS_2_RX;
  3939. case SLIMBUS_2_TX: return IDX_SLIMBUS_2_TX;
  3940. case SLIMBUS_3_RX: return IDX_SLIMBUS_3_RX;
  3941. case SLIMBUS_3_TX: return IDX_SLIMBUS_3_TX;
  3942. case INT_BT_SCO_RX: return IDX_INT_BT_SCO_RX;
  3943. case INT_BT_SCO_TX: return IDX_INT_BT_SCO_TX;
  3944. case INT_BT_A2DP_RX: return IDX_INT_BT_A2DP_RX;
  3945. case INT_FM_RX: return IDX_INT_FM_RX;
  3946. case INT_FM_TX: return IDX_INT_FM_TX;
  3947. case RT_PROXY_PORT_001_RX: return IDX_RT_PROXY_PORT_001_RX;
  3948. case RT_PROXY_PORT_001_TX: return IDX_RT_PROXY_PORT_001_TX;
  3949. case SLIMBUS_4_RX: return IDX_SLIMBUS_4_RX;
  3950. case SLIMBUS_4_TX: return IDX_SLIMBUS_4_TX;
  3951. case SLIMBUS_5_RX: return IDX_SLIMBUS_5_RX;
  3952. case SLIMBUS_5_TX: return IDX_SLIMBUS_5_TX;
  3953. case SLIMBUS_6_RX: return IDX_SLIMBUS_6_RX;
  3954. case SLIMBUS_6_TX: return IDX_SLIMBUS_6_TX;
  3955. case SLIMBUS_7_RX: return IDX_SLIMBUS_7_RX;
  3956. case SLIMBUS_7_TX: return IDX_SLIMBUS_7_TX;
  3957. case SLIMBUS_8_RX: return IDX_SLIMBUS_8_RX;
  3958. case SLIMBUS_8_TX: return IDX_SLIMBUS_8_TX;
  3959. case SLIMBUS_9_RX: return IDX_SLIMBUS_9_RX;
  3960. case SLIMBUS_9_TX: return IDX_SLIMBUS_9_TX;
  3961. case AFE_PORT_ID_USB_RX: return IDX_AFE_PORT_ID_USB_RX;
  3962. case AFE_PORT_ID_USB_TX: return IDX_AFE_PORT_ID_USB_TX;
  3963. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  3964. return IDX_AFE_PORT_ID_PRIMARY_MI2S_RX;
  3965. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  3966. return IDX_AFE_PORT_ID_PRIMARY_MI2S_TX;
  3967. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  3968. return IDX_AFE_PORT_ID_QUATERNARY_MI2S_RX;
  3969. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  3970. return IDX_AFE_PORT_ID_QUATERNARY_MI2S_TX;
  3971. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  3972. return IDX_AFE_PORT_ID_SECONDARY_MI2S_RX;
  3973. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  3974. return IDX_AFE_PORT_ID_SECONDARY_MI2S_TX;
  3975. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  3976. return IDX_AFE_PORT_ID_TERTIARY_MI2S_RX;
  3977. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  3978. return IDX_AFE_PORT_ID_TERTIARY_MI2S_TX;
  3979. case AFE_PORT_ID_SECONDARY_MI2S_RX_SD1:
  3980. return IDX_AFE_PORT_ID_SECONDARY_MI2S_RX_SD1;
  3981. case AFE_PORT_ID_QUINARY_MI2S_RX:
  3982. return IDX_AFE_PORT_ID_QUINARY_MI2S_RX;
  3983. case AFE_PORT_ID_QUINARY_MI2S_TX:
  3984. return IDX_AFE_PORT_ID_QUINARY_MI2S_TX;
  3985. case AFE_PORT_ID_SENARY_MI2S_TX:
  3986. return IDX_AFE_PORT_ID_SENARY_MI2S_TX;
  3987. case AFE_PORT_ID_PRIMARY_TDM_RX:
  3988. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_0;
  3989. case AFE_PORT_ID_PRIMARY_TDM_TX:
  3990. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_0;
  3991. case AFE_PORT_ID_PRIMARY_TDM_RX_1:
  3992. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_1;
  3993. case AFE_PORT_ID_PRIMARY_TDM_TX_1:
  3994. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_1;
  3995. case AFE_PORT_ID_PRIMARY_TDM_RX_2:
  3996. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_2;
  3997. case AFE_PORT_ID_PRIMARY_TDM_TX_2:
  3998. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_2;
  3999. case AFE_PORT_ID_PRIMARY_TDM_RX_3:
  4000. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_3;
  4001. case AFE_PORT_ID_PRIMARY_TDM_TX_3:
  4002. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_3;
  4003. case AFE_PORT_ID_PRIMARY_TDM_RX_4:
  4004. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_4;
  4005. case AFE_PORT_ID_PRIMARY_TDM_TX_4:
  4006. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_4;
  4007. case AFE_PORT_ID_PRIMARY_TDM_RX_5:
  4008. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_5;
  4009. case AFE_PORT_ID_PRIMARY_TDM_TX_5:
  4010. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_5;
  4011. case AFE_PORT_ID_PRIMARY_TDM_RX_6:
  4012. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_6;
  4013. case AFE_PORT_ID_PRIMARY_TDM_TX_6:
  4014. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_6;
  4015. case AFE_PORT_ID_PRIMARY_TDM_RX_7:
  4016. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_7;
  4017. case AFE_PORT_ID_PRIMARY_TDM_TX_7:
  4018. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_7;
  4019. case AFE_PORT_ID_SECONDARY_TDM_RX:
  4020. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_0;
  4021. case AFE_PORT_ID_SECONDARY_TDM_TX:
  4022. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_0;
  4023. case AFE_PORT_ID_SECONDARY_TDM_RX_1:
  4024. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_1;
  4025. case AFE_PORT_ID_SECONDARY_TDM_TX_1:
  4026. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_1;
  4027. case AFE_PORT_ID_SECONDARY_TDM_RX_2:
  4028. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_2;
  4029. case AFE_PORT_ID_SECONDARY_TDM_TX_2:
  4030. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_2;
  4031. case AFE_PORT_ID_SECONDARY_TDM_RX_3:
  4032. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_3;
  4033. case AFE_PORT_ID_SECONDARY_TDM_TX_3:
  4034. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_3;
  4035. case AFE_PORT_ID_SECONDARY_TDM_RX_4:
  4036. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_4;
  4037. case AFE_PORT_ID_SECONDARY_TDM_TX_4:
  4038. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_4;
  4039. case AFE_PORT_ID_SECONDARY_TDM_RX_5:
  4040. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_5;
  4041. case AFE_PORT_ID_SECONDARY_TDM_TX_5:
  4042. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_5;
  4043. case AFE_PORT_ID_SECONDARY_TDM_RX_6:
  4044. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_6;
  4045. case AFE_PORT_ID_SECONDARY_TDM_TX_6:
  4046. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_6;
  4047. case AFE_PORT_ID_SECONDARY_TDM_RX_7:
  4048. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_7;
  4049. case AFE_PORT_ID_SECONDARY_TDM_TX_7:
  4050. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_7;
  4051. case AFE_PORT_ID_TERTIARY_TDM_RX:
  4052. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_0;
  4053. case AFE_PORT_ID_TERTIARY_TDM_TX:
  4054. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_0;
  4055. case AFE_PORT_ID_TERTIARY_TDM_RX_1:
  4056. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_1;
  4057. case AFE_PORT_ID_TERTIARY_TDM_TX_1:
  4058. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_1;
  4059. case AFE_PORT_ID_TERTIARY_TDM_RX_2:
  4060. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_2;
  4061. case AFE_PORT_ID_TERTIARY_TDM_TX_2:
  4062. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_2;
  4063. case AFE_PORT_ID_TERTIARY_TDM_RX_3:
  4064. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_3;
  4065. case AFE_PORT_ID_TERTIARY_TDM_TX_3:
  4066. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_3;
  4067. case AFE_PORT_ID_TERTIARY_TDM_RX_4:
  4068. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_4;
  4069. case AFE_PORT_ID_TERTIARY_TDM_TX_4:
  4070. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_4;
  4071. case AFE_PORT_ID_TERTIARY_TDM_RX_5:
  4072. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_5;
  4073. case AFE_PORT_ID_TERTIARY_TDM_TX_5:
  4074. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_5;
  4075. case AFE_PORT_ID_TERTIARY_TDM_RX_6:
  4076. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_6;
  4077. case AFE_PORT_ID_TERTIARY_TDM_TX_6:
  4078. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_6;
  4079. case AFE_PORT_ID_TERTIARY_TDM_RX_7:
  4080. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_7;
  4081. case AFE_PORT_ID_TERTIARY_TDM_TX_7:
  4082. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_7;
  4083. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  4084. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_0;
  4085. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  4086. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_0;
  4087. case AFE_PORT_ID_QUATERNARY_TDM_RX_1:
  4088. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_1;
  4089. case AFE_PORT_ID_QUATERNARY_TDM_TX_1:
  4090. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_1;
  4091. case AFE_PORT_ID_QUATERNARY_TDM_RX_2:
  4092. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_2;
  4093. case AFE_PORT_ID_QUATERNARY_TDM_TX_2:
  4094. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_2;
  4095. case AFE_PORT_ID_QUATERNARY_TDM_RX_3:
  4096. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_3;
  4097. case AFE_PORT_ID_QUATERNARY_TDM_TX_3:
  4098. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_3;
  4099. case AFE_PORT_ID_QUATERNARY_TDM_RX_4:
  4100. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_4;
  4101. case AFE_PORT_ID_QUATERNARY_TDM_TX_4:
  4102. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_4;
  4103. case AFE_PORT_ID_QUATERNARY_TDM_RX_5:
  4104. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_5;
  4105. case AFE_PORT_ID_QUATERNARY_TDM_TX_5:
  4106. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_5;
  4107. case AFE_PORT_ID_QUATERNARY_TDM_RX_6:
  4108. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_6;
  4109. case AFE_PORT_ID_QUATERNARY_TDM_TX_6:
  4110. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_6;
  4111. case AFE_PORT_ID_QUATERNARY_TDM_RX_7:
  4112. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_7;
  4113. case AFE_PORT_ID_QUATERNARY_TDM_TX_7:
  4114. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_7;
  4115. case AFE_PORT_ID_QUINARY_TDM_RX:
  4116. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_0;
  4117. case AFE_PORT_ID_QUINARY_TDM_TX:
  4118. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_0;
  4119. case AFE_PORT_ID_QUINARY_TDM_RX_1:
  4120. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_1;
  4121. case AFE_PORT_ID_QUINARY_TDM_TX_1:
  4122. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_1;
  4123. case AFE_PORT_ID_QUINARY_TDM_RX_2:
  4124. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_2;
  4125. case AFE_PORT_ID_QUINARY_TDM_TX_2:
  4126. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_2;
  4127. case AFE_PORT_ID_QUINARY_TDM_RX_3:
  4128. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_3;
  4129. case AFE_PORT_ID_QUINARY_TDM_TX_3:
  4130. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_3;
  4131. case AFE_PORT_ID_QUINARY_TDM_RX_4:
  4132. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_4;
  4133. case AFE_PORT_ID_QUINARY_TDM_TX_4:
  4134. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_4;
  4135. case AFE_PORT_ID_QUINARY_TDM_RX_5:
  4136. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_5;
  4137. case AFE_PORT_ID_QUINARY_TDM_TX_5:
  4138. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_5;
  4139. case AFE_PORT_ID_QUINARY_TDM_RX_6:
  4140. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_6;
  4141. case AFE_PORT_ID_QUINARY_TDM_TX_6:
  4142. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_6;
  4143. case AFE_PORT_ID_QUINARY_TDM_RX_7:
  4144. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_7;
  4145. case AFE_PORT_ID_QUINARY_TDM_TX_7:
  4146. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_7;
  4147. case AFE_PORT_ID_INT0_MI2S_RX:
  4148. return IDX_AFE_PORT_ID_INT0_MI2S_RX;
  4149. case AFE_PORT_ID_INT0_MI2S_TX:
  4150. return IDX_AFE_PORT_ID_INT0_MI2S_TX;
  4151. case AFE_PORT_ID_INT1_MI2S_RX:
  4152. return IDX_AFE_PORT_ID_INT1_MI2S_RX;
  4153. case AFE_PORT_ID_INT1_MI2S_TX:
  4154. return IDX_AFE_PORT_ID_INT1_MI2S_TX;
  4155. case AFE_PORT_ID_INT2_MI2S_RX:
  4156. return IDX_AFE_PORT_ID_INT2_MI2S_RX;
  4157. case AFE_PORT_ID_INT2_MI2S_TX:
  4158. return IDX_AFE_PORT_ID_INT2_MI2S_TX;
  4159. case AFE_PORT_ID_INT3_MI2S_RX:
  4160. return IDX_AFE_PORT_ID_INT3_MI2S_RX;
  4161. case AFE_PORT_ID_INT3_MI2S_TX:
  4162. return IDX_AFE_PORT_ID_INT3_MI2S_TX;
  4163. case AFE_PORT_ID_INT4_MI2S_RX:
  4164. return IDX_AFE_PORT_ID_INT4_MI2S_RX;
  4165. case AFE_PORT_ID_INT4_MI2S_TX:
  4166. return IDX_AFE_PORT_ID_INT4_MI2S_TX;
  4167. case AFE_PORT_ID_INT5_MI2S_RX:
  4168. return IDX_AFE_PORT_ID_INT5_MI2S_RX;
  4169. case AFE_PORT_ID_INT5_MI2S_TX:
  4170. return IDX_AFE_PORT_ID_INT5_MI2S_TX;
  4171. case AFE_PORT_ID_INT6_MI2S_RX:
  4172. return IDX_AFE_PORT_ID_INT6_MI2S_RX;
  4173. case AFE_PORT_ID_INT6_MI2S_TX:
  4174. return IDX_AFE_PORT_ID_INT6_MI2S_TX;
  4175. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  4176. return IDX_AFE_PORT_ID_VA_CODEC_DMA_TX_0;
  4177. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  4178. return IDX_AFE_PORT_ID_VA_CODEC_DMA_TX_1;
  4179. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  4180. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_RX_0;
  4181. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  4182. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_0;
  4183. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  4184. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_RX_1;
  4185. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  4186. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_1;
  4187. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  4188. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_2;
  4189. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  4190. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_0;
  4191. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  4192. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_0;
  4193. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  4194. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_1;
  4195. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  4196. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_1;
  4197. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  4198. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_2;
  4199. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  4200. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_2;
  4201. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  4202. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_3;
  4203. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  4204. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_3;
  4205. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  4206. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_4;
  4207. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  4208. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_4;
  4209. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  4210. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_5;
  4211. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  4212. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_5;
  4213. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  4214. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_6;
  4215. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  4216. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_7;
  4217. case AFE_LOOPBACK_TX:
  4218. return IDX_AFE_LOOPBACK_TX;
  4219. default:
  4220. pr_err("%s: port 0x%x\n", __func__, port_id);
  4221. return -EINVAL;
  4222. }
  4223. }
  4224. /**
  4225. * afe_open -
  4226. * command to open AFE port
  4227. *
  4228. * @port_id: AFE port id
  4229. * @afe_config: AFE port config to pass
  4230. * @rate: sample rate
  4231. *
  4232. * Returns 0 on success or error on failure
  4233. */
  4234. int afe_open(u16 port_id,
  4235. union afe_port_config *afe_config, int rate)
  4236. {
  4237. struct afe_port_cmd_device_start start;
  4238. union afe_port_config port_cfg;
  4239. struct param_hdr_v3 param_hdr;
  4240. int ret = 0;
  4241. int cfg_type;
  4242. int index = 0;
  4243. memset(&param_hdr, 0, sizeof(param_hdr));
  4244. memset(&start, 0, sizeof(start));
  4245. memset(&port_cfg, 0, sizeof(port_cfg));
  4246. if (!afe_config) {
  4247. pr_err("%s: Error, no configuration data\n", __func__);
  4248. ret = -EINVAL;
  4249. return ret;
  4250. }
  4251. pr_err("%s: port_id 0x%x rate %d\n", __func__, port_id, rate);
  4252. index = q6audio_get_port_index(port_id);
  4253. if (index < 0 || index >= AFE_MAX_PORTS) {
  4254. pr_err("%s: AFE port index[%d] invalid!\n",
  4255. __func__, index);
  4256. return -EINVAL;
  4257. }
  4258. ret = q6audio_validate_port(port_id);
  4259. if (ret < 0) {
  4260. pr_err("%s: Invalid port 0x%x ret %d", __func__, port_id, ret);
  4261. return -EINVAL;
  4262. }
  4263. if ((port_id == RT_PROXY_DAI_001_RX) ||
  4264. (port_id == RT_PROXY_DAI_002_TX)) {
  4265. pr_err("%s: wrong port 0x%x\n", __func__, port_id);
  4266. return -EINVAL;
  4267. }
  4268. if ((port_id == RT_PROXY_DAI_002_RX) ||
  4269. (port_id == RT_PROXY_DAI_001_TX))
  4270. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4271. ret = afe_q6_interface_prepare();
  4272. if (ret != 0) {
  4273. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  4274. return -EINVAL;
  4275. }
  4276. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  4277. this_afe.afe_sample_rates[index] = rate;
  4278. if (this_afe.rt_cb)
  4279. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  4280. }
  4281. /* Also send the topology id here: */
  4282. afe_send_custom_topology(); /* One time call: only for first time */
  4283. afe_send_port_topology_id(port_id);
  4284. ret = q6audio_validate_port(port_id);
  4285. if (ret < 0) {
  4286. pr_err("%s: Failed : Invalid Port id = 0x%x ret %d\n",
  4287. __func__, port_id, ret);
  4288. return -EINVAL;
  4289. }
  4290. mutex_lock(&this_afe.afe_cmd_lock);
  4291. switch (port_id) {
  4292. case PRIMARY_I2S_RX:
  4293. case PRIMARY_I2S_TX:
  4294. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  4295. break;
  4296. case AFE_PORT_ID_PRIMARY_PCM_RX:
  4297. case AFE_PORT_ID_PRIMARY_PCM_TX:
  4298. case AFE_PORT_ID_SECONDARY_PCM_RX:
  4299. case AFE_PORT_ID_SECONDARY_PCM_TX:
  4300. case AFE_PORT_ID_TERTIARY_PCM_RX:
  4301. case AFE_PORT_ID_TERTIARY_PCM_TX:
  4302. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  4303. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  4304. case AFE_PORT_ID_QUINARY_PCM_RX:
  4305. case AFE_PORT_ID_QUINARY_PCM_TX:
  4306. case AFE_PORT_ID_SENARY_PCM_RX:
  4307. case AFE_PORT_ID_SENARY_PCM_TX:
  4308. cfg_type = AFE_PARAM_ID_PCM_CONFIG;
  4309. break;
  4310. case SECONDARY_I2S_RX:
  4311. case SECONDARY_I2S_TX:
  4312. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  4313. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  4314. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  4315. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  4316. case MI2S_RX:
  4317. case MI2S_TX:
  4318. case AFE_PORT_ID_QUINARY_MI2S_RX:
  4319. case AFE_PORT_ID_QUINARY_MI2S_TX:
  4320. case AFE_PORT_ID_SENARY_MI2S_TX:
  4321. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  4322. break;
  4323. case HDMI_RX:
  4324. case DISPLAY_PORT_RX:
  4325. cfg_type = AFE_PARAM_ID_HDMI_CONFIG;
  4326. break;
  4327. case AFE_PORT_ID_PRIMARY_SPDIF_RX:
  4328. case AFE_PORT_ID_PRIMARY_SPDIF_TX:
  4329. case AFE_PORT_ID_SECONDARY_SPDIF_RX:
  4330. case AFE_PORT_ID_SECONDARY_SPDIF_TX:
  4331. cfg_type = AFE_PARAM_ID_SPDIF_CONFIG;
  4332. break;
  4333. case SLIMBUS_0_RX:
  4334. case SLIMBUS_0_TX:
  4335. case SLIMBUS_1_RX:
  4336. case SLIMBUS_1_TX:
  4337. case SLIMBUS_2_RX:
  4338. case SLIMBUS_2_TX:
  4339. case SLIMBUS_3_RX:
  4340. case SLIMBUS_3_TX:
  4341. case SLIMBUS_4_RX:
  4342. case SLIMBUS_4_TX:
  4343. case SLIMBUS_5_RX:
  4344. case SLIMBUS_6_RX:
  4345. case SLIMBUS_6_TX:
  4346. case SLIMBUS_7_RX:
  4347. case SLIMBUS_7_TX:
  4348. case SLIMBUS_8_RX:
  4349. case SLIMBUS_8_TX:
  4350. case SLIMBUS_9_RX:
  4351. case SLIMBUS_9_TX:
  4352. cfg_type = AFE_PARAM_ID_SLIMBUS_CONFIG;
  4353. break;
  4354. case AFE_PORT_ID_USB_RX:
  4355. case AFE_PORT_ID_USB_TX:
  4356. cfg_type = AFE_PARAM_ID_USB_AUDIO_CONFIG;
  4357. break;
  4358. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  4359. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  4360. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  4361. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  4362. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  4363. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  4364. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  4365. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  4366. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  4367. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  4368. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  4369. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  4370. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  4371. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  4372. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  4373. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  4374. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  4375. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  4376. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  4377. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  4378. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  4379. cfg_type = AFE_PARAM_ID_CODEC_DMA_CONFIG;
  4380. break;
  4381. default:
  4382. pr_err("%s: Invalid port id 0x%x\n",
  4383. __func__, port_id);
  4384. ret = -EINVAL;
  4385. goto fail_cmd;
  4386. }
  4387. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  4388. param_hdr.instance_id = INSTANCE_ID_0;
  4389. param_hdr.param_id = cfg_type;
  4390. param_hdr.param_size = sizeof(union afe_port_config);
  4391. port_cfg = *afe_config;
  4392. ret = q6afe_pack_and_set_param_in_band(port_id,
  4393. q6audio_get_port_index(port_id),
  4394. param_hdr, (u8 *) &port_cfg);
  4395. if (ret) {
  4396. pr_err("%s: AFE enable for port 0x%x opcode[0x%x]failed %d\n",
  4397. __func__, port_id, cfg_type, ret);
  4398. goto fail_cmd;
  4399. }
  4400. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4401. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4402. start.hdr.pkt_size = sizeof(start);
  4403. start.hdr.src_port = 0;
  4404. start.hdr.dest_port = 0;
  4405. start.hdr.token = index;
  4406. start.hdr.opcode = AFE_PORT_CMD_DEVICE_START;
  4407. start.port_id = q6audio_get_port_id(port_id);
  4408. pr_debug("%s: cmd device start opcode[0x%x] port id[0x%x]\n",
  4409. __func__, start.hdr.opcode, start.port_id);
  4410. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  4411. if (ret) {
  4412. pr_err("%s: AFE enable for port 0x%x failed %d\n", __func__,
  4413. port_id, ret);
  4414. goto fail_cmd;
  4415. }
  4416. fail_cmd:
  4417. mutex_unlock(&this_afe.afe_cmd_lock);
  4418. return ret;
  4419. }
  4420. EXPORT_SYMBOL(afe_open);
  4421. /**
  4422. * afe_loopback -
  4423. * command to set loopback between AFE ports
  4424. *
  4425. * @enable: enable or disable loopback
  4426. * @rx_port: AFE RX port ID
  4427. * @tx_port: AFE TX port ID
  4428. *
  4429. * Returns 0 on success or error on failure
  4430. */
  4431. int afe_loopback(u16 enable, u16 rx_port, u16 tx_port)
  4432. {
  4433. struct afe_loopback_cfg_v1 lb_param;
  4434. struct param_hdr_v3 param_hdr;
  4435. int ret = 0;
  4436. memset(&lb_param, 0, sizeof(lb_param));
  4437. memset(&param_hdr, 0, sizeof(param_hdr));
  4438. if (rx_port == MI2S_RX)
  4439. rx_port = AFE_PORT_ID_PRIMARY_MI2S_RX;
  4440. if (tx_port == MI2S_TX)
  4441. tx_port = AFE_PORT_ID_PRIMARY_MI2S_TX;
  4442. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  4443. param_hdr.instance_id = INSTANCE_ID_0;
  4444. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_CONFIG;
  4445. param_hdr.param_size = sizeof(struct afe_loopback_cfg_v1);
  4446. lb_param.dst_port_id = rx_port;
  4447. lb_param.routing_mode = LB_MODE_DEFAULT;
  4448. lb_param.enable = (enable ? 1 : 0);
  4449. lb_param.loopback_cfg_minor_version = AFE_API_VERSION_LOOPBACK_CONFIG;
  4450. ret = q6afe_pack_and_set_param_in_band(tx_port,
  4451. q6audio_get_port_index(tx_port),
  4452. param_hdr, (u8 *) &lb_param);
  4453. if (ret)
  4454. pr_err("%s: AFE loopback failed %d\n", __func__, ret);
  4455. return ret;
  4456. }
  4457. EXPORT_SYMBOL(afe_loopback);
  4458. /**
  4459. * afe_loopback_gain -
  4460. * command to set gain for AFE loopback
  4461. *
  4462. * @port_id: AFE port id
  4463. * @volume: gain value to set
  4464. *
  4465. * Returns 0 on success or error on failure
  4466. */
  4467. int afe_loopback_gain(u16 port_id, u16 volume)
  4468. {
  4469. struct afe_loopback_gain_per_path_param set_param;
  4470. struct param_hdr_v3 param_hdr;
  4471. int ret = 0;
  4472. memset(&set_param, 0, sizeof(set_param));
  4473. memset(&param_hdr, 0, sizeof(param_hdr));
  4474. if (this_afe.apr == NULL) {
  4475. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4476. 0xFFFFFFFF, &this_afe);
  4477. pr_debug("%s: Register AFE\n", __func__);
  4478. if (this_afe.apr == NULL) {
  4479. pr_err("%s: Unable to register AFE\n", __func__);
  4480. ret = -ENODEV;
  4481. return ret;
  4482. }
  4483. rtac_set_afe_handle(this_afe.apr);
  4484. }
  4485. ret = q6audio_validate_port(port_id);
  4486. if (ret < 0) {
  4487. pr_err("%s: Failed : Invalid Port id = 0x%x ret %d\n",
  4488. __func__, port_id, ret);
  4489. ret = -EINVAL;
  4490. goto fail_cmd;
  4491. }
  4492. /* RX ports numbers are even .TX ports numbers are odd. */
  4493. if (port_id % 2 == 0) {
  4494. pr_err("%s: Failed : afe loopback gain only for TX ports. port_id %d\n",
  4495. __func__, port_id);
  4496. ret = -EINVAL;
  4497. goto fail_cmd;
  4498. }
  4499. pr_debug("%s: port 0x%x volume %d\n", __func__, port_id, volume);
  4500. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  4501. param_hdr.instance_id = INSTANCE_ID_0;
  4502. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_GAIN_PER_PATH;
  4503. param_hdr.param_size = sizeof(struct afe_loopback_gain_per_path_param);
  4504. set_param.rx_port_id = port_id;
  4505. set_param.gain = volume;
  4506. ret = q6afe_pack_and_set_param_in_band(port_id,
  4507. q6audio_get_port_index(port_id),
  4508. param_hdr, (u8 *) &set_param);
  4509. if (ret)
  4510. pr_err("%s: AFE param set failed for port 0x%x ret %d\n",
  4511. __func__, port_id, ret);
  4512. fail_cmd:
  4513. return ret;
  4514. }
  4515. EXPORT_SYMBOL(afe_loopback_gain);
  4516. int afe_pseudo_port_start_nowait(u16 port_id)
  4517. {
  4518. struct afe_pseudoport_start_command start;
  4519. int ret = 0;
  4520. pr_debug("%s: port_id=0x%x\n", __func__, port_id);
  4521. if (this_afe.apr == NULL) {
  4522. pr_err("%s: AFE APR is not registered\n", __func__);
  4523. return -ENODEV;
  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. ret = afe_apr_send_pkt(&start, NULL);
  4535. if (ret) {
  4536. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  4537. __func__, port_id, ret);
  4538. return ret;
  4539. }
  4540. return 0;
  4541. }
  4542. int afe_start_pseudo_port(u16 port_id)
  4543. {
  4544. int ret = 0;
  4545. struct afe_pseudoport_start_command start;
  4546. int index = 0;
  4547. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  4548. ret = afe_q6_interface_prepare();
  4549. if (ret != 0) {
  4550. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  4551. return ret;
  4552. }
  4553. index = q6audio_get_port_index(port_id);
  4554. if (index < 0 || index >= AFE_MAX_PORTS) {
  4555. pr_err("%s: AFE port index[%d] invalid!\n",
  4556. __func__, index);
  4557. return -EINVAL;
  4558. }
  4559. ret = q6audio_validate_port(port_id);
  4560. if (ret < 0) {
  4561. pr_err("%s: Invalid port 0x%x ret %d",
  4562. __func__, port_id, ret);
  4563. return -EINVAL;
  4564. }
  4565. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4566. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4567. start.hdr.pkt_size = sizeof(start);
  4568. start.hdr.src_port = 0;
  4569. start.hdr.dest_port = 0;
  4570. start.hdr.token = 0;
  4571. start.hdr.opcode = AFE_PSEUDOPORT_CMD_START;
  4572. start.port_id = port_id;
  4573. start.timing = 1;
  4574. start.hdr.token = index;
  4575. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  4576. if (ret)
  4577. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  4578. __func__, port_id, ret);
  4579. return ret;
  4580. }
  4581. int afe_pseudo_port_stop_nowait(u16 port_id)
  4582. {
  4583. int ret = 0;
  4584. struct afe_pseudoport_stop_command stop;
  4585. int index = 0;
  4586. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  4587. if (this_afe.apr == NULL) {
  4588. pr_err("%s: AFE is already closed\n", __func__);
  4589. return -EINVAL;
  4590. }
  4591. index = q6audio_get_port_index(port_id);
  4592. if (index < 0 || index >= AFE_MAX_PORTS) {
  4593. pr_err("%s: AFE port index[%d] invalid!\n",
  4594. __func__, index);
  4595. return -EINVAL;
  4596. }
  4597. ret = q6audio_validate_port(port_id);
  4598. if (ret < 0) {
  4599. pr_err("%s: Invalid port 0x%x ret %d",
  4600. __func__, port_id, ret);
  4601. return -EINVAL;
  4602. }
  4603. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4604. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4605. stop.hdr.pkt_size = sizeof(stop);
  4606. stop.hdr.src_port = 0;
  4607. stop.hdr.dest_port = 0;
  4608. stop.hdr.token = 0;
  4609. stop.hdr.opcode = AFE_PSEUDOPORT_CMD_STOP;
  4610. stop.port_id = port_id;
  4611. stop.reserved = 0;
  4612. stop.hdr.token = index;
  4613. ret = afe_apr_send_pkt(&stop, NULL);
  4614. if (ret)
  4615. pr_err("%s: AFE close failed %d\n", __func__, ret);
  4616. return ret;
  4617. }
  4618. int afe_port_group_set_param(u16 group_id,
  4619. union afe_port_group_config *afe_group_config)
  4620. {
  4621. struct param_hdr_v3 param_hdr;
  4622. int cfg_type;
  4623. int ret;
  4624. if (!afe_group_config) {
  4625. pr_err("%s: Error, no configuration data\n", __func__);
  4626. return -EINVAL;
  4627. }
  4628. pr_debug("%s: group id: 0x%x\n", __func__, group_id);
  4629. memset(&param_hdr, 0, sizeof(param_hdr));
  4630. ret = afe_q6_interface_prepare();
  4631. if (ret != 0) {
  4632. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  4633. return ret;
  4634. }
  4635. switch (group_id) {
  4636. case AFE_GROUP_DEVICE_ID_PRIMARY_TDM_RX:
  4637. case AFE_GROUP_DEVICE_ID_PRIMARY_TDM_TX:
  4638. case AFE_GROUP_DEVICE_ID_SECONDARY_TDM_RX:
  4639. case AFE_GROUP_DEVICE_ID_SECONDARY_TDM_TX:
  4640. case AFE_GROUP_DEVICE_ID_TERTIARY_TDM_RX:
  4641. case AFE_GROUP_DEVICE_ID_TERTIARY_TDM_TX:
  4642. case AFE_GROUP_DEVICE_ID_QUATERNARY_TDM_RX:
  4643. case AFE_GROUP_DEVICE_ID_QUATERNARY_TDM_TX:
  4644. case AFE_GROUP_DEVICE_ID_QUINARY_TDM_RX:
  4645. case AFE_GROUP_DEVICE_ID_QUINARY_TDM_TX:
  4646. cfg_type = AFE_PARAM_ID_GROUP_DEVICE_TDM_CONFIG;
  4647. break;
  4648. default:
  4649. pr_err("%s: Invalid group id 0x%x\n", __func__, group_id);
  4650. return -EINVAL;
  4651. }
  4652. param_hdr.module_id = AFE_MODULE_GROUP_DEVICE;
  4653. param_hdr.instance_id = INSTANCE_ID_0;
  4654. param_hdr.param_id = cfg_type;
  4655. param_hdr.param_size = sizeof(union afe_port_group_config);
  4656. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  4657. (u8 *) afe_group_config);
  4658. if (ret)
  4659. pr_err("%s: AFE_PARAM_ID_GROUP_DEVICE_CFG failed %d\n",
  4660. __func__, ret);
  4661. return ret;
  4662. }
  4663. /**
  4664. * afe_port_group_enable -
  4665. * command to enable AFE port group
  4666. *
  4667. * @group_id: group ID for AFE port group
  4668. * @afe_group_config: config for AFE group
  4669. * @enable: flag to indicate enable or disable
  4670. *
  4671. * Returns 0 on success or error on failure
  4672. */
  4673. int afe_port_group_enable(u16 group_id,
  4674. union afe_port_group_config *afe_group_config,
  4675. u16 enable)
  4676. {
  4677. struct afe_group_device_enable group_enable;
  4678. struct param_hdr_v3 param_hdr;
  4679. int ret;
  4680. pr_debug("%s: group id: 0x%x enable: %d\n", __func__,
  4681. group_id, enable);
  4682. memset(&group_enable, 0, sizeof(group_enable));
  4683. memset(&param_hdr, 0, sizeof(param_hdr));
  4684. ret = afe_q6_interface_prepare();
  4685. if (ret != 0) {
  4686. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  4687. return ret;
  4688. }
  4689. if (enable) {
  4690. ret = afe_port_group_set_param(group_id, afe_group_config);
  4691. if (ret < 0) {
  4692. pr_err("%s: afe send failed %d\n", __func__, ret);
  4693. return ret;
  4694. }
  4695. }
  4696. param_hdr.module_id = AFE_MODULE_GROUP_DEVICE;
  4697. param_hdr.instance_id = INSTANCE_ID_0;
  4698. param_hdr.param_id = AFE_PARAM_ID_GROUP_DEVICE_ENABLE;
  4699. param_hdr.param_size = sizeof(struct afe_group_device_enable);
  4700. group_enable.group_id = group_id;
  4701. group_enable.enable = enable;
  4702. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  4703. (u8 *) &group_enable);
  4704. if (ret)
  4705. pr_err("%s: AFE_PARAM_ID_GROUP_DEVICE_ENABLE failed %d\n",
  4706. __func__, ret);
  4707. return ret;
  4708. }
  4709. EXPORT_SYMBOL(afe_port_group_enable);
  4710. int afe_stop_pseudo_port(u16 port_id)
  4711. {
  4712. int ret = 0;
  4713. struct afe_pseudoport_stop_command stop;
  4714. int index = 0;
  4715. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  4716. if (this_afe.apr == NULL) {
  4717. pr_err("%s: AFE is already closed\n", __func__);
  4718. return -EINVAL;
  4719. }
  4720. index = q6audio_get_port_index(port_id);
  4721. if (index < 0 || index >= AFE_MAX_PORTS) {
  4722. pr_err("%s: AFE port index[%d] invalid!\n",
  4723. __func__, index);
  4724. return -EINVAL;
  4725. }
  4726. ret = q6audio_validate_port(port_id);
  4727. if (ret < 0) {
  4728. pr_err("%s: Invalid port 0x%x ret %d\n",
  4729. __func__, port_id, ret);
  4730. return -EINVAL;
  4731. }
  4732. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4733. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4734. stop.hdr.pkt_size = sizeof(stop);
  4735. stop.hdr.src_port = 0;
  4736. stop.hdr.dest_port = 0;
  4737. stop.hdr.token = 0;
  4738. stop.hdr.opcode = AFE_PSEUDOPORT_CMD_STOP;
  4739. stop.port_id = port_id;
  4740. stop.reserved = 0;
  4741. stop.hdr.token = index;
  4742. ret = afe_apr_send_pkt(&stop, &this_afe.wait[index]);
  4743. if (ret)
  4744. pr_err("%s: AFE close failed %d\n", __func__, ret);
  4745. return ret;
  4746. }
  4747. /**
  4748. * afe_req_mmap_handle -
  4749. * Retrieve AFE memory map handle
  4750. *
  4751. * @ac: AFE audio client
  4752. *
  4753. * Returns memory map handle
  4754. */
  4755. uint32_t afe_req_mmap_handle(struct afe_audio_client *ac)
  4756. {
  4757. return ac->mem_map_handle;
  4758. }
  4759. EXPORT_SYMBOL(afe_req_mmap_handle);
  4760. /**
  4761. * q6afe_audio_client_alloc -
  4762. * Assign new AFE audio client
  4763. *
  4764. * @priv: privata data to hold for audio client
  4765. *
  4766. * Returns ac pointer on success or NULL on failure
  4767. */
  4768. struct afe_audio_client *q6afe_audio_client_alloc(void *priv)
  4769. {
  4770. struct afe_audio_client *ac;
  4771. int lcnt = 0;
  4772. ac = kzalloc(sizeof(struct afe_audio_client), GFP_KERNEL);
  4773. if (!ac)
  4774. return NULL;
  4775. ac->priv = priv;
  4776. init_waitqueue_head(&ac->cmd_wait);
  4777. INIT_LIST_HEAD(&ac->port[0].mem_map_handle);
  4778. INIT_LIST_HEAD(&ac->port[1].mem_map_handle);
  4779. pr_debug("%s: mem_map_handle list init'ed\n", __func__);
  4780. mutex_init(&ac->cmd_lock);
  4781. for (lcnt = 0; lcnt <= OUT; lcnt++) {
  4782. mutex_init(&ac->port[lcnt].lock);
  4783. spin_lock_init(&ac->port[lcnt].dsp_lock);
  4784. }
  4785. atomic_set(&ac->cmd_state, 0);
  4786. return ac;
  4787. }
  4788. EXPORT_SYMBOL(q6afe_audio_client_alloc);
  4789. /**
  4790. * q6afe_audio_client_buf_alloc_contiguous -
  4791. * Allocate contiguous shared buffers
  4792. *
  4793. * @dir: RX or TX direction of AFE port
  4794. * @ac: AFE audio client handle
  4795. * @bufsz: size of each shared buffer
  4796. * @bufcnt: number of buffers
  4797. *
  4798. * Returns 0 on success or error on failure
  4799. */
  4800. int q6afe_audio_client_buf_alloc_contiguous(unsigned int dir,
  4801. struct afe_audio_client *ac,
  4802. unsigned int bufsz,
  4803. unsigned int bufcnt)
  4804. {
  4805. int cnt = 0;
  4806. int rc = 0;
  4807. struct afe_audio_buffer *buf;
  4808. size_t len;
  4809. if (!(ac) || ((dir != IN) && (dir != OUT))) {
  4810. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  4811. return -EINVAL;
  4812. }
  4813. pr_debug("%s: bufsz[%d]bufcnt[%d]\n",
  4814. __func__,
  4815. bufsz, bufcnt);
  4816. if (ac->port[dir].buf) {
  4817. pr_debug("%s: buffer already allocated\n", __func__);
  4818. return 0;
  4819. }
  4820. mutex_lock(&ac->cmd_lock);
  4821. buf = kzalloc(((sizeof(struct afe_audio_buffer))*bufcnt),
  4822. GFP_KERNEL);
  4823. if (!buf) {
  4824. pr_err("%s: null buf\n", __func__);
  4825. mutex_unlock(&ac->cmd_lock);
  4826. goto fail;
  4827. }
  4828. ac->port[dir].buf = buf;
  4829. rc = msm_audio_ion_alloc(&buf[0].dma_buf,
  4830. bufsz * bufcnt,
  4831. &buf[0].phys, &len,
  4832. &buf[0].data);
  4833. if (rc) {
  4834. pr_err("%s: audio ION alloc failed, rc = %d\n",
  4835. __func__, rc);
  4836. mutex_unlock(&ac->cmd_lock);
  4837. goto fail;
  4838. }
  4839. buf[0].used = dir ^ 1;
  4840. buf[0].size = bufsz;
  4841. buf[0].actual_size = bufsz;
  4842. cnt = 1;
  4843. while (cnt < bufcnt) {
  4844. if (bufsz > 0) {
  4845. buf[cnt].data = buf[0].data + (cnt * bufsz);
  4846. buf[cnt].phys = buf[0].phys + (cnt * bufsz);
  4847. if (!buf[cnt].data) {
  4848. pr_err("%s: Buf alloc failed\n",
  4849. __func__);
  4850. mutex_unlock(&ac->cmd_lock);
  4851. goto fail;
  4852. }
  4853. buf[cnt].used = dir ^ 1;
  4854. buf[cnt].size = bufsz;
  4855. buf[cnt].actual_size = bufsz;
  4856. pr_debug("%s: data[%pK]phys[%pK][%pK]\n", __func__,
  4857. buf[cnt].data,
  4858. &buf[cnt].phys,
  4859. &buf[cnt].phys);
  4860. }
  4861. cnt++;
  4862. }
  4863. ac->port[dir].max_buf_cnt = cnt;
  4864. mutex_unlock(&ac->cmd_lock);
  4865. return 0;
  4866. fail:
  4867. pr_err("%s: jump fail\n", __func__);
  4868. q6afe_audio_client_buf_free_contiguous(dir, ac);
  4869. return -EINVAL;
  4870. }
  4871. EXPORT_SYMBOL(q6afe_audio_client_buf_alloc_contiguous);
  4872. /**
  4873. * afe_memory_map -
  4874. * command to map shared buffers to AFE
  4875. *
  4876. * @dma_addr_p: DMA physical address
  4877. * @dma_buf_sz: shared DMA buffer size
  4878. * @ac: AFE audio client handle
  4879. *
  4880. * Returns 0 on success or error on failure
  4881. */
  4882. int afe_memory_map(phys_addr_t dma_addr_p, u32 dma_buf_sz,
  4883. struct afe_audio_client *ac)
  4884. {
  4885. int ret = 0;
  4886. mutex_lock(&this_afe.afe_cmd_lock);
  4887. ac->mem_map_handle = 0;
  4888. ret = afe_cmd_memory_map(dma_addr_p, dma_buf_sz);
  4889. if (ret < 0) {
  4890. pr_err("%s: afe_cmd_memory_map failed %d\n",
  4891. __func__, ret);
  4892. mutex_unlock(&this_afe.afe_cmd_lock);
  4893. return ret;
  4894. }
  4895. ac->mem_map_handle = this_afe.mmap_handle;
  4896. mutex_unlock(&this_afe.afe_cmd_lock);
  4897. return ret;
  4898. }
  4899. EXPORT_SYMBOL(afe_memory_map);
  4900. int afe_cmd_memory_map(phys_addr_t dma_addr_p, u32 dma_buf_sz)
  4901. {
  4902. int ret = 0;
  4903. int cmd_size = 0;
  4904. void *payload = NULL;
  4905. void *mmap_region_cmd = NULL;
  4906. struct afe_service_cmd_shared_mem_map_regions *mregion = NULL;
  4907. struct afe_service_shared_map_region_payload *mregion_pl = NULL;
  4908. int index = 0;
  4909. pr_debug("%s:\n", __func__);
  4910. if (this_afe.apr == NULL) {
  4911. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4912. 0xFFFFFFFF, &this_afe);
  4913. pr_debug("%s: Register AFE\n", __func__);
  4914. if (this_afe.apr == NULL) {
  4915. pr_err("%s: Unable to register AFE\n", __func__);
  4916. ret = -ENODEV;
  4917. return ret;
  4918. }
  4919. rtac_set_afe_handle(this_afe.apr);
  4920. }
  4921. if (dma_buf_sz % SZ_4K != 0) {
  4922. /*
  4923. * The memory allocated by msm_audio_ion_alloc is always 4kB
  4924. * aligned, ADSP expects the size to be 4kB aligned as well
  4925. * so re-adjusts the buffer size before passing to ADSP.
  4926. */
  4927. dma_buf_sz = PAGE_ALIGN(dma_buf_sz);
  4928. }
  4929. cmd_size = sizeof(struct afe_service_cmd_shared_mem_map_regions)
  4930. + sizeof(struct afe_service_shared_map_region_payload);
  4931. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  4932. if (!mmap_region_cmd)
  4933. return -ENOMEM;
  4934. mregion = (struct afe_service_cmd_shared_mem_map_regions *)
  4935. mmap_region_cmd;
  4936. mregion->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4937. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4938. mregion->hdr.pkt_size = cmd_size;
  4939. mregion->hdr.src_port = 0;
  4940. mregion->hdr.dest_port = 0;
  4941. mregion->hdr.token = 0;
  4942. mregion->hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS;
  4943. mregion->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  4944. mregion->num_regions = 1;
  4945. mregion->property_flag = 0x00;
  4946. /* Todo */
  4947. index = mregion->hdr.token = IDX_RSVD_2;
  4948. payload = ((u8 *) mmap_region_cmd +
  4949. sizeof(struct afe_service_cmd_shared_mem_map_regions));
  4950. mregion_pl = (struct afe_service_shared_map_region_payload *)payload;
  4951. mregion_pl->shm_addr_lsw = lower_32_bits(dma_addr_p);
  4952. mregion_pl->shm_addr_msw = msm_audio_populate_upper_32_bits(dma_addr_p);
  4953. mregion_pl->mem_size_bytes = dma_buf_sz;
  4954. pr_debug("%s: dma_addr_p 0x%pK , size %d\n", __func__,
  4955. &dma_addr_p, dma_buf_sz);
  4956. atomic_set(&this_afe.state, 1);
  4957. atomic_set(&this_afe.status, 0);
  4958. this_afe.mmap_handle = 0;
  4959. ret = apr_send_pkt(this_afe.apr, (uint32_t *) mmap_region_cmd);
  4960. if (ret < 0) {
  4961. pr_err("%s: AFE memory map cmd failed %d\n",
  4962. __func__, ret);
  4963. ret = -EINVAL;
  4964. goto fail_cmd;
  4965. }
  4966. ret = wait_event_timeout(this_afe.wait[index],
  4967. (atomic_read(&this_afe.state) == 0),
  4968. msecs_to_jiffies(TIMEOUT_MS));
  4969. if (!ret) {
  4970. pr_err("%s: wait_event timeout\n", __func__);
  4971. ret = -EINVAL;
  4972. goto fail_cmd;
  4973. }
  4974. if (atomic_read(&this_afe.status) > 0) {
  4975. pr_err("%s: config cmd failed [%s]\n",
  4976. __func__, adsp_err_get_err_str(
  4977. atomic_read(&this_afe.status)));
  4978. ret = adsp_err_get_lnx_err_code(
  4979. atomic_read(&this_afe.status));
  4980. goto fail_cmd;
  4981. }
  4982. kfree(mmap_region_cmd);
  4983. return 0;
  4984. fail_cmd:
  4985. kfree(mmap_region_cmd);
  4986. pr_err("%s: fail_cmd\n", __func__);
  4987. return ret;
  4988. }
  4989. int afe_cmd_memory_map_nowait(int port_id, phys_addr_t dma_addr_p,
  4990. u32 dma_buf_sz)
  4991. {
  4992. int ret = 0;
  4993. int cmd_size = 0;
  4994. void *payload = NULL;
  4995. void *mmap_region_cmd = NULL;
  4996. struct afe_service_cmd_shared_mem_map_regions *mregion = NULL;
  4997. struct afe_service_shared_map_region_payload *mregion_pl = NULL;
  4998. int index = 0;
  4999. pr_debug("%s:\n", __func__);
  5000. if (this_afe.apr == NULL) {
  5001. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  5002. 0xFFFFFFFF, &this_afe);
  5003. pr_debug("%s: Register AFE\n", __func__);
  5004. if (this_afe.apr == NULL) {
  5005. pr_err("%s: Unable to register AFE\n", __func__);
  5006. ret = -ENODEV;
  5007. return ret;
  5008. }
  5009. rtac_set_afe_handle(this_afe.apr);
  5010. }
  5011. index = q6audio_get_port_index(port_id);
  5012. if (index < 0 || index >= AFE_MAX_PORTS) {
  5013. pr_err("%s: AFE port index[%d] invalid!\n",
  5014. __func__, index);
  5015. return -EINVAL;
  5016. }
  5017. ret = q6audio_validate_port(port_id);
  5018. if (ret < 0) {
  5019. pr_err("%s: Invalid port 0x%x ret %d",
  5020. __func__, port_id, ret);
  5021. return -EINVAL;
  5022. }
  5023. cmd_size = sizeof(struct afe_service_cmd_shared_mem_map_regions)
  5024. + sizeof(struct afe_service_shared_map_region_payload);
  5025. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  5026. if (!mmap_region_cmd)
  5027. return -ENOMEM;
  5028. mregion = (struct afe_service_cmd_shared_mem_map_regions *)
  5029. mmap_region_cmd;
  5030. mregion->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5031. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5032. mregion->hdr.pkt_size = sizeof(mregion);
  5033. mregion->hdr.src_port = 0;
  5034. mregion->hdr.dest_port = 0;
  5035. mregion->hdr.token = 0;
  5036. mregion->hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS;
  5037. mregion->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  5038. mregion->num_regions = 1;
  5039. mregion->property_flag = 0x00;
  5040. payload = ((u8 *) mmap_region_cmd +
  5041. sizeof(struct afe_service_cmd_shared_mem_map_regions));
  5042. mregion_pl = (struct afe_service_shared_map_region_payload *)payload;
  5043. mregion_pl->shm_addr_lsw = lower_32_bits(dma_addr_p);
  5044. mregion_pl->shm_addr_msw = msm_audio_populate_upper_32_bits(dma_addr_p);
  5045. mregion_pl->mem_size_bytes = dma_buf_sz;
  5046. ret = afe_apr_send_pkt(mmap_region_cmd, NULL);
  5047. if (ret)
  5048. pr_err("%s: AFE memory map cmd failed %d\n",
  5049. __func__, ret);
  5050. kfree(mmap_region_cmd);
  5051. return ret;
  5052. }
  5053. /**
  5054. * q6afe_audio_client_buf_free_contiguous -
  5055. * frees the shared contiguous memory
  5056. *
  5057. * @dir: RX or TX direction of port
  5058. * @ac: AFE audio client handle
  5059. *
  5060. */
  5061. int q6afe_audio_client_buf_free_contiguous(unsigned int dir,
  5062. struct afe_audio_client *ac)
  5063. {
  5064. struct afe_audio_port_data *port;
  5065. int cnt = 0;
  5066. mutex_lock(&ac->cmd_lock);
  5067. port = &ac->port[dir];
  5068. if (!port->buf) {
  5069. pr_err("%s: buf is null\n", __func__);
  5070. mutex_unlock(&ac->cmd_lock);
  5071. return 0;
  5072. }
  5073. cnt = port->max_buf_cnt - 1;
  5074. if (port->buf[0].data) {
  5075. pr_debug("%s: data[%pK], phys[%pK], dma_buf[%pK]\n",
  5076. __func__,
  5077. port->buf[0].data,
  5078. &port->buf[0].phys,
  5079. port->buf[0].dma_buf);
  5080. msm_audio_ion_free(port->buf[0].dma_buf);
  5081. port->buf[0].dma_buf = NULL;
  5082. }
  5083. while (cnt >= 0) {
  5084. port->buf[cnt].data = NULL;
  5085. port->buf[cnt].phys = 0;
  5086. cnt--;
  5087. }
  5088. port->max_buf_cnt = 0;
  5089. kfree(port->buf);
  5090. port->buf = NULL;
  5091. mutex_unlock(&ac->cmd_lock);
  5092. return 0;
  5093. }
  5094. EXPORT_SYMBOL(q6afe_audio_client_buf_free_contiguous);
  5095. /**
  5096. * q6afe_audio_client_free -
  5097. * frees the audio client from AFE
  5098. *
  5099. * @ac: AFE audio client handle
  5100. *
  5101. */
  5102. void q6afe_audio_client_free(struct afe_audio_client *ac)
  5103. {
  5104. int loopcnt;
  5105. struct afe_audio_port_data *port;
  5106. if (!ac) {
  5107. pr_err("%s: audio client is NULL\n", __func__);
  5108. return;
  5109. }
  5110. for (loopcnt = 0; loopcnt <= OUT; loopcnt++) {
  5111. port = &ac->port[loopcnt];
  5112. if (!port->buf)
  5113. continue;
  5114. pr_debug("%s: loopcnt = %d\n", __func__, loopcnt);
  5115. q6afe_audio_client_buf_free_contiguous(loopcnt, ac);
  5116. }
  5117. kfree(ac);
  5118. }
  5119. EXPORT_SYMBOL(q6afe_audio_client_free);
  5120. /**
  5121. * afe_cmd_memory_unmap -
  5122. * command to unmap memory for AFE shared buffer
  5123. *
  5124. * @mem_map_handle: memory map handle to be unmapped
  5125. *
  5126. * Returns 0 on success or error on failure
  5127. */
  5128. int afe_cmd_memory_unmap(u32 mem_map_handle)
  5129. {
  5130. int ret = 0;
  5131. struct afe_service_cmd_shared_mem_unmap_regions mregion;
  5132. int index = 0;
  5133. pr_debug("%s: handle 0x%x\n", __func__, mem_map_handle);
  5134. if (this_afe.apr == NULL) {
  5135. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  5136. 0xFFFFFFFF, &this_afe);
  5137. pr_debug("%s: Register AFE\n", __func__);
  5138. if (this_afe.apr == NULL) {
  5139. pr_err("%s: Unable to register AFE\n", __func__);
  5140. ret = -ENODEV;
  5141. return ret;
  5142. }
  5143. rtac_set_afe_handle(this_afe.apr);
  5144. }
  5145. mregion.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5146. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5147. mregion.hdr.pkt_size = sizeof(mregion);
  5148. mregion.hdr.src_port = 0;
  5149. mregion.hdr.dest_port = 0;
  5150. mregion.hdr.token = 0;
  5151. mregion.hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS;
  5152. mregion.mem_map_handle = mem_map_handle;
  5153. /* Todo */
  5154. index = mregion.hdr.token = IDX_RSVD_2;
  5155. atomic_set(&this_afe.status, 0);
  5156. ret = afe_apr_send_pkt(&mregion, &this_afe.wait[index]);
  5157. if (ret)
  5158. pr_err("%s: AFE memory unmap cmd failed %d\n",
  5159. __func__, ret);
  5160. return ret;
  5161. }
  5162. EXPORT_SYMBOL(afe_cmd_memory_unmap);
  5163. int afe_cmd_memory_unmap_nowait(u32 mem_map_handle)
  5164. {
  5165. int ret = 0;
  5166. struct afe_service_cmd_shared_mem_unmap_regions mregion;
  5167. pr_debug("%s: handle 0x%x\n", __func__, mem_map_handle);
  5168. if (this_afe.apr == NULL) {
  5169. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  5170. 0xFFFFFFFF, &this_afe);
  5171. pr_debug("%s: Register AFE\n", __func__);
  5172. if (this_afe.apr == NULL) {
  5173. pr_err("%s: Unable to register AFE\n", __func__);
  5174. ret = -ENODEV;
  5175. return ret;
  5176. }
  5177. rtac_set_afe_handle(this_afe.apr);
  5178. }
  5179. mregion.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5180. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5181. mregion.hdr.pkt_size = sizeof(mregion);
  5182. mregion.hdr.src_port = 0;
  5183. mregion.hdr.dest_port = 0;
  5184. mregion.hdr.token = 0;
  5185. mregion.hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS;
  5186. mregion.mem_map_handle = mem_map_handle;
  5187. ret = afe_apr_send_pkt(&mregion, NULL);
  5188. if (ret)
  5189. pr_err("%s: AFE memory unmap cmd failed %d\n",
  5190. __func__, ret);
  5191. return ret;
  5192. }
  5193. /**
  5194. * afe_register_get_events -
  5195. * register for events from proxy port
  5196. *
  5197. * @port_id: Port ID to register events
  5198. * @cb: callback function to invoke for events from proxy port
  5199. * @private_data: private data to sent back in callback fn
  5200. *
  5201. * Returns 0 on success or error on failure
  5202. */
  5203. int afe_register_get_events(u16 port_id,
  5204. void (*cb)(uint32_t opcode,
  5205. uint32_t token, uint32_t *payload, void *priv),
  5206. void *private_data)
  5207. {
  5208. int ret = 0;
  5209. struct afe_service_cmd_register_rt_port_driver rtproxy;
  5210. pr_debug("%s: port_id: 0x%x\n", __func__, port_id);
  5211. if (this_afe.apr == NULL) {
  5212. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  5213. 0xFFFFFFFF, &this_afe);
  5214. pr_debug("%s: Register AFE\n", __func__);
  5215. if (this_afe.apr == NULL) {
  5216. pr_err("%s: Unable to register AFE\n", __func__);
  5217. ret = -ENODEV;
  5218. return ret;
  5219. }
  5220. rtac_set_afe_handle(this_afe.apr);
  5221. }
  5222. if ((port_id == RT_PROXY_DAI_002_RX) ||
  5223. (port_id == RT_PROXY_DAI_001_TX)) {
  5224. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  5225. } else {
  5226. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  5227. return -EINVAL;
  5228. }
  5229. if (port_id == RT_PROXY_PORT_001_TX) {
  5230. this_afe.tx_cb = cb;
  5231. this_afe.tx_private_data = private_data;
  5232. } else if (port_id == RT_PROXY_PORT_001_RX) {
  5233. this_afe.rx_cb = cb;
  5234. this_afe.rx_private_data = private_data;
  5235. }
  5236. rtproxy.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5237. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5238. rtproxy.hdr.pkt_size = sizeof(rtproxy);
  5239. rtproxy.hdr.src_port = 1;
  5240. rtproxy.hdr.dest_port = 1;
  5241. rtproxy.hdr.opcode = AFE_SERVICE_CMD_REGISTER_RT_PORT_DRIVER;
  5242. rtproxy.port_id = port_id;
  5243. rtproxy.reserved = 0;
  5244. ret = afe_apr_send_pkt(&rtproxy, NULL);
  5245. if (ret)
  5246. pr_err("%s: AFE reg. rtproxy_event failed %d\n",
  5247. __func__, ret);
  5248. return ret;
  5249. }
  5250. EXPORT_SYMBOL(afe_register_get_events);
  5251. /**
  5252. * afe_unregister_get_events -
  5253. * unregister for events from proxy port
  5254. *
  5255. * @port_id: Port ID to unregister events
  5256. *
  5257. * Returns 0 on success or error on failure
  5258. */
  5259. int afe_unregister_get_events(u16 port_id)
  5260. {
  5261. int ret = 0;
  5262. struct afe_service_cmd_unregister_rt_port_driver rtproxy;
  5263. int index = 0;
  5264. pr_debug("%s:\n", __func__);
  5265. if (this_afe.apr == NULL) {
  5266. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  5267. 0xFFFFFFFF, &this_afe);
  5268. pr_debug("%s: Register AFE\n", __func__);
  5269. if (this_afe.apr == NULL) {
  5270. pr_err("%s: Unable to register AFE\n", __func__);
  5271. ret = -ENODEV;
  5272. return ret;
  5273. }
  5274. rtac_set_afe_handle(this_afe.apr);
  5275. }
  5276. if ((port_id == RT_PROXY_DAI_002_RX) ||
  5277. (port_id == RT_PROXY_DAI_001_TX)) {
  5278. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  5279. } else {
  5280. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  5281. return -EINVAL;
  5282. }
  5283. index = q6audio_get_port_index(port_id);
  5284. if (index < 0 || index >= AFE_MAX_PORTS) {
  5285. pr_err("%s: AFE port index[%d] invalid!\n",
  5286. __func__, index);
  5287. return -EINVAL;
  5288. }
  5289. ret = q6audio_validate_port(port_id);
  5290. if (ret < 0) {
  5291. pr_err("%s: Invalid port 0x%x ret %d", __func__, port_id, ret);
  5292. return -EINVAL;
  5293. }
  5294. rtproxy.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5295. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5296. rtproxy.hdr.pkt_size = sizeof(rtproxy);
  5297. rtproxy.hdr.src_port = 0;
  5298. rtproxy.hdr.dest_port = 0;
  5299. rtproxy.hdr.token = 0;
  5300. rtproxy.hdr.opcode = AFE_SERVICE_CMD_UNREGISTER_RT_PORT_DRIVER;
  5301. rtproxy.port_id = port_id;
  5302. rtproxy.reserved = 0;
  5303. rtproxy.hdr.token = index;
  5304. if (port_id == RT_PROXY_PORT_001_TX) {
  5305. this_afe.tx_cb = NULL;
  5306. this_afe.tx_private_data = NULL;
  5307. } else if (port_id == RT_PROXY_PORT_001_RX) {
  5308. this_afe.rx_cb = NULL;
  5309. this_afe.rx_private_data = NULL;
  5310. }
  5311. ret = afe_apr_send_pkt(&rtproxy, &this_afe.wait[index]);
  5312. if (ret)
  5313. pr_err("%s: AFE enable Unreg. rtproxy_event failed %d\n",
  5314. __func__, ret);
  5315. return ret;
  5316. }
  5317. EXPORT_SYMBOL(afe_unregister_get_events);
  5318. /**
  5319. * afe_rt_proxy_port_write -
  5320. * command for AFE RT proxy port write
  5321. *
  5322. * @buf_addr_p: Physical buffer address with
  5323. * playback data to proxy port
  5324. * @mem_map_handle: memory map handle of write buffer
  5325. * @bytes: number of bytes to write
  5326. *
  5327. * Returns 0 on success or error on failure
  5328. */
  5329. int afe_rt_proxy_port_write(phys_addr_t buf_addr_p,
  5330. u32 mem_map_handle, int bytes)
  5331. {
  5332. int ret = 0;
  5333. struct afe_port_data_cmd_rt_proxy_port_write_v2 afecmd_wr;
  5334. if (this_afe.apr == NULL) {
  5335. pr_err("%s: register to AFE is not done\n", __func__);
  5336. ret = -ENODEV;
  5337. return ret;
  5338. }
  5339. pr_debug("%s: buf_addr_p = 0x%pK bytes = %d\n", __func__,
  5340. &buf_addr_p, bytes);
  5341. afecmd_wr.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5342. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5343. afecmd_wr.hdr.pkt_size = sizeof(afecmd_wr);
  5344. afecmd_wr.hdr.src_port = 0;
  5345. afecmd_wr.hdr.dest_port = 0;
  5346. afecmd_wr.hdr.token = 0;
  5347. afecmd_wr.hdr.opcode = AFE_PORT_DATA_CMD_RT_PROXY_PORT_WRITE_V2;
  5348. afecmd_wr.port_id = RT_PROXY_PORT_001_TX;
  5349. afecmd_wr.buffer_address_lsw = lower_32_bits(buf_addr_p);
  5350. afecmd_wr.buffer_address_msw =
  5351. msm_audio_populate_upper_32_bits(buf_addr_p);
  5352. afecmd_wr.mem_map_handle = mem_map_handle;
  5353. afecmd_wr.available_bytes = bytes;
  5354. afecmd_wr.reserved = 0;
  5355. ret = afe_apr_send_pkt(&afecmd_wr, NULL);
  5356. if (ret)
  5357. pr_err("%s: AFE rtproxy write to port 0x%x failed %d\n",
  5358. __func__, afecmd_wr.port_id, ret);
  5359. return ret;
  5360. }
  5361. EXPORT_SYMBOL(afe_rt_proxy_port_write);
  5362. /**
  5363. * afe_rt_proxy_port_read -
  5364. * command for AFE RT proxy port read
  5365. *
  5366. * @buf_addr_p: Physical buffer address to fill read data
  5367. * @mem_map_handle: memory map handle for buffer read
  5368. * @bytes: number of bytes to read
  5369. *
  5370. * Returns 0 on success or error on failure
  5371. */
  5372. int afe_rt_proxy_port_read(phys_addr_t buf_addr_p,
  5373. u32 mem_map_handle, int bytes)
  5374. {
  5375. int ret = 0;
  5376. struct afe_port_data_cmd_rt_proxy_port_read_v2 afecmd_rd;
  5377. if (this_afe.apr == NULL) {
  5378. pr_err("%s: register to AFE is not done\n", __func__);
  5379. ret = -ENODEV;
  5380. return ret;
  5381. }
  5382. pr_debug("%s: buf_addr_p = 0x%pK bytes = %d\n", __func__,
  5383. &buf_addr_p, bytes);
  5384. afecmd_rd.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5385. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5386. afecmd_rd.hdr.pkt_size = sizeof(afecmd_rd);
  5387. afecmd_rd.hdr.src_port = 0;
  5388. afecmd_rd.hdr.dest_port = 0;
  5389. afecmd_rd.hdr.token = 0;
  5390. afecmd_rd.hdr.opcode = AFE_PORT_DATA_CMD_RT_PROXY_PORT_READ_V2;
  5391. afecmd_rd.port_id = RT_PROXY_PORT_001_RX;
  5392. afecmd_rd.buffer_address_lsw = lower_32_bits(buf_addr_p);
  5393. afecmd_rd.buffer_address_msw =
  5394. msm_audio_populate_upper_32_bits(buf_addr_p);
  5395. afecmd_rd.available_bytes = bytes;
  5396. afecmd_rd.mem_map_handle = mem_map_handle;
  5397. ret = afe_apr_send_pkt(&afecmd_rd, NULL);
  5398. if (ret)
  5399. pr_err("%s: AFE rtproxy read cmd to port 0x%x failed %d\n",
  5400. __func__, afecmd_rd.port_id, ret);
  5401. return ret;
  5402. }
  5403. EXPORT_SYMBOL(afe_rt_proxy_port_read);
  5404. #ifdef CONFIG_DEBUG_FS
  5405. static struct dentry *debugfs_afelb;
  5406. static struct dentry *debugfs_afelb_gain;
  5407. static int afe_debug_open(struct inode *inode, struct file *file)
  5408. {
  5409. file->private_data = inode->i_private;
  5410. pr_info("%s: debug intf %s\n", __func__, (char *) file->private_data);
  5411. return 0;
  5412. }
  5413. static int afe_get_parameters(char *buf, long int *param1, int num_of_par)
  5414. {
  5415. char *token;
  5416. int base, cnt;
  5417. token = strsep(&buf, " ");
  5418. for (cnt = 0; cnt < num_of_par; cnt++) {
  5419. if (token != NULL) {
  5420. if ((token[1] == 'x') || (token[1] == 'X'))
  5421. base = 16;
  5422. else
  5423. base = 10;
  5424. if (kstrtoul(token, base, &param1[cnt]) != 0) {
  5425. pr_err("%s: kstrtoul failed\n",
  5426. __func__);
  5427. return -EINVAL;
  5428. }
  5429. token = strsep(&buf, " ");
  5430. } else {
  5431. pr_err("%s: token NULL\n", __func__);
  5432. return -EINVAL;
  5433. }
  5434. }
  5435. return 0;
  5436. }
  5437. #define AFE_LOOPBACK_ON (1)
  5438. #define AFE_LOOPBACK_OFF (0)
  5439. static ssize_t afe_debug_write(struct file *filp,
  5440. const char __user *ubuf, size_t cnt, loff_t *ppos)
  5441. {
  5442. char *lb_str = filp->private_data;
  5443. char lbuf[32];
  5444. int rc;
  5445. unsigned long param[5];
  5446. if (cnt > sizeof(lbuf) - 1) {
  5447. pr_err("%s: cnt %zd size %zd\n", __func__, cnt, sizeof(lbuf)-1);
  5448. return -EINVAL;
  5449. }
  5450. rc = copy_from_user(lbuf, ubuf, cnt);
  5451. if (rc) {
  5452. pr_err("%s: copy from user failed %d\n", __func__, rc);
  5453. return -EFAULT;
  5454. }
  5455. lbuf[cnt] = '\0';
  5456. if (!strcmp(lb_str, "afe_loopback")) {
  5457. rc = afe_get_parameters(lbuf, param, 3);
  5458. if (!rc) {
  5459. pr_info("%s: %lu %lu %lu\n", lb_str, param[0], param[1],
  5460. param[2]);
  5461. if ((param[0] != AFE_LOOPBACK_ON) && (param[0] !=
  5462. AFE_LOOPBACK_OFF)) {
  5463. pr_err("%s: Error, parameter 0 incorrect\n",
  5464. __func__);
  5465. rc = -EINVAL;
  5466. goto afe_error;
  5467. }
  5468. if ((q6audio_validate_port(param[1]) < 0) ||
  5469. (q6audio_validate_port(param[2])) < 0) {
  5470. pr_err("%s: Error, invalid afe port\n",
  5471. __func__);
  5472. }
  5473. if (this_afe.apr == NULL) {
  5474. pr_err("%s: Error, AFE not opened\n", __func__);
  5475. rc = -EINVAL;
  5476. } else {
  5477. rc = afe_loopback(param[0], param[1], param[2]);
  5478. }
  5479. } else {
  5480. pr_err("%s: Error, invalid parameters\n", __func__);
  5481. rc = -EINVAL;
  5482. }
  5483. } else if (!strcmp(lb_str, "afe_loopback_gain")) {
  5484. rc = afe_get_parameters(lbuf, param, 2);
  5485. if (!rc) {
  5486. pr_info("%s: %s %lu %lu\n",
  5487. __func__, lb_str, param[0], param[1]);
  5488. rc = q6audio_validate_port(param[0]);
  5489. if (rc < 0) {
  5490. pr_err("%s: Error, invalid afe port %d %lu\n",
  5491. __func__, rc, param[0]);
  5492. rc = -EINVAL;
  5493. goto afe_error;
  5494. }
  5495. if (param[1] > 100) {
  5496. pr_err("%s: Error, volume should be 0 to 100 percentage param = %lu\n",
  5497. __func__, param[1]);
  5498. rc = -EINVAL;
  5499. goto afe_error;
  5500. }
  5501. param[1] = (Q6AFE_MAX_VOLUME * param[1]) / 100;
  5502. if (this_afe.apr == NULL) {
  5503. pr_err("%s: Error, AFE not opened\n", __func__);
  5504. rc = -EINVAL;
  5505. } else {
  5506. rc = afe_loopback_gain(param[0], param[1]);
  5507. }
  5508. } else {
  5509. pr_err("%s: Error, invalid parameters\n", __func__);
  5510. rc = -EINVAL;
  5511. }
  5512. }
  5513. afe_error:
  5514. if (rc == 0)
  5515. rc = cnt;
  5516. else
  5517. pr_err("%s: rc = %d\n", __func__, rc);
  5518. return rc;
  5519. }
  5520. static const struct file_operations afe_debug_fops = {
  5521. .open = afe_debug_open,
  5522. .write = afe_debug_write
  5523. };
  5524. static void config_debug_fs_init(void)
  5525. {
  5526. debugfs_afelb = debugfs_create_file("afe_loopback",
  5527. 0664, NULL, (void *) "afe_loopback",
  5528. &afe_debug_fops);
  5529. debugfs_afelb_gain = debugfs_create_file("afe_loopback_gain",
  5530. 0664, NULL, (void *) "afe_loopback_gain",
  5531. &afe_debug_fops);
  5532. }
  5533. static void config_debug_fs_exit(void)
  5534. {
  5535. debugfs_remove(debugfs_afelb);
  5536. debugfs_remove(debugfs_afelb_gain);
  5537. }
  5538. #else
  5539. static void config_debug_fs_init(void)
  5540. {
  5541. }
  5542. static void config_debug_fs_exit(void)
  5543. {
  5544. }
  5545. #endif
  5546. /**
  5547. * afe_set_dtmf_gen_rx_portid -
  5548. * Set port_id for DTMF tone generation
  5549. *
  5550. * @port_id: AFE port id
  5551. * @set: set or reset port id value for dtmf gen
  5552. *
  5553. */
  5554. void afe_set_dtmf_gen_rx_portid(u16 port_id, int set)
  5555. {
  5556. if (set)
  5557. this_afe.dtmf_gen_rx_portid = port_id;
  5558. else if (this_afe.dtmf_gen_rx_portid == port_id)
  5559. this_afe.dtmf_gen_rx_portid = -1;
  5560. }
  5561. EXPORT_SYMBOL(afe_set_dtmf_gen_rx_portid);
  5562. /**
  5563. * afe_dtmf_generate_rx - command to generate AFE DTMF RX
  5564. *
  5565. * @duration_in_ms: Duration in ms for dtmf tone
  5566. * @high_freq: Higher frequency for dtmf
  5567. * @low_freq: lower frequency for dtmf
  5568. * @gain: Gain value for DTMF tone
  5569. *
  5570. * Returns 0 on success, appropriate error code otherwise
  5571. */
  5572. int afe_dtmf_generate_rx(int64_t duration_in_ms,
  5573. uint16_t high_freq,
  5574. uint16_t low_freq, uint16_t gain)
  5575. {
  5576. int ret = 0;
  5577. int index = 0;
  5578. struct afe_dtmf_generation_command cmd_dtmf;
  5579. pr_debug("%s: DTMF AFE Gen\n", __func__);
  5580. if (afe_validate_port(this_afe.dtmf_gen_rx_portid) < 0) {
  5581. pr_err("%s: Failed : Invalid Port id = 0x%x\n",
  5582. __func__, this_afe.dtmf_gen_rx_portid);
  5583. ret = -EINVAL;
  5584. goto fail_cmd;
  5585. }
  5586. if (this_afe.apr == NULL) {
  5587. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  5588. 0xFFFFFFFF, &this_afe);
  5589. pr_debug("%s: Register AFE\n", __func__);
  5590. if (this_afe.apr == NULL) {
  5591. pr_err("%s: Unable to register AFE\n", __func__);
  5592. ret = -ENODEV;
  5593. return ret;
  5594. }
  5595. rtac_set_afe_handle(this_afe.apr);
  5596. }
  5597. pr_debug("%s: dur=%lld: hfreq=%d lfreq=%d gain=%d portid=0x%x\n",
  5598. __func__,
  5599. duration_in_ms, high_freq, low_freq, gain,
  5600. this_afe.dtmf_gen_rx_portid);
  5601. cmd_dtmf.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5602. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5603. cmd_dtmf.hdr.pkt_size = sizeof(cmd_dtmf);
  5604. cmd_dtmf.hdr.src_port = 0;
  5605. cmd_dtmf.hdr.dest_port = 0;
  5606. cmd_dtmf.hdr.token = 0;
  5607. cmd_dtmf.hdr.opcode = AFE_PORTS_CMD_DTMF_CTL;
  5608. cmd_dtmf.duration_in_ms = duration_in_ms;
  5609. cmd_dtmf.high_freq = high_freq;
  5610. cmd_dtmf.low_freq = low_freq;
  5611. cmd_dtmf.gain = gain;
  5612. cmd_dtmf.num_ports = 1;
  5613. cmd_dtmf.port_ids = q6audio_get_port_id(this_afe.dtmf_gen_rx_portid);
  5614. atomic_set(&this_afe.state, 1);
  5615. atomic_set(&this_afe.status, 0);
  5616. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &cmd_dtmf);
  5617. if (ret < 0) {
  5618. pr_err("%s: AFE DTMF failed for num_ports:%d ids:0x%x\n",
  5619. __func__, cmd_dtmf.num_ports, cmd_dtmf.port_ids);
  5620. ret = -EINVAL;
  5621. goto fail_cmd;
  5622. }
  5623. index = q6audio_get_port_index(this_afe.dtmf_gen_rx_portid);
  5624. if (index < 0 || index >= AFE_MAX_PORTS) {
  5625. pr_err("%s: AFE port index[%d] invalid!\n",
  5626. __func__, index);
  5627. ret = -EINVAL;
  5628. goto fail_cmd;
  5629. }
  5630. ret = wait_event_timeout(this_afe.wait[index],
  5631. (atomic_read(&this_afe.state) == 0),
  5632. msecs_to_jiffies(TIMEOUT_MS));
  5633. if (!ret) {
  5634. pr_err("%s: wait_event timeout\n", __func__);
  5635. ret = -EINVAL;
  5636. goto fail_cmd;
  5637. }
  5638. if (atomic_read(&this_afe.status) > 0) {
  5639. pr_err("%s: config cmd failed [%s]\n",
  5640. __func__, adsp_err_get_err_str(
  5641. atomic_read(&this_afe.status)));
  5642. ret = adsp_err_get_lnx_err_code(
  5643. atomic_read(&this_afe.status));
  5644. goto fail_cmd;
  5645. }
  5646. return 0;
  5647. fail_cmd:
  5648. pr_err("%s: failed %d\n", __func__, ret);
  5649. return ret;
  5650. }
  5651. EXPORT_SYMBOL(afe_dtmf_generate_rx);
  5652. static int afe_sidetone_iir(u16 tx_port_id)
  5653. {
  5654. int ret;
  5655. uint16_t size = 0;
  5656. int cal_index = AFE_SIDETONE_IIR_CAL;
  5657. int iir_pregain = 0;
  5658. int iir_num_biquad_stages = 0;
  5659. int iir_enable;
  5660. struct cal_block_data *cal_block;
  5661. int mid;
  5662. struct afe_mod_enable_param enable;
  5663. struct afe_sidetone_iir_filter_config_params filter_data;
  5664. struct param_hdr_v3 param_hdr;
  5665. u8 *packed_param_data = NULL;
  5666. u32 packed_param_size = 0;
  5667. u32 single_param_size = 0;
  5668. struct audio_cal_info_sidetone_iir *st_iir_cal_info = NULL;
  5669. memset(&enable, 0, sizeof(enable));
  5670. memset(&filter_data, 0, sizeof(filter_data));
  5671. memset(&param_hdr, 0, sizeof(param_hdr));
  5672. if (this_afe.cal_data[cal_index] == NULL) {
  5673. pr_err("%s: cal data is NULL\n", __func__);
  5674. ret = -EINVAL;
  5675. goto done;
  5676. }
  5677. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  5678. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  5679. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  5680. pr_err("%s: cal_block not found\n ", __func__);
  5681. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  5682. ret = -EINVAL;
  5683. goto done;
  5684. }
  5685. /* Cache data from cal block while inside lock to reduce locked time */
  5686. st_iir_cal_info =
  5687. (struct audio_cal_info_sidetone_iir *) cal_block->cal_info;
  5688. iir_pregain = st_iir_cal_info->pregain;
  5689. iir_enable = st_iir_cal_info->iir_enable;
  5690. iir_num_biquad_stages = st_iir_cal_info->num_biquad_stages;
  5691. mid = st_iir_cal_info->mid;
  5692. /*
  5693. * calculate the actual size of payload based on no of stages
  5694. * enabled in calibration
  5695. */
  5696. size = (MAX_SIDETONE_IIR_DATA_SIZE / MAX_NO_IIR_FILTER_STAGE) *
  5697. iir_num_biquad_stages;
  5698. /*
  5699. * For an odd number of stages, 2 bytes of padding are
  5700. * required at the end of the payload.
  5701. */
  5702. if (iir_num_biquad_stages % 2) {
  5703. pr_debug("%s: adding 2 to size:%d\n", __func__, size);
  5704. size = size + 2;
  5705. }
  5706. memcpy(&filter_data.iir_config, &st_iir_cal_info->iir_config, size);
  5707. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  5708. packed_param_size =
  5709. sizeof(param_hdr) * 2 + sizeof(enable) + sizeof(filter_data);
  5710. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  5711. if (!packed_param_data)
  5712. return -ENOMEM;
  5713. packed_param_size = 0;
  5714. /*
  5715. * Set IIR enable params
  5716. */
  5717. param_hdr.module_id = mid;
  5718. param_hdr.param_id = INSTANCE_ID_0;
  5719. param_hdr.param_id = AFE_PARAM_ID_ENABLE;
  5720. param_hdr.param_size = sizeof(enable);
  5721. enable.enable = iir_enable;
  5722. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  5723. (u8 *) &enable, &single_param_size);
  5724. if (ret) {
  5725. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  5726. ret);
  5727. goto done;
  5728. }
  5729. packed_param_size += single_param_size;
  5730. /*
  5731. * Set IIR filter config params
  5732. */
  5733. param_hdr.module_id = mid;
  5734. param_hdr.instance_id = INSTANCE_ID_0;
  5735. param_hdr.param_id = AFE_PARAM_ID_SIDETONE_IIR_FILTER_CONFIG;
  5736. param_hdr.param_size = sizeof(filter_data.num_biquad_stages) +
  5737. sizeof(filter_data.pregain) + size;
  5738. filter_data.num_biquad_stages = iir_num_biquad_stages;
  5739. filter_data.pregain = iir_pregain;
  5740. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  5741. &param_hdr, (u8 *) &filter_data,
  5742. &single_param_size);
  5743. if (ret) {
  5744. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  5745. ret);
  5746. goto done;
  5747. }
  5748. packed_param_size += single_param_size;
  5749. pr_debug("%s: tx(0x%x)mid(0x%x)iir_en(%d)stg(%d)gain(0x%x)size(%d)\n",
  5750. __func__, tx_port_id, mid, enable.enable,
  5751. filter_data.num_biquad_stages, filter_data.pregain,
  5752. param_hdr.param_size);
  5753. ret = q6afe_set_params(tx_port_id, q6audio_get_port_index(tx_port_id),
  5754. NULL, packed_param_data, packed_param_size);
  5755. if (ret)
  5756. pr_err("%s: AFE sidetone failed for tx_port(0x%x)\n",
  5757. __func__, tx_port_id);
  5758. done:
  5759. kfree(packed_param_data);
  5760. return ret;
  5761. }
  5762. static int afe_sidetone(u16 tx_port_id, u16 rx_port_id, bool enable)
  5763. {
  5764. int ret;
  5765. int cal_index = AFE_SIDETONE_CAL;
  5766. int sidetone_gain;
  5767. int sidetone_enable;
  5768. struct cal_block_data *cal_block;
  5769. int mid = 0;
  5770. struct afe_loopback_sidetone_gain gain_data;
  5771. struct loopback_cfg_data cfg_data;
  5772. struct param_hdr_v3 param_hdr;
  5773. u8 *packed_param_data = NULL;
  5774. u32 packed_param_size = 0;
  5775. u32 single_param_size = 0;
  5776. struct audio_cal_info_sidetone *st_cal_info = NULL;
  5777. if (this_afe.cal_data[cal_index] == NULL) {
  5778. pr_err("%s: cal data is NULL\n", __func__);
  5779. ret = -EINVAL;
  5780. goto done;
  5781. }
  5782. memset(&gain_data, 0, sizeof(gain_data));
  5783. memset(&cfg_data, 0, sizeof(cfg_data));
  5784. memset(&param_hdr, 0, sizeof(param_hdr));
  5785. packed_param_size =
  5786. sizeof(param_hdr) * 2 + sizeof(gain_data) + sizeof(cfg_data);
  5787. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  5788. if (!packed_param_data)
  5789. return -ENOMEM;
  5790. packed_param_size = 0;
  5791. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  5792. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  5793. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  5794. pr_err("%s: cal_block not found\n", __func__);
  5795. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  5796. ret = -EINVAL;
  5797. goto done;
  5798. }
  5799. /* Cache data from cal block while inside lock to reduce locked time */
  5800. st_cal_info = (struct audio_cal_info_sidetone *) cal_block->cal_info;
  5801. sidetone_gain = st_cal_info->gain;
  5802. sidetone_enable = st_cal_info->enable;
  5803. mid = st_cal_info->mid;
  5804. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  5805. /* Set gain data. */
  5806. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  5807. param_hdr.instance_id = INSTANCE_ID_0;
  5808. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_GAIN_PER_PATH;
  5809. param_hdr.param_size = sizeof(struct afe_loopback_sidetone_gain);
  5810. gain_data.rx_port_id = rx_port_id;
  5811. gain_data.gain = sidetone_gain;
  5812. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  5813. (u8 *) &gain_data, &single_param_size);
  5814. if (ret) {
  5815. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  5816. ret);
  5817. goto done;
  5818. }
  5819. packed_param_size += single_param_size;
  5820. /* Set configuration data. */
  5821. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  5822. param_hdr.instance_id = INSTANCE_ID_0;
  5823. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_CONFIG;
  5824. param_hdr.param_size = sizeof(struct loopback_cfg_data);
  5825. cfg_data.loopback_cfg_minor_version = AFE_API_VERSION_LOOPBACK_CONFIG;
  5826. cfg_data.dst_port_id = rx_port_id;
  5827. cfg_data.routing_mode = LB_MODE_SIDETONE;
  5828. cfg_data.enable = enable;
  5829. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  5830. &param_hdr, (u8 *) &cfg_data,
  5831. &single_param_size);
  5832. if (ret) {
  5833. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  5834. ret);
  5835. goto done;
  5836. }
  5837. packed_param_size += single_param_size;
  5838. pr_debug("%s rx(0x%x) tx(0x%x) enable(%d) mid(0x%x) gain(%d) sidetone_enable(%d)\n",
  5839. __func__, rx_port_id, tx_port_id,
  5840. enable, mid, sidetone_gain, sidetone_enable);
  5841. ret = q6afe_set_params(tx_port_id, q6audio_get_port_index(tx_port_id),
  5842. NULL, packed_param_data, packed_param_size);
  5843. if (ret)
  5844. pr_err("%s: AFE sidetone send failed for tx_port:%d rx_port:%d ret:%d\n",
  5845. __func__, tx_port_id, rx_port_id, ret);
  5846. done:
  5847. kfree(packed_param_data);
  5848. return ret;
  5849. }
  5850. int afe_sidetone_enable(u16 tx_port_id, u16 rx_port_id, bool enable)
  5851. {
  5852. int ret;
  5853. int index;
  5854. index = q6audio_get_port_index(rx_port_id);
  5855. if (index < 0 || index >= AFE_MAX_PORTS) {
  5856. pr_err("%s: AFE port index[%d] invalid!\n",
  5857. __func__, index);
  5858. ret = -EINVAL;
  5859. goto done;
  5860. }
  5861. if (q6audio_validate_port(rx_port_id) < 0) {
  5862. pr_err("%s: Invalid port 0x%x\n",
  5863. __func__, rx_port_id);
  5864. ret = -EINVAL;
  5865. goto done;
  5866. }
  5867. index = q6audio_get_port_index(tx_port_id);
  5868. if (index < 0 || index >= AFE_MAX_PORTS) {
  5869. pr_err("%s: AFE port index[%d] invalid!\n",
  5870. __func__, index);
  5871. ret = -EINVAL;
  5872. goto done;
  5873. }
  5874. if (q6audio_validate_port(tx_port_id) < 0) {
  5875. pr_err("%s: Invalid port 0x%x\n",
  5876. __func__, tx_port_id);
  5877. ret = -EINVAL;
  5878. goto done;
  5879. }
  5880. if (enable) {
  5881. ret = afe_sidetone_iir(tx_port_id);
  5882. if (ret)
  5883. goto done;
  5884. }
  5885. ret = afe_sidetone(tx_port_id, rx_port_id, enable);
  5886. done:
  5887. return ret;
  5888. }
  5889. /**
  5890. * afe_set_display_stream - command to update AFE dp port params
  5891. *
  5892. * @rx_port_id: AFE port id
  5893. * @stream_idx: dp controller stream index
  5894. * @ctl_idx: dp controller index
  5895. *
  5896. * Returns 0 on success, appropriate error code otherwise
  5897. */
  5898. int afe_set_display_stream(u16 rx_port_id, u32 stream_idx, u32 ctl_idx)
  5899. {
  5900. int ret;
  5901. struct param_hdr_v3 param_hdr;
  5902. u32 packed_param_size = 0;
  5903. u8 *packed_param_data = NULL;
  5904. struct afe_display_stream_idx stream_data;
  5905. struct afe_display_ctl_idx ctl_data;
  5906. u32 single_param_size = 0;
  5907. memset(&param_hdr, 0, sizeof(param_hdr));
  5908. memset(&stream_data, 0, sizeof(stream_data));
  5909. memset(&ctl_data, 0, sizeof(ctl_data));
  5910. packed_param_size =
  5911. sizeof(param_hdr) * 2 + sizeof(stream_data) + sizeof(ctl_data);
  5912. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  5913. if (!packed_param_data)
  5914. return -ENOMEM;
  5915. packed_param_size = 0;
  5916. /* Set stream index */
  5917. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5918. param_hdr.instance_id = INSTANCE_ID_0;
  5919. param_hdr.param_id = AFE_PARAM_ID_HDMI_DP_MST_VID_IDX_CFG;
  5920. param_hdr.param_size = sizeof(struct afe_display_stream_idx);
  5921. stream_data.minor_version = 1;
  5922. stream_data.stream_idx = stream_idx;
  5923. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  5924. (u8 *) &stream_data, &single_param_size);
  5925. if (ret) {
  5926. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  5927. ret);
  5928. goto done;
  5929. }
  5930. packed_param_size += single_param_size;
  5931. /* Set controller dptx index */
  5932. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5933. param_hdr.instance_id = INSTANCE_ID_0;
  5934. param_hdr.param_id = AFE_PARAM_ID_HDMI_DPTX_IDX_CFG;
  5935. param_hdr.param_size = sizeof(struct afe_display_ctl_idx);
  5936. ctl_data.minor_version = 1;
  5937. ctl_data.ctl_idx = ctl_idx;
  5938. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  5939. &param_hdr, (u8 *) &ctl_data,
  5940. &single_param_size);
  5941. if (ret) {
  5942. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  5943. ret);
  5944. goto done;
  5945. }
  5946. packed_param_size += single_param_size;
  5947. pr_debug("%s: rx(0x%x) stream(%d) controller(%d)\n",
  5948. __func__, rx_port_id, stream_idx, ctl_idx);
  5949. ret = q6afe_set_params(rx_port_id, q6audio_get_port_index(rx_port_id),
  5950. NULL, packed_param_data, packed_param_size);
  5951. if (ret)
  5952. pr_err("%s: AFE display stream send failed for rx_port:%d ret:%d\n",
  5953. __func__, rx_port_id, ret);
  5954. done:
  5955. kfree(packed_param_data);
  5956. return ret;
  5957. }
  5958. EXPORT_SYMBOL(afe_set_display_stream);
  5959. int afe_validate_port(u16 port_id)
  5960. {
  5961. int ret;
  5962. switch (port_id) {
  5963. case PRIMARY_I2S_RX:
  5964. case PRIMARY_I2S_TX:
  5965. case AFE_PORT_ID_PRIMARY_PCM_RX:
  5966. case AFE_PORT_ID_PRIMARY_PCM_TX:
  5967. case AFE_PORT_ID_SECONDARY_PCM_RX:
  5968. case AFE_PORT_ID_SECONDARY_PCM_TX:
  5969. case AFE_PORT_ID_TERTIARY_PCM_RX:
  5970. case AFE_PORT_ID_TERTIARY_PCM_TX:
  5971. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  5972. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  5973. case AFE_PORT_ID_QUINARY_PCM_RX:
  5974. case AFE_PORT_ID_QUINARY_PCM_TX:
  5975. case SECONDARY_I2S_RX:
  5976. case SECONDARY_I2S_TX:
  5977. case MI2S_RX:
  5978. case MI2S_TX:
  5979. case HDMI_RX:
  5980. case DISPLAY_PORT_RX:
  5981. case AFE_PORT_ID_PRIMARY_SPDIF_RX:
  5982. case AFE_PORT_ID_PRIMARY_SPDIF_TX:
  5983. case AFE_PORT_ID_SECONDARY_SPDIF_RX:
  5984. case AFE_PORT_ID_SECONDARY_SPDIF_TX:
  5985. case RSVD_2:
  5986. case RSVD_3:
  5987. case DIGI_MIC_TX:
  5988. case VOICE_RECORD_RX:
  5989. case VOICE_RECORD_TX:
  5990. case VOICE_PLAYBACK_TX:
  5991. case VOICE2_PLAYBACK_TX:
  5992. case SLIMBUS_0_RX:
  5993. case SLIMBUS_0_TX:
  5994. case SLIMBUS_1_RX:
  5995. case SLIMBUS_1_TX:
  5996. case SLIMBUS_2_RX:
  5997. case SLIMBUS_2_TX:
  5998. case SLIMBUS_3_RX:
  5999. case INT_BT_SCO_RX:
  6000. case INT_BT_SCO_TX:
  6001. case INT_BT_A2DP_RX:
  6002. case INT_FM_RX:
  6003. case INT_FM_TX:
  6004. case RT_PROXY_PORT_001_RX:
  6005. case RT_PROXY_PORT_001_TX:
  6006. case SLIMBUS_4_RX:
  6007. case SLIMBUS_4_TX:
  6008. case SLIMBUS_5_RX:
  6009. case SLIMBUS_6_RX:
  6010. case SLIMBUS_6_TX:
  6011. case SLIMBUS_7_RX:
  6012. case SLIMBUS_7_TX:
  6013. case SLIMBUS_8_RX:
  6014. case SLIMBUS_8_TX:
  6015. case SLIMBUS_9_RX:
  6016. case SLIMBUS_9_TX:
  6017. case AFE_PORT_ID_USB_RX:
  6018. case AFE_PORT_ID_USB_TX:
  6019. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  6020. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  6021. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  6022. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  6023. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  6024. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  6025. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  6026. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  6027. case AFE_PORT_ID_QUINARY_MI2S_RX:
  6028. case AFE_PORT_ID_QUINARY_MI2S_TX:
  6029. case AFE_PORT_ID_SENARY_MI2S_TX:
  6030. case AFE_PORT_ID_PRIMARY_TDM_RX:
  6031. case AFE_PORT_ID_PRIMARY_TDM_TX:
  6032. case AFE_PORT_ID_PRIMARY_TDM_RX_1:
  6033. case AFE_PORT_ID_PRIMARY_TDM_TX_1:
  6034. case AFE_PORT_ID_PRIMARY_TDM_RX_2:
  6035. case AFE_PORT_ID_PRIMARY_TDM_TX_2:
  6036. case AFE_PORT_ID_PRIMARY_TDM_RX_3:
  6037. case AFE_PORT_ID_PRIMARY_TDM_TX_3:
  6038. case AFE_PORT_ID_PRIMARY_TDM_RX_4:
  6039. case AFE_PORT_ID_PRIMARY_TDM_TX_4:
  6040. case AFE_PORT_ID_PRIMARY_TDM_RX_5:
  6041. case AFE_PORT_ID_PRIMARY_TDM_TX_5:
  6042. case AFE_PORT_ID_PRIMARY_TDM_RX_6:
  6043. case AFE_PORT_ID_PRIMARY_TDM_TX_6:
  6044. case AFE_PORT_ID_PRIMARY_TDM_RX_7:
  6045. case AFE_PORT_ID_PRIMARY_TDM_TX_7:
  6046. case AFE_PORT_ID_SECONDARY_TDM_RX:
  6047. case AFE_PORT_ID_SECONDARY_TDM_TX:
  6048. case AFE_PORT_ID_SECONDARY_TDM_RX_1:
  6049. case AFE_PORT_ID_SECONDARY_TDM_TX_1:
  6050. case AFE_PORT_ID_SECONDARY_TDM_RX_2:
  6051. case AFE_PORT_ID_SECONDARY_TDM_TX_2:
  6052. case AFE_PORT_ID_SECONDARY_TDM_RX_3:
  6053. case AFE_PORT_ID_SECONDARY_TDM_TX_3:
  6054. case AFE_PORT_ID_SECONDARY_TDM_RX_4:
  6055. case AFE_PORT_ID_SECONDARY_TDM_TX_4:
  6056. case AFE_PORT_ID_SECONDARY_TDM_RX_5:
  6057. case AFE_PORT_ID_SECONDARY_TDM_TX_5:
  6058. case AFE_PORT_ID_SECONDARY_TDM_RX_6:
  6059. case AFE_PORT_ID_SECONDARY_TDM_TX_6:
  6060. case AFE_PORT_ID_SECONDARY_TDM_RX_7:
  6061. case AFE_PORT_ID_SECONDARY_TDM_TX_7:
  6062. case AFE_PORT_ID_TERTIARY_TDM_RX:
  6063. case AFE_PORT_ID_TERTIARY_TDM_TX:
  6064. case AFE_PORT_ID_TERTIARY_TDM_RX_1:
  6065. case AFE_PORT_ID_TERTIARY_TDM_TX_1:
  6066. case AFE_PORT_ID_TERTIARY_TDM_RX_2:
  6067. case AFE_PORT_ID_TERTIARY_TDM_TX_2:
  6068. case AFE_PORT_ID_TERTIARY_TDM_RX_3:
  6069. case AFE_PORT_ID_TERTIARY_TDM_TX_3:
  6070. case AFE_PORT_ID_TERTIARY_TDM_RX_4:
  6071. case AFE_PORT_ID_TERTIARY_TDM_TX_4:
  6072. case AFE_PORT_ID_TERTIARY_TDM_RX_5:
  6073. case AFE_PORT_ID_TERTIARY_TDM_TX_5:
  6074. case AFE_PORT_ID_TERTIARY_TDM_RX_6:
  6075. case AFE_PORT_ID_TERTIARY_TDM_TX_6:
  6076. case AFE_PORT_ID_TERTIARY_TDM_RX_7:
  6077. case AFE_PORT_ID_TERTIARY_TDM_TX_7:
  6078. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  6079. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  6080. case AFE_PORT_ID_QUATERNARY_TDM_RX_1:
  6081. case AFE_PORT_ID_QUATERNARY_TDM_TX_1:
  6082. case AFE_PORT_ID_QUATERNARY_TDM_RX_2:
  6083. case AFE_PORT_ID_QUATERNARY_TDM_TX_2:
  6084. case AFE_PORT_ID_QUATERNARY_TDM_RX_3:
  6085. case AFE_PORT_ID_QUATERNARY_TDM_TX_3:
  6086. case AFE_PORT_ID_QUATERNARY_TDM_RX_4:
  6087. case AFE_PORT_ID_QUATERNARY_TDM_TX_4:
  6088. case AFE_PORT_ID_QUATERNARY_TDM_RX_5:
  6089. case AFE_PORT_ID_QUATERNARY_TDM_TX_5:
  6090. case AFE_PORT_ID_QUATERNARY_TDM_RX_6:
  6091. case AFE_PORT_ID_QUATERNARY_TDM_TX_6:
  6092. case AFE_PORT_ID_QUATERNARY_TDM_RX_7:
  6093. case AFE_PORT_ID_QUATERNARY_TDM_TX_7:
  6094. case AFE_PORT_ID_QUINARY_TDM_RX:
  6095. case AFE_PORT_ID_QUINARY_TDM_TX:
  6096. case AFE_PORT_ID_QUINARY_TDM_RX_1:
  6097. case AFE_PORT_ID_QUINARY_TDM_TX_1:
  6098. case AFE_PORT_ID_QUINARY_TDM_RX_2:
  6099. case AFE_PORT_ID_QUINARY_TDM_TX_2:
  6100. case AFE_PORT_ID_QUINARY_TDM_RX_3:
  6101. case AFE_PORT_ID_QUINARY_TDM_TX_3:
  6102. case AFE_PORT_ID_QUINARY_TDM_RX_4:
  6103. case AFE_PORT_ID_QUINARY_TDM_TX_4:
  6104. case AFE_PORT_ID_QUINARY_TDM_RX_5:
  6105. case AFE_PORT_ID_QUINARY_TDM_TX_5:
  6106. case AFE_PORT_ID_QUINARY_TDM_RX_6:
  6107. case AFE_PORT_ID_QUINARY_TDM_TX_6:
  6108. case AFE_PORT_ID_QUINARY_TDM_RX_7:
  6109. case AFE_PORT_ID_QUINARY_TDM_TX_7:
  6110. case AFE_PORT_ID_INT0_MI2S_RX:
  6111. case AFE_PORT_ID_INT1_MI2S_RX:
  6112. case AFE_PORT_ID_INT2_MI2S_RX:
  6113. case AFE_PORT_ID_INT3_MI2S_RX:
  6114. case AFE_PORT_ID_INT4_MI2S_RX:
  6115. case AFE_PORT_ID_INT5_MI2S_RX:
  6116. case AFE_PORT_ID_INT6_MI2S_RX:
  6117. case AFE_PORT_ID_INT0_MI2S_TX:
  6118. case AFE_PORT_ID_INT1_MI2S_TX:
  6119. case AFE_PORT_ID_INT2_MI2S_TX:
  6120. case AFE_PORT_ID_INT3_MI2S_TX:
  6121. case AFE_PORT_ID_INT4_MI2S_TX:
  6122. case AFE_PORT_ID_INT5_MI2S_TX:
  6123. case AFE_PORT_ID_INT6_MI2S_TX:
  6124. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  6125. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  6126. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  6127. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  6128. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  6129. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  6130. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  6131. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  6132. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  6133. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  6134. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  6135. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  6136. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  6137. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  6138. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  6139. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  6140. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  6141. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  6142. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  6143. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  6144. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  6145. {
  6146. ret = 0;
  6147. break;
  6148. }
  6149. default:
  6150. pr_err("%s: default ret 0x%x\n", __func__, port_id);
  6151. ret = -EINVAL;
  6152. }
  6153. return ret;
  6154. }
  6155. int afe_convert_virtual_to_portid(u16 port_id)
  6156. {
  6157. int ret;
  6158. /*
  6159. * if port_id is virtual, convert to physical..
  6160. * if port_id is already physical, return physical
  6161. */
  6162. if (afe_validate_port(port_id) < 0) {
  6163. if (port_id == RT_PROXY_DAI_001_RX ||
  6164. port_id == RT_PROXY_DAI_001_TX ||
  6165. port_id == RT_PROXY_DAI_002_RX ||
  6166. port_id == RT_PROXY_DAI_002_TX) {
  6167. ret = VIRTUAL_ID_TO_PORTID(port_id);
  6168. } else {
  6169. pr_err("%s: wrong port 0x%x\n",
  6170. __func__, port_id);
  6171. ret = -EINVAL;
  6172. }
  6173. } else
  6174. ret = port_id;
  6175. return ret;
  6176. }
  6177. int afe_port_stop_nowait(int port_id)
  6178. {
  6179. struct afe_port_cmd_device_stop stop;
  6180. int ret = 0;
  6181. if (this_afe.apr == NULL) {
  6182. pr_err("%s: AFE is already closed\n", __func__);
  6183. ret = -EINVAL;
  6184. goto fail_cmd;
  6185. }
  6186. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  6187. port_id = q6audio_convert_virtual_to_portid(port_id);
  6188. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6189. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6190. stop.hdr.pkt_size = sizeof(stop);
  6191. stop.hdr.src_port = 0;
  6192. stop.hdr.dest_port = 0;
  6193. stop.hdr.token = 0;
  6194. stop.hdr.opcode = AFE_PORT_CMD_DEVICE_STOP;
  6195. stop.port_id = port_id;
  6196. stop.reserved = 0;
  6197. ret = afe_apr_send_pkt(&stop, NULL);
  6198. if (ret)
  6199. pr_err("%s: AFE close failed %d\n", __func__, ret);
  6200. fail_cmd:
  6201. return ret;
  6202. }
  6203. /**
  6204. * afe_close - command to close AFE port
  6205. *
  6206. * @port_id: AFE port id
  6207. *
  6208. * Returns 0 on success, appropriate error code otherwise
  6209. */
  6210. int afe_close(int port_id)
  6211. {
  6212. struct afe_port_cmd_device_stop stop;
  6213. enum afe_mad_type mad_type;
  6214. int ret = 0;
  6215. int index = 0;
  6216. uint16_t port_index;
  6217. if (this_afe.apr == NULL) {
  6218. pr_err("%s: AFE is already closed\n", __func__);
  6219. if ((port_id == RT_PROXY_DAI_001_RX) ||
  6220. (port_id == RT_PROXY_DAI_002_TX))
  6221. pcm_afe_instance[port_id & 0x1] = 0;
  6222. if ((port_id == RT_PROXY_DAI_002_RX) ||
  6223. (port_id == RT_PROXY_DAI_001_TX))
  6224. proxy_afe_instance[port_id & 0x1] = 0;
  6225. afe_close_done[port_id & 0x1] = true;
  6226. ret = -EINVAL;
  6227. goto fail_cmd;
  6228. }
  6229. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  6230. if ((port_id == RT_PROXY_DAI_001_RX) ||
  6231. (port_id == RT_PROXY_DAI_002_TX)) {
  6232. pr_debug("%s: before decrementing pcm_afe_instance %d\n",
  6233. __func__, pcm_afe_instance[port_id & 0x1]);
  6234. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  6235. pcm_afe_instance[port_id & 0x1]--;
  6236. if ((!(pcm_afe_instance[port_id & 0x1] == 0 &&
  6237. proxy_afe_instance[port_id & 0x1] == 0)) ||
  6238. afe_close_done[port_id & 0x1] == true)
  6239. return 0;
  6240. afe_close_done[port_id & 0x1] = true;
  6241. }
  6242. if ((port_id == RT_PROXY_DAI_002_RX) ||
  6243. (port_id == RT_PROXY_DAI_001_TX)) {
  6244. pr_debug("%s: before decrementing proxy_afe_instance %d\n",
  6245. __func__, proxy_afe_instance[port_id & 0x1]);
  6246. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  6247. proxy_afe_instance[port_id & 0x1]--;
  6248. if ((!(pcm_afe_instance[port_id & 0x1] == 0 &&
  6249. proxy_afe_instance[port_id & 0x1] == 0)) ||
  6250. afe_close_done[port_id & 0x1] == true)
  6251. return 0;
  6252. afe_close_done[port_id & 0x1] = true;
  6253. }
  6254. port_id = q6audio_convert_virtual_to_portid(port_id);
  6255. index = q6audio_get_port_index(port_id);
  6256. if (index < 0 || index >= AFE_MAX_PORTS) {
  6257. pr_err("%s: AFE port index[%d] invalid!\n",
  6258. __func__, index);
  6259. return -EINVAL;
  6260. }
  6261. ret = q6audio_validate_port(port_id);
  6262. if (ret < 0) {
  6263. pr_warn("%s: Not a valid port id 0x%x ret %d\n",
  6264. __func__, port_id, ret);
  6265. return -EINVAL;
  6266. }
  6267. mad_type = afe_port_get_mad_type(port_id);
  6268. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  6269. mad_type);
  6270. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  6271. pr_debug("%s: Turn off MAD\n", __func__);
  6272. ret = afe_turn_onoff_hw_mad(mad_type, false);
  6273. if (ret) {
  6274. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  6275. __func__, ret);
  6276. return ret;
  6277. }
  6278. } else {
  6279. pr_debug("%s: Not a MAD port\n", __func__);
  6280. }
  6281. port_index = afe_get_port_index(port_id);
  6282. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  6283. this_afe.afe_sample_rates[port_index] = 0;
  6284. this_afe.topology[port_index] = 0;
  6285. this_afe.dev_acdb_id[port_index] = 0;
  6286. } else {
  6287. pr_err("%s: port %d\n", __func__, port_index);
  6288. ret = -EINVAL;
  6289. goto fail_cmd;
  6290. }
  6291. if ((port_id == this_afe.aanc_info.aanc_tx_port) &&
  6292. (this_afe.aanc_info.aanc_active)) {
  6293. memset(&this_afe.aanc_info, 0x00, sizeof(this_afe.aanc_info));
  6294. ret = afe_aanc_mod_enable(this_afe.apr, port_id, 0);
  6295. if (ret)
  6296. pr_err("%s: AFE mod disable failed %d\n",
  6297. __func__, ret);
  6298. }
  6299. /*
  6300. * even if ramp down configuration failed it is not serious enough to
  6301. * warrant bailaing out.
  6302. */
  6303. if (afe_spk_ramp_dn_cfg(port_id) < 0)
  6304. pr_err("%s: ramp down configuration failed\n", __func__);
  6305. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6306. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6307. stop.hdr.pkt_size = sizeof(stop);
  6308. stop.hdr.src_port = 0;
  6309. stop.hdr.dest_port = 0;
  6310. stop.hdr.token = index;
  6311. stop.hdr.opcode = AFE_PORT_CMD_DEVICE_STOP;
  6312. stop.port_id = q6audio_get_port_id(port_id);
  6313. stop.reserved = 0;
  6314. ret = afe_apr_send_pkt(&stop, &this_afe.wait[index]);
  6315. if (ret)
  6316. pr_err("%s: AFE close failed %d\n", __func__, ret);
  6317. fail_cmd:
  6318. return ret;
  6319. }
  6320. EXPORT_SYMBOL(afe_close);
  6321. int afe_set_digital_codec_core_clock(u16 port_id,
  6322. struct afe_digital_clk_cfg *cfg)
  6323. {
  6324. struct afe_digital_clk_cfg clk_cfg;
  6325. struct param_hdr_v3 param_hdr;
  6326. int ret = 0;
  6327. if (!cfg) {
  6328. pr_err("%s: clock cfg is NULL\n", __func__);
  6329. return -EINVAL;
  6330. }
  6331. memset(&clk_cfg, 0, sizeof(clk_cfg));
  6332. memset(&param_hdr, 0, sizeof(param_hdr));
  6333. /*default rx port is taken to enable the codec digital clock*/
  6334. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6335. param_hdr.instance_id = INSTANCE_ID_0;
  6336. param_hdr.param_id = AFE_PARAM_ID_INTERNAL_DIGIATL_CDC_CLK_CONFIG;
  6337. param_hdr.param_size = sizeof(struct afe_digital_clk_cfg);
  6338. clk_cfg = *cfg;
  6339. pr_debug("%s: Minor version =0x%x clk val = %d\n"
  6340. "clk root = 0x%x resrv = 0x%x\n",
  6341. __func__, cfg->i2s_cfg_minor_version, cfg->clk_val,
  6342. cfg->clk_root, cfg->reserved);
  6343. ret = q6afe_pack_and_set_param_in_band(port_id,
  6344. q6audio_get_port_index(port_id),
  6345. param_hdr, (u8 *) &clk_cfg);
  6346. if (ret < 0)
  6347. pr_err("%s: AFE enable for port 0x%x ret %d\n", __func__,
  6348. port_id, ret);
  6349. return ret;
  6350. }
  6351. /**
  6352. * afe_set_lpass_clock - Enable AFE lpass clock
  6353. *
  6354. * @port_id: AFE port id
  6355. * @cfg: pointer to clk set struct
  6356. *
  6357. * Returns 0 on success, appropriate error code otherwise
  6358. */
  6359. int afe_set_lpass_clock(u16 port_id, struct afe_clk_cfg *cfg)
  6360. {
  6361. struct afe_clk_cfg clk_cfg;
  6362. struct param_hdr_v3 param_hdr;
  6363. int ret = 0;
  6364. if (!cfg) {
  6365. pr_err("%s: clock cfg is NULL\n", __func__);
  6366. return -EINVAL;
  6367. }
  6368. memset(&clk_cfg, 0, sizeof(clk_cfg));
  6369. memset(&param_hdr, 0, sizeof(param_hdr));
  6370. ret = q6audio_is_digital_pcm_interface(port_id);
  6371. if (ret < 0) {
  6372. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  6373. __func__, ret);
  6374. return -EINVAL;
  6375. }
  6376. mutex_lock(&this_afe.afe_cmd_lock);
  6377. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6378. param_hdr.instance_id = INSTANCE_ID_0;
  6379. param_hdr.param_id = AFE_PARAM_ID_LPAIF_CLK_CONFIG;
  6380. param_hdr.param_size = sizeof(clk_cfg);
  6381. clk_cfg = *cfg;
  6382. pr_debug("%s: Minor version =0x%x clk val1 = %d\n"
  6383. "clk val2 = %d, clk src = 0x%x\n"
  6384. "clk root = 0x%x clk mode = 0x%x resrv = 0x%x\n"
  6385. "port id = 0x%x\n",
  6386. __func__, cfg->i2s_cfg_minor_version,
  6387. cfg->clk_val1, cfg->clk_val2, cfg->clk_src,
  6388. cfg->clk_root, cfg->clk_set_mode,
  6389. cfg->reserved, q6audio_get_port_id(port_id));
  6390. ret = q6afe_pack_and_set_param_in_band(port_id,
  6391. q6audio_get_port_index(port_id),
  6392. param_hdr, (u8 *) &clk_cfg);
  6393. if (ret < 0)
  6394. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  6395. __func__, port_id, ret);
  6396. mutex_unlock(&this_afe.afe_cmd_lock);
  6397. return ret;
  6398. }
  6399. EXPORT_SYMBOL(afe_set_lpass_clock);
  6400. /**
  6401. * afe_set_lpass_clk_cfg - Set AFE clk config
  6402. *
  6403. * @index: port index
  6404. * @cfg: pointer to clk set struct
  6405. *
  6406. * Returns 0 on success, appropriate error code otherwise
  6407. */
  6408. int afe_set_lpass_clk_cfg(int index, struct afe_clk_set *cfg)
  6409. {
  6410. struct param_hdr_v3 param_hdr;
  6411. int ret = 0;
  6412. if (!cfg) {
  6413. pr_err("%s: clock cfg is NULL\n", __func__);
  6414. ret = -EINVAL;
  6415. return ret;
  6416. }
  6417. if (index < 0 || index >= AFE_MAX_PORTS) {
  6418. pr_err("%s: index[%d] invalid!\n", __func__, index);
  6419. return -EINVAL;
  6420. }
  6421. memset(&param_hdr, 0, sizeof(param_hdr));
  6422. ret = afe_q6_interface_prepare();
  6423. if (ret != 0) {
  6424. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  6425. return ret;
  6426. }
  6427. mutex_lock(&this_afe.afe_cmd_lock);
  6428. param_hdr.module_id = AFE_MODULE_CLOCK_SET;
  6429. param_hdr.instance_id = INSTANCE_ID_0;
  6430. param_hdr.param_id = AFE_PARAM_ID_CLOCK_SET;
  6431. param_hdr.param_size = sizeof(struct afe_clk_set);
  6432. pr_debug("%s: Minor version =0x%x clk id = %d\n"
  6433. "clk freq (Hz) = %d, clk attri = 0x%x\n"
  6434. "clk root = 0x%x clk enable = 0x%x\n",
  6435. __func__, cfg->clk_set_minor_version,
  6436. cfg->clk_id, cfg->clk_freq_in_hz, cfg->clk_attri,
  6437. cfg->clk_root, cfg->enable);
  6438. ret = q6afe_svc_pack_and_set_param_in_band(index, param_hdr,
  6439. (u8 *) cfg);
  6440. if (ret < 0)
  6441. pr_err("%s: AFE clk cfg failed with ret %d\n",
  6442. __func__, ret);
  6443. mutex_unlock(&this_afe.afe_cmd_lock);
  6444. return ret;
  6445. }
  6446. EXPORT_SYMBOL(afe_set_lpass_clk_cfg);
  6447. /**
  6448. * afe_set_lpass_clock_v2 - Enable AFE lpass clock
  6449. *
  6450. * @port_id: AFE port id
  6451. * @cfg: pointer to clk set struct
  6452. *
  6453. * Returns 0 on success, appropriate error code otherwise
  6454. */
  6455. int afe_set_lpass_clock_v2(u16 port_id, struct afe_clk_set *cfg)
  6456. {
  6457. int index = 0;
  6458. int ret = 0;
  6459. index = q6audio_get_port_index(port_id);
  6460. if (index < 0 || index >= AFE_MAX_PORTS) {
  6461. pr_err("%s: AFE port index[%d] invalid!\n",
  6462. __func__, index);
  6463. return -EINVAL;
  6464. }
  6465. ret = q6audio_is_digital_pcm_interface(port_id);
  6466. if (ret < 0) {
  6467. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  6468. __func__, ret);
  6469. return -EINVAL;
  6470. }
  6471. ret = afe_set_lpass_clk_cfg(index, cfg);
  6472. if (ret)
  6473. pr_err("%s: afe_set_lpass_clk_cfg_v2 failed %d\n",
  6474. __func__, ret);
  6475. return ret;
  6476. }
  6477. EXPORT_SYMBOL(afe_set_lpass_clock_v2);
  6478. int afe_set_lpass_internal_digital_codec_clock(u16 port_id,
  6479. struct afe_digital_clk_cfg *cfg)
  6480. {
  6481. struct afe_digital_clk_cfg clk_cfg;
  6482. struct param_hdr_v3 param_hdr;
  6483. int ret = 0;
  6484. if (!cfg) {
  6485. pr_err("%s: clock cfg is NULL\n", __func__);
  6486. return -EINVAL;
  6487. }
  6488. memset(&clk_cfg, 0, sizeof(clk_cfg));
  6489. memset(&param_hdr, 0, sizeof(param_hdr));
  6490. ret = q6audio_is_digital_pcm_interface(port_id);
  6491. if (ret < 0) {
  6492. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  6493. __func__, ret);
  6494. return -EINVAL;
  6495. }
  6496. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6497. param_hdr.instance_id = INSTANCE_ID_0;
  6498. param_hdr.param_id = AFE_PARAM_ID_INTERNAL_DIGIATL_CDC_CLK_CONFIG;
  6499. param_hdr.param_size = sizeof(clk_cfg);
  6500. clk_cfg = *cfg;
  6501. pr_debug("%s: Minor version =0x%x clk val = %d\n"
  6502. "clk root = 0x%x resrv = 0x%x port id = 0x%x\n",
  6503. __func__, cfg->i2s_cfg_minor_version,
  6504. cfg->clk_val, cfg->clk_root, cfg->reserved,
  6505. q6audio_get_port_id(port_id));
  6506. ret = q6afe_pack_and_set_param_in_band(port_id,
  6507. q6audio_get_port_index(port_id),
  6508. param_hdr, (u8 *) &clk_cfg);
  6509. if (ret < 0)
  6510. pr_err("%s: AFE enable for port 0x0x%x ret %d\n",
  6511. __func__, port_id, ret);
  6512. return ret;
  6513. }
  6514. int afe_enable_lpass_core_shared_clock(u16 port_id, u32 enable)
  6515. {
  6516. struct afe_param_id_lpass_core_shared_clk_cfg clk_cfg;
  6517. struct param_hdr_v3 param_hdr;
  6518. int ret = 0;
  6519. memset(&clk_cfg, 0, sizeof(clk_cfg));
  6520. memset(&param_hdr, 0, sizeof(param_hdr));
  6521. ret = q6audio_is_digital_pcm_interface(port_id);
  6522. if (ret < 0) {
  6523. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  6524. __func__, ret);
  6525. return -EINVAL;
  6526. }
  6527. mutex_lock(&this_afe.afe_cmd_lock);
  6528. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6529. param_hdr.instance_id = INSTANCE_ID_0;
  6530. param_hdr.param_id = AFE_PARAM_ID_LPASS_CORE_SHARED_CLOCK_CONFIG;
  6531. param_hdr.param_size = sizeof(clk_cfg);
  6532. clk_cfg.lpass_core_shared_clk_cfg_minor_version =
  6533. AFE_API_VERSION_LPASS_CORE_SHARED_CLK_CONFIG;
  6534. clk_cfg.enable = enable;
  6535. pr_debug("%s: port id = %d, enable = %d\n",
  6536. __func__, q6audio_get_port_id(port_id), enable);
  6537. ret = q6afe_pack_and_set_param_in_band(port_id,
  6538. q6audio_get_port_index(port_id),
  6539. param_hdr, (u8 *) &clk_cfg);
  6540. if (ret < 0)
  6541. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  6542. __func__, port_id, ret);
  6543. mutex_unlock(&this_afe.afe_cmd_lock);
  6544. return ret;
  6545. }
  6546. int q6afe_check_osr_clk_freq(u32 freq)
  6547. {
  6548. int ret = 0;
  6549. switch (freq) {
  6550. case Q6AFE_LPASS_OSR_CLK_12_P288_MHZ:
  6551. case Q6AFE_LPASS_OSR_CLK_9_P600_MHZ:
  6552. case Q6AFE_LPASS_OSR_CLK_8_P192_MHZ:
  6553. case Q6AFE_LPASS_OSR_CLK_6_P144_MHZ:
  6554. case Q6AFE_LPASS_OSR_CLK_4_P096_MHZ:
  6555. case Q6AFE_LPASS_OSR_CLK_3_P072_MHZ:
  6556. case Q6AFE_LPASS_OSR_CLK_2_P048_MHZ:
  6557. case Q6AFE_LPASS_OSR_CLK_1_P536_MHZ:
  6558. case Q6AFE_LPASS_OSR_CLK_1_P024_MHZ:
  6559. case Q6AFE_LPASS_OSR_CLK_768_kHZ:
  6560. case Q6AFE_LPASS_OSR_CLK_512_kHZ:
  6561. break;
  6562. default:
  6563. pr_err("%s: default freq 0x%x\n",
  6564. __func__, freq);
  6565. ret = -EINVAL;
  6566. }
  6567. return ret;
  6568. }
  6569. int afe_get_sp_th_vi_ftm_data(struct afe_sp_th_vi_get_param *th_vi)
  6570. {
  6571. struct param_hdr_v3 param_hdr;
  6572. int port = SLIMBUS_4_TX;
  6573. int ret = -EINVAL;
  6574. if (!th_vi) {
  6575. pr_err("%s: Invalid params\n", __func__);
  6576. goto done;
  6577. }
  6578. if (this_afe.vi_tx_port != -1)
  6579. port = this_afe.vi_tx_port;
  6580. memset(&param_hdr, 0, sizeof(param_hdr));
  6581. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  6582. param_hdr.instance_id = INSTANCE_ID_0;
  6583. param_hdr.param_id = AFE_PARAM_ID_SP_V2_TH_VI_FTM_PARAMS;
  6584. param_hdr.param_size = sizeof(struct afe_sp_th_vi_ftm_params);
  6585. ret = q6afe_get_params(port, NULL, &param_hdr);
  6586. if (ret) {
  6587. pr_err("%s: Failed to get TH VI FTM data\n", __func__);
  6588. goto done;
  6589. }
  6590. th_vi->pdata = param_hdr;
  6591. memcpy(&th_vi->param, &this_afe.th_vi_resp.param,
  6592. sizeof(this_afe.th_vi_resp.param));
  6593. pr_debug("%s: DC resistance %d %d temp %d %d status %d %d\n",
  6594. __func__, th_vi->param.dc_res_q24[SP_V2_SPKR_1],
  6595. th_vi->param.dc_res_q24[SP_V2_SPKR_2],
  6596. th_vi->param.temp_q22[SP_V2_SPKR_1],
  6597. th_vi->param.temp_q22[SP_V2_SPKR_2],
  6598. th_vi->param.status[SP_V2_SPKR_1],
  6599. th_vi->param.status[SP_V2_SPKR_2]);
  6600. ret = 0;
  6601. done:
  6602. return ret;
  6603. }
  6604. int afe_get_sp_ex_vi_ftm_data(struct afe_sp_ex_vi_get_param *ex_vi)
  6605. {
  6606. struct param_hdr_v3 param_hdr;
  6607. int port = SLIMBUS_4_TX;
  6608. int ret = -EINVAL;
  6609. if (!ex_vi) {
  6610. pr_err("%s: Invalid params\n", __func__);
  6611. goto done;
  6612. }
  6613. if (this_afe.vi_tx_port != -1)
  6614. port = this_afe.vi_tx_port;
  6615. memset(&param_hdr, 0, sizeof(param_hdr));
  6616. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI;
  6617. param_hdr.instance_id = INSTANCE_ID_0;
  6618. param_hdr.param_id = AFE_PARAM_ID_SP_V2_EX_VI_FTM_PARAMS;
  6619. param_hdr.param_size = sizeof(struct afe_sp_ex_vi_ftm_params);
  6620. ret = q6afe_get_params(port, NULL, &param_hdr);
  6621. if (ret < 0) {
  6622. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  6623. __func__, port, param_hdr.param_id, ret);
  6624. goto done;
  6625. }
  6626. ex_vi->pdata = param_hdr;
  6627. memcpy(&ex_vi->param, &this_afe.ex_vi_resp.param,
  6628. sizeof(this_afe.ex_vi_resp.param));
  6629. pr_debug("%s: freq %d %d resistance %d %d qfactor %d %d state %d %d\n",
  6630. __func__, ex_vi->param.freq_q20[SP_V2_SPKR_1],
  6631. ex_vi->param.freq_q20[SP_V2_SPKR_2],
  6632. ex_vi->param.resis_q24[SP_V2_SPKR_1],
  6633. ex_vi->param.resis_q24[SP_V2_SPKR_2],
  6634. ex_vi->param.qmct_q24[SP_V2_SPKR_1],
  6635. ex_vi->param.qmct_q24[SP_V2_SPKR_2],
  6636. ex_vi->param.status[SP_V2_SPKR_1],
  6637. ex_vi->param.status[SP_V2_SPKR_2]);
  6638. ret = 0;
  6639. done:
  6640. return ret;
  6641. }
  6642. /**
  6643. * afe_get_av_dev_drift -
  6644. * command to retrieve AV drift
  6645. *
  6646. * @timing_stats: timing stats to be updated with AV drift values
  6647. * @port: AFE port ID
  6648. *
  6649. * Returns 0 on success or error on failure
  6650. */
  6651. int afe_get_av_dev_drift(struct afe_param_id_dev_timing_stats *timing_stats,
  6652. u16 port)
  6653. {
  6654. struct param_hdr_v3 param_hdr;
  6655. int ret = -EINVAL;
  6656. if (!timing_stats) {
  6657. pr_err("%s: Invalid params\n", __func__);
  6658. goto exit;
  6659. }
  6660. memset(&param_hdr, 0, sizeof(param_hdr));
  6661. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6662. param_hdr.instance_id = INSTANCE_ID_0;
  6663. param_hdr.param_id = AFE_PARAM_ID_DEV_TIMING_STATS;
  6664. param_hdr.param_size = sizeof(struct afe_param_id_dev_timing_stats);
  6665. ret = q6afe_get_params(port, NULL, &param_hdr);
  6666. if (ret < 0) {
  6667. pr_err("%s: get param port 0x%x param id[0x%x] failed %d\n",
  6668. __func__, port, param_hdr.param_id, ret);
  6669. goto exit;
  6670. }
  6671. memcpy(timing_stats, &this_afe.av_dev_drift_resp.timing_stats,
  6672. param_hdr.param_size);
  6673. ret = 0;
  6674. exit:
  6675. return ret;
  6676. }
  6677. EXPORT_SYMBOL(afe_get_av_dev_drift);
  6678. /**
  6679. * afe_get_doa_tracking_mon -
  6680. * command to retrieve doa tracking monitor data
  6681. *
  6682. * @port: AFE port ID
  6683. * @doa_tracking_data: param to be updated with doa tracking data
  6684. *
  6685. * Returns 0 on success or error on failure
  6686. */
  6687. int afe_get_doa_tracking_mon(u16 port,
  6688. struct doa_tracking_mon_param *doa_tracking_data)
  6689. {
  6690. struct param_hdr_v3 param_hdr;
  6691. int ret = -EINVAL, i = 0;
  6692. if (!doa_tracking_data) {
  6693. pr_err("%s: Invalid params\n", __func__);
  6694. goto exit;
  6695. }
  6696. memset(&param_hdr, 0, sizeof(param_hdr));
  6697. param_hdr.module_id = AUDPROC_MODULE_ID_FFNS;
  6698. param_hdr.instance_id = INSTANCE_ID_0;
  6699. param_hdr.param_id = AUDPROC_PARAM_ID_FFV_DOA_TRACKING_MONITOR;
  6700. param_hdr.param_size = sizeof(struct doa_tracking_mon_param);
  6701. ret = q6afe_get_params(port, NULL, &param_hdr);
  6702. if (ret < 0) {
  6703. pr_err("%s: get param port 0x%x param id[0x%x] failed %d\n",
  6704. __func__, port, param_hdr.param_id, ret);
  6705. goto exit;
  6706. }
  6707. memcpy(doa_tracking_data, &this_afe.doa_tracking_mon_resp.doa,
  6708. param_hdr.param_size);
  6709. for (i = 0; i < MAX_DOA_TRACKING_ANGLES; i++) {
  6710. pr_debug("%s: target angle[%d] = %d\n",
  6711. __func__, i, doa_tracking_data->target_angle_L16[i]);
  6712. pr_debug("%s: interference angle[%d] = %d\n",
  6713. __func__, i, doa_tracking_data->interf_angle_L16[i]);
  6714. }
  6715. exit:
  6716. return ret;
  6717. }
  6718. EXPORT_SYMBOL(afe_get_doa_tracking_mon);
  6719. int afe_spk_prot_get_calib_data(struct afe_spkr_prot_get_vi_calib *calib_resp)
  6720. {
  6721. struct param_hdr_v3 param_hdr;
  6722. int port = SLIMBUS_4_TX;
  6723. int ret = -EINVAL;
  6724. if (!calib_resp) {
  6725. pr_err("%s: Invalid params\n", __func__);
  6726. goto fail_cmd;
  6727. }
  6728. if (this_afe.vi_tx_port != -1)
  6729. port = this_afe.vi_tx_port;
  6730. memset(&param_hdr, 0, sizeof(param_hdr));
  6731. param_hdr.module_id = AFE_MODULE_FB_SPKR_PROT_VI_PROC_V2;
  6732. param_hdr.instance_id = INSTANCE_ID_0;
  6733. param_hdr.param_id = AFE_PARAM_ID_CALIB_RES_CFG_V2;
  6734. param_hdr.param_size = sizeof(struct afe_spkr_prot_get_vi_calib);
  6735. ret = q6afe_get_params(port, NULL, &param_hdr);
  6736. if (ret < 0) {
  6737. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  6738. __func__, port, param_hdr.param_id, ret);
  6739. goto fail_cmd;
  6740. }
  6741. memcpy(&calib_resp->res_cfg, &this_afe.calib_data.res_cfg,
  6742. sizeof(this_afe.calib_data.res_cfg));
  6743. pr_info("%s: state %s resistance %d %d\n", __func__,
  6744. fbsp_state[calib_resp->res_cfg.th_vi_ca_state],
  6745. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_1],
  6746. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_2]);
  6747. ret = 0;
  6748. fail_cmd:
  6749. return ret;
  6750. }
  6751. /**
  6752. * afe_spk_prot_feed_back_cfg -
  6753. * command to setup spk protection feedback config
  6754. *
  6755. * @src_port: source port id
  6756. * @dst_port: destination port id
  6757. * @l_ch: left speaker active or not
  6758. * @r_ch: right speaker active or not
  6759. * @enable: flag to enable or disable
  6760. *
  6761. * Returns 0 on success or error on failure
  6762. */
  6763. int afe_spk_prot_feed_back_cfg(int src_port, int dst_port,
  6764. int l_ch, int r_ch, u32 enable)
  6765. {
  6766. int ret = -EINVAL;
  6767. union afe_spkr_prot_config prot_config;
  6768. int index = 0;
  6769. if (!enable) {
  6770. pr_debug("%s: Disable Feedback tx path", __func__);
  6771. this_afe.vi_tx_port = -1;
  6772. this_afe.vi_rx_port = -1;
  6773. return 0;
  6774. }
  6775. if ((q6audio_validate_port(src_port) < 0) ||
  6776. (q6audio_validate_port(dst_port) < 0)) {
  6777. pr_err("%s: invalid ports src 0x%x dst 0x%x",
  6778. __func__, src_port, dst_port);
  6779. goto fail_cmd;
  6780. }
  6781. if (!l_ch && !r_ch) {
  6782. pr_err("%s: error ch values zero\n", __func__);
  6783. goto fail_cmd;
  6784. }
  6785. pr_debug("%s: src_port 0x%x dst_port 0x%x l_ch %d r_ch %d\n",
  6786. __func__, src_port, dst_port, l_ch, r_ch);
  6787. memset(&prot_config, 0, sizeof(prot_config));
  6788. prot_config.feedback_path_cfg.dst_portid =
  6789. q6audio_get_port_id(dst_port);
  6790. if (l_ch) {
  6791. prot_config.feedback_path_cfg.chan_info[index++] = 1;
  6792. prot_config.feedback_path_cfg.chan_info[index++] = 2;
  6793. }
  6794. if (r_ch) {
  6795. prot_config.feedback_path_cfg.chan_info[index++] = 3;
  6796. prot_config.feedback_path_cfg.chan_info[index++] = 4;
  6797. }
  6798. prot_config.feedback_path_cfg.num_channels = index;
  6799. pr_debug("%s no of channels: %d\n", __func__, index);
  6800. prot_config.feedback_path_cfg.minor_version = 1;
  6801. ret = afe_spk_prot_prepare(src_port, dst_port,
  6802. AFE_PARAM_ID_FEEDBACK_PATH_CFG, &prot_config);
  6803. fail_cmd:
  6804. return ret;
  6805. }
  6806. EXPORT_SYMBOL(afe_spk_prot_feed_back_cfg);
  6807. static int get_cal_type_index(int32_t cal_type)
  6808. {
  6809. int ret = -EINVAL;
  6810. switch (cal_type) {
  6811. case AFE_COMMON_RX_CAL_TYPE:
  6812. ret = AFE_COMMON_RX_CAL;
  6813. break;
  6814. case AFE_COMMON_TX_CAL_TYPE:
  6815. ret = AFE_COMMON_TX_CAL;
  6816. break;
  6817. case AFE_LSM_TX_CAL_TYPE:
  6818. ret = AFE_LSM_TX_CAL;
  6819. break;
  6820. case AFE_AANC_CAL_TYPE:
  6821. ret = AFE_AANC_CAL;
  6822. break;
  6823. case AFE_HW_DELAY_CAL_TYPE:
  6824. ret = AFE_HW_DELAY_CAL;
  6825. break;
  6826. case AFE_FB_SPKR_PROT_CAL_TYPE:
  6827. ret = AFE_FB_SPKR_PROT_CAL;
  6828. break;
  6829. case AFE_SIDETONE_CAL_TYPE:
  6830. ret = AFE_SIDETONE_CAL;
  6831. break;
  6832. case AFE_SIDETONE_IIR_CAL_TYPE:
  6833. ret = AFE_SIDETONE_IIR_CAL;
  6834. break;
  6835. case AFE_TOPOLOGY_CAL_TYPE:
  6836. ret = AFE_TOPOLOGY_CAL;
  6837. break;
  6838. case AFE_LSM_TOPOLOGY_CAL_TYPE:
  6839. ret = AFE_LSM_TOPOLOGY_CAL;
  6840. break;
  6841. case AFE_CUST_TOPOLOGY_CAL_TYPE:
  6842. ret = AFE_CUST_TOPOLOGY_CAL;
  6843. break;
  6844. default:
  6845. pr_err("%s: invalid cal type %d!\n", __func__, cal_type);
  6846. }
  6847. return ret;
  6848. }
  6849. int afe_alloc_cal(int32_t cal_type, size_t data_size,
  6850. void *data)
  6851. {
  6852. int ret = 0;
  6853. int cal_index;
  6854. cal_index = get_cal_type_index(cal_type);
  6855. pr_debug("%s: cal_type = %d cal_index = %d\n",
  6856. __func__, cal_type, cal_index);
  6857. if (cal_index < 0) {
  6858. pr_err("%s: could not get cal index %d!\n",
  6859. __func__, cal_index);
  6860. ret = -EINVAL;
  6861. goto done;
  6862. }
  6863. mutex_lock(&this_afe.afe_cmd_lock);
  6864. ret = cal_utils_alloc_cal(data_size, data,
  6865. this_afe.cal_data[cal_index], 0, NULL);
  6866. if (ret < 0) {
  6867. pr_err("%s: cal_utils_alloc_block failed, ret = %d, cal type = %d!\n",
  6868. __func__, ret, cal_type);
  6869. ret = -EINVAL;
  6870. mutex_unlock(&this_afe.afe_cmd_lock);
  6871. goto done;
  6872. }
  6873. mutex_unlock(&this_afe.afe_cmd_lock);
  6874. done:
  6875. return ret;
  6876. }
  6877. static int afe_dealloc_cal(int32_t cal_type, size_t data_size,
  6878. void *data)
  6879. {
  6880. int ret = 0;
  6881. int cal_index;
  6882. pr_debug("%s:\n", __func__);
  6883. cal_index = get_cal_type_index(cal_type);
  6884. if (cal_index < 0) {
  6885. pr_err("%s: could not get cal index %d!\n",
  6886. __func__, cal_index);
  6887. ret = -EINVAL;
  6888. goto done;
  6889. }
  6890. ret = cal_utils_dealloc_cal(data_size, data,
  6891. this_afe.cal_data[cal_index]);
  6892. if (ret < 0) {
  6893. pr_err("%s: cal_utils_dealloc_block failed, ret = %d, cal type = %d!\n",
  6894. __func__, ret, cal_type);
  6895. ret = -EINVAL;
  6896. goto done;
  6897. }
  6898. done:
  6899. return ret;
  6900. }
  6901. static int afe_set_cal(int32_t cal_type, size_t data_size,
  6902. void *data)
  6903. {
  6904. int ret = 0;
  6905. int cal_index;
  6906. pr_debug("%s:\n", __func__);
  6907. cal_index = get_cal_type_index(cal_type);
  6908. if (cal_index < 0) {
  6909. pr_err("%s: could not get cal index %d!\n",
  6910. __func__, cal_index);
  6911. ret = -EINVAL;
  6912. goto done;
  6913. }
  6914. ret = cal_utils_set_cal(data_size, data,
  6915. this_afe.cal_data[cal_index], 0, NULL);
  6916. if (ret < 0) {
  6917. pr_err("%s: cal_utils_set_cal failed, ret = %d, cal type = %d!\n",
  6918. __func__, ret, cal_type);
  6919. ret = -EINVAL;
  6920. goto done;
  6921. }
  6922. if (cal_index == AFE_CUST_TOPOLOGY_CAL) {
  6923. mutex_lock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  6924. this_afe.set_custom_topology = 1;
  6925. pr_debug("%s:[AFE_CUSTOM_TOPOLOGY] ret = %d, cal type = %d!\n",
  6926. __func__, ret, cal_type);
  6927. mutex_unlock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  6928. }
  6929. done:
  6930. return ret;
  6931. }
  6932. static struct cal_block_data *afe_find_hw_delay_by_path(
  6933. struct cal_type_data *cal_type, int path)
  6934. {
  6935. struct list_head *ptr, *next;
  6936. struct cal_block_data *cal_block = NULL;
  6937. pr_debug("%s:\n", __func__);
  6938. list_for_each_safe(ptr, next,
  6939. &cal_type->cal_blocks) {
  6940. cal_block = list_entry(ptr,
  6941. struct cal_block_data, list);
  6942. if (cal_utils_is_cal_stale(cal_block))
  6943. continue;
  6944. if (((struct audio_cal_info_hw_delay *)cal_block->cal_info)
  6945. ->path == path) {
  6946. return cal_block;
  6947. }
  6948. }
  6949. return NULL;
  6950. }
  6951. static int afe_get_cal_hw_delay(int32_t path,
  6952. struct audio_cal_hw_delay_entry *entry)
  6953. {
  6954. int ret = 0;
  6955. int i;
  6956. struct cal_block_data *cal_block = NULL;
  6957. struct audio_cal_hw_delay_data *hw_delay_info = NULL;
  6958. pr_debug("%s:\n", __func__);
  6959. if (this_afe.cal_data[AFE_HW_DELAY_CAL] == NULL) {
  6960. pr_err("%s: AFE_HW_DELAY_CAL not initialized\n", __func__);
  6961. ret = -EINVAL;
  6962. goto done;
  6963. }
  6964. if (entry == NULL) {
  6965. pr_err("%s: entry is NULL\n", __func__);
  6966. ret = -EINVAL;
  6967. goto done;
  6968. }
  6969. if ((path >= MAX_PATH_TYPE) || (path < 0)) {
  6970. pr_err("%s: bad path: %d\n",
  6971. __func__, path);
  6972. ret = -EINVAL;
  6973. goto done;
  6974. }
  6975. mutex_lock(&this_afe.cal_data[AFE_HW_DELAY_CAL]->lock);
  6976. cal_block = afe_find_hw_delay_by_path(
  6977. this_afe.cal_data[AFE_HW_DELAY_CAL], path);
  6978. if (cal_block == NULL)
  6979. goto unlock;
  6980. hw_delay_info = &((struct audio_cal_info_hw_delay *)
  6981. cal_block->cal_info)->data;
  6982. if (hw_delay_info->num_entries > MAX_HW_DELAY_ENTRIES) {
  6983. pr_err("%s: invalid num entries: %d\n",
  6984. __func__, hw_delay_info->num_entries);
  6985. ret = -EINVAL;
  6986. goto unlock;
  6987. }
  6988. for (i = 0; i < hw_delay_info->num_entries; i++) {
  6989. if (hw_delay_info->entry[i].sample_rate ==
  6990. entry->sample_rate) {
  6991. entry->delay_usec = hw_delay_info->entry[i].delay_usec;
  6992. break;
  6993. }
  6994. }
  6995. if (i == hw_delay_info->num_entries) {
  6996. pr_err("%s: Unable to find delay for sample rate %d\n",
  6997. __func__, entry->sample_rate);
  6998. ret = -EFAULT;
  6999. goto unlock;
  7000. }
  7001. cal_utils_mark_cal_used(cal_block);
  7002. pr_debug("%s: Path = %d samplerate = %u usec = %u status %d\n",
  7003. __func__, path, entry->sample_rate, entry->delay_usec, ret);
  7004. unlock:
  7005. mutex_unlock(&this_afe.cal_data[AFE_HW_DELAY_CAL]->lock);
  7006. done:
  7007. return ret;
  7008. }
  7009. static int afe_set_cal_sp_th_vi_ftm_cfg(int32_t cal_type, size_t data_size,
  7010. void *data)
  7011. {
  7012. int ret = 0;
  7013. struct audio_cal_type_sp_th_vi_ftm_cfg *cal_data = data;
  7014. if (this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  7015. cal_data == NULL ||
  7016. data_size != sizeof(*cal_data))
  7017. goto done;
  7018. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  7019. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  7020. memcpy(&this_afe.th_ftm_cfg, &cal_data->cal_info,
  7021. sizeof(this_afe.th_ftm_cfg));
  7022. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  7023. done:
  7024. return ret;
  7025. }
  7026. static int afe_set_cal_sp_ex_vi_ftm_cfg(int32_t cal_type, size_t data_size,
  7027. void *data)
  7028. {
  7029. int ret = 0;
  7030. struct audio_cal_type_sp_ex_vi_ftm_cfg *cal_data = data;
  7031. if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL ||
  7032. cal_data == NULL ||
  7033. data_size != sizeof(*cal_data))
  7034. goto done;
  7035. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  7036. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  7037. memcpy(&this_afe.ex_ftm_cfg, &cal_data->cal_info,
  7038. sizeof(this_afe.ex_ftm_cfg));
  7039. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  7040. done:
  7041. return ret;
  7042. }
  7043. static int afe_set_cal_fb_spkr_prot(int32_t cal_type, size_t data_size,
  7044. void *data)
  7045. {
  7046. int ret = 0;
  7047. struct audio_cal_type_fb_spk_prot_cfg *cal_data = data;
  7048. pr_debug("%s:\n", __func__);
  7049. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  7050. goto done;
  7051. if (cal_data == NULL)
  7052. goto done;
  7053. if (data_size != sizeof(*cal_data))
  7054. goto done;
  7055. if (cal_data->cal_info.mode == MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS)
  7056. __pm_wakeup_event(&wl.ws, jiffies_to_msecs(WAKELOCK_TIMEOUT));
  7057. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  7058. memcpy(&this_afe.prot_cfg, &cal_data->cal_info,
  7059. sizeof(this_afe.prot_cfg));
  7060. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  7061. done:
  7062. return ret;
  7063. }
  7064. static int afe_get_cal_sp_th_vi_ftm_param(int32_t cal_type, size_t data_size,
  7065. void *data)
  7066. {
  7067. int i, ret = 0;
  7068. struct audio_cal_type_sp_th_vi_param *cal_data = data;
  7069. struct afe_sp_th_vi_get_param th_vi;
  7070. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  7071. if (this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  7072. cal_data == NULL ||
  7073. data_size != sizeof(*cal_data))
  7074. goto done;
  7075. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  7076. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  7077. cal_data->cal_info.status[i] = -EINVAL;
  7078. cal_data->cal_info.r_dc_q24[i] = -1;
  7079. cal_data->cal_info.temp_q22[i] = -1;
  7080. }
  7081. if (!afe_get_sp_th_vi_ftm_data(&th_vi)) {
  7082. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  7083. pr_debug("%s: ftm param status = %d\n",
  7084. __func__, th_vi.param.status[i]);
  7085. if (th_vi.param.status[i] == FBSP_IN_PROGRESS) {
  7086. cal_data->cal_info.status[i] = -EAGAIN;
  7087. } else if (th_vi.param.status[i] == FBSP_SUCCESS) {
  7088. cal_data->cal_info.status[i] = 0;
  7089. cal_data->cal_info.r_dc_q24[i] =
  7090. th_vi.param.dc_res_q24[i];
  7091. cal_data->cal_info.temp_q22[i] =
  7092. th_vi.param.temp_q22[i];
  7093. }
  7094. }
  7095. }
  7096. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  7097. done:
  7098. return ret;
  7099. }
  7100. static int afe_get_cal_sp_ex_vi_ftm_param(int32_t cal_type, size_t data_size,
  7101. void *data)
  7102. {
  7103. int i, ret = 0;
  7104. struct audio_cal_type_sp_ex_vi_param *cal_data = data;
  7105. struct afe_sp_ex_vi_get_param ex_vi;
  7106. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  7107. if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL ||
  7108. cal_data == NULL ||
  7109. data_size != sizeof(*cal_data))
  7110. goto done;
  7111. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  7112. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  7113. cal_data->cal_info.status[i] = -EINVAL;
  7114. cal_data->cal_info.freq_q20[i] = -1;
  7115. cal_data->cal_info.resis_q24[i] = -1;
  7116. cal_data->cal_info.qmct_q24[i] = -1;
  7117. }
  7118. if (!afe_get_sp_ex_vi_ftm_data(&ex_vi)) {
  7119. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  7120. pr_debug("%s: ftm param status = %d\n",
  7121. __func__, ex_vi.param.status[i]);
  7122. if (ex_vi.param.status[i] == FBSP_IN_PROGRESS) {
  7123. cal_data->cal_info.status[i] = -EAGAIN;
  7124. } else if (ex_vi.param.status[i] == FBSP_SUCCESS) {
  7125. cal_data->cal_info.status[i] = 0;
  7126. cal_data->cal_info.freq_q20[i] =
  7127. ex_vi.param.freq_q20[i];
  7128. cal_data->cal_info.resis_q24[i] =
  7129. ex_vi.param.resis_q24[i];
  7130. cal_data->cal_info.qmct_q24[i] =
  7131. ex_vi.param.qmct_q24[i];
  7132. }
  7133. }
  7134. }
  7135. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  7136. done:
  7137. return ret;
  7138. }
  7139. static int afe_get_cal_fb_spkr_prot(int32_t cal_type, size_t data_size,
  7140. void *data)
  7141. {
  7142. int ret = 0;
  7143. struct audio_cal_type_fb_spk_prot_status *cal_data = data;
  7144. struct afe_spkr_prot_get_vi_calib calib_resp;
  7145. pr_debug("%s:\n", __func__);
  7146. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  7147. goto done;
  7148. if (cal_data == NULL)
  7149. goto done;
  7150. if (data_size != sizeof(*cal_data))
  7151. goto done;
  7152. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  7153. if (this_afe.prot_cfg.mode == MSM_SPKR_PROT_CALIBRATED) {
  7154. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  7155. this_afe.prot_cfg.r0[SP_V2_SPKR_1];
  7156. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  7157. this_afe.prot_cfg.r0[SP_V2_SPKR_2];
  7158. cal_data->cal_info.status = 0;
  7159. } else if (this_afe.prot_cfg.mode ==
  7160. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS) {
  7161. /*Call AFE to query the status*/
  7162. cal_data->cal_info.status = -EINVAL;
  7163. cal_data->cal_info.r0[SP_V2_SPKR_1] = -1;
  7164. cal_data->cal_info.r0[SP_V2_SPKR_2] = -1;
  7165. if (!afe_spk_prot_get_calib_data(&calib_resp)) {
  7166. if (calib_resp.res_cfg.th_vi_ca_state ==
  7167. FBSP_IN_PROGRESS)
  7168. cal_data->cal_info.status = -EAGAIN;
  7169. else if (calib_resp.res_cfg.th_vi_ca_state ==
  7170. FBSP_SUCCESS) {
  7171. cal_data->cal_info.status = 0;
  7172. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  7173. calib_resp.res_cfg.r0_cali_q24[SP_V2_SPKR_1];
  7174. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  7175. calib_resp.res_cfg.r0_cali_q24[SP_V2_SPKR_2];
  7176. }
  7177. }
  7178. if (!cal_data->cal_info.status) {
  7179. this_afe.prot_cfg.mode =
  7180. MSM_SPKR_PROT_CALIBRATED;
  7181. this_afe.prot_cfg.r0[SP_V2_SPKR_1] =
  7182. cal_data->cal_info.r0[SP_V2_SPKR_1];
  7183. this_afe.prot_cfg.r0[SP_V2_SPKR_2] =
  7184. cal_data->cal_info.r0[SP_V2_SPKR_2];
  7185. }
  7186. } else {
  7187. /*Indicates calibration data is invalid*/
  7188. cal_data->cal_info.status = -EINVAL;
  7189. cal_data->cal_info.r0[SP_V2_SPKR_1] = -1;
  7190. cal_data->cal_info.r0[SP_V2_SPKR_2] = -1;
  7191. }
  7192. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  7193. __pm_relax(&wl.ws);
  7194. done:
  7195. return ret;
  7196. }
  7197. static int afe_map_cal_data(int32_t cal_type,
  7198. struct cal_block_data *cal_block)
  7199. {
  7200. int ret = 0;
  7201. int cal_index;
  7202. pr_debug("%s:\n", __func__);
  7203. cal_index = get_cal_type_index(cal_type);
  7204. if (cal_index < 0) {
  7205. pr_err("%s: could not get cal index %d!\n",
  7206. __func__, cal_index);
  7207. ret = -EINVAL;
  7208. goto done;
  7209. }
  7210. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  7211. ret = afe_cmd_memory_map(cal_block->cal_data.paddr,
  7212. cal_block->map_data.map_size);
  7213. atomic_set(&this_afe.mem_map_cal_index, -1);
  7214. if (ret < 0) {
  7215. pr_err("%s: mmap did not work! size = %zd ret %d\n",
  7216. __func__,
  7217. cal_block->map_data.map_size, ret);
  7218. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %zd\n",
  7219. __func__,
  7220. &cal_block->cal_data.paddr,
  7221. cal_block->map_data.map_size);
  7222. goto done;
  7223. }
  7224. cal_block->map_data.q6map_handle = atomic_read(&this_afe.
  7225. mem_map_cal_handles[cal_index]);
  7226. done:
  7227. return ret;
  7228. }
  7229. static int afe_unmap_cal_data(int32_t cal_type,
  7230. struct cal_block_data *cal_block)
  7231. {
  7232. int ret = 0;
  7233. int cal_index;
  7234. pr_debug("%s:\n", __func__);
  7235. cal_index = get_cal_type_index(cal_type);
  7236. if (cal_index < 0) {
  7237. pr_err("%s: could not get cal index %d!\n",
  7238. __func__, cal_index);
  7239. ret = -EINVAL;
  7240. goto done;
  7241. }
  7242. if (cal_block == NULL) {
  7243. pr_err("%s: Cal block is NULL!\n",
  7244. __func__);
  7245. goto done;
  7246. }
  7247. if (cal_block->map_data.q6map_handle == 0) {
  7248. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  7249. __func__);
  7250. goto done;
  7251. }
  7252. atomic_set(&this_afe.mem_map_cal_handles[cal_index],
  7253. cal_block->map_data.q6map_handle);
  7254. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  7255. ret = afe_cmd_memory_unmap_nowait(
  7256. cal_block->map_data.q6map_handle);
  7257. atomic_set(&this_afe.mem_map_cal_index, -1);
  7258. if (ret < 0) {
  7259. pr_err("%s: unmap did not work! cal_type %i ret %d\n",
  7260. __func__, cal_index, ret);
  7261. }
  7262. cal_block->map_data.q6map_handle = 0;
  7263. done:
  7264. return ret;
  7265. }
  7266. static void afe_delete_cal_data(void)
  7267. {
  7268. pr_debug("%s:\n", __func__);
  7269. cal_utils_destroy_cal_types(MAX_AFE_CAL_TYPES, this_afe.cal_data);
  7270. }
  7271. static int afe_init_cal_data(void)
  7272. {
  7273. int ret = 0;
  7274. struct cal_type_info cal_type_info[] = {
  7275. {{AFE_COMMON_RX_CAL_TYPE,
  7276. {afe_alloc_cal, afe_dealloc_cal, NULL,
  7277. afe_set_cal, NULL, NULL} },
  7278. {afe_map_cal_data, afe_unmap_cal_data,
  7279. cal_utils_match_buf_num} },
  7280. {{AFE_COMMON_TX_CAL_TYPE,
  7281. {afe_alloc_cal, afe_dealloc_cal, NULL,
  7282. afe_set_cal, NULL, NULL} },
  7283. {afe_map_cal_data, afe_unmap_cal_data,
  7284. cal_utils_match_buf_num} },
  7285. {{AFE_LSM_TX_CAL_TYPE,
  7286. {afe_alloc_cal, afe_dealloc_cal, NULL,
  7287. afe_set_cal, NULL, NULL} },
  7288. {afe_map_cal_data, afe_unmap_cal_data,
  7289. cal_utils_match_buf_num} },
  7290. {{AFE_AANC_CAL_TYPE,
  7291. {afe_alloc_cal, afe_dealloc_cal, NULL,
  7292. afe_set_cal, NULL, NULL} },
  7293. {afe_map_cal_data, afe_unmap_cal_data,
  7294. cal_utils_match_buf_num} },
  7295. {{AFE_FB_SPKR_PROT_CAL_TYPE,
  7296. {NULL, NULL, NULL, afe_set_cal_fb_spkr_prot,
  7297. afe_get_cal_fb_spkr_prot, NULL} },
  7298. {NULL, NULL, cal_utils_match_buf_num} },
  7299. {{AFE_HW_DELAY_CAL_TYPE,
  7300. {NULL, NULL, NULL,
  7301. afe_set_cal, NULL, NULL} },
  7302. {NULL, NULL, cal_utils_match_buf_num} },
  7303. {{AFE_SIDETONE_CAL_TYPE,
  7304. {NULL, NULL, NULL,
  7305. afe_set_cal, NULL, NULL} },
  7306. {NULL, NULL, cal_utils_match_buf_num} },
  7307. {{AFE_SIDETONE_IIR_CAL_TYPE,
  7308. {NULL, NULL, NULL,
  7309. afe_set_cal, NULL, NULL} },
  7310. {NULL, NULL, cal_utils_match_buf_num} },
  7311. {{AFE_TOPOLOGY_CAL_TYPE,
  7312. {NULL, NULL, NULL,
  7313. afe_set_cal, NULL, NULL} },
  7314. {NULL, NULL,
  7315. cal_utils_match_buf_num} },
  7316. {{AFE_LSM_TOPOLOGY_CAL_TYPE,
  7317. {NULL, NULL, NULL,
  7318. afe_set_cal, NULL, NULL} },
  7319. {NULL, NULL,
  7320. cal_utils_match_buf_num} },
  7321. {{AFE_CUST_TOPOLOGY_CAL_TYPE,
  7322. {afe_alloc_cal, afe_dealloc_cal, NULL,
  7323. afe_set_cal, NULL, NULL} },
  7324. {afe_map_cal_data, afe_unmap_cal_data,
  7325. cal_utils_match_buf_num} },
  7326. {{AFE_FB_SPKR_PROT_TH_VI_CAL_TYPE,
  7327. {NULL, NULL, NULL, afe_set_cal_sp_th_vi_ftm_cfg,
  7328. afe_get_cal_sp_th_vi_ftm_param, NULL} },
  7329. {NULL, NULL, cal_utils_match_buf_num} },
  7330. {{AFE_FB_SPKR_PROT_EX_VI_CAL_TYPE,
  7331. {NULL, NULL, NULL, afe_set_cal_sp_ex_vi_ftm_cfg,
  7332. afe_get_cal_sp_ex_vi_ftm_param, NULL} },
  7333. {NULL, NULL, cal_utils_match_buf_num} },
  7334. };
  7335. pr_debug("%s:\n", __func__);
  7336. ret = cal_utils_create_cal_types(MAX_AFE_CAL_TYPES, this_afe.cal_data,
  7337. cal_type_info);
  7338. if (ret < 0) {
  7339. pr_err("%s: could not create cal type! %d\n",
  7340. __func__, ret);
  7341. ret = -EINVAL;
  7342. goto err;
  7343. }
  7344. return ret;
  7345. err:
  7346. afe_delete_cal_data();
  7347. return ret;
  7348. }
  7349. int afe_map_rtac_block(struct rtac_cal_block_data *cal_block)
  7350. {
  7351. int result = 0;
  7352. pr_debug("%s:\n", __func__);
  7353. if (cal_block == NULL) {
  7354. pr_err("%s: cal_block is NULL!\n",
  7355. __func__);
  7356. result = -EINVAL;
  7357. goto done;
  7358. }
  7359. if (cal_block->cal_data.paddr == 0) {
  7360. pr_debug("%s: No address to map!\n",
  7361. __func__);
  7362. result = -EINVAL;
  7363. goto done;
  7364. }
  7365. if (cal_block->map_data.map_size == 0) {
  7366. pr_debug("%s: map size is 0!\n",
  7367. __func__);
  7368. result = -EINVAL;
  7369. goto done;
  7370. }
  7371. result = afe_cmd_memory_map(cal_block->cal_data.paddr,
  7372. cal_block->map_data.map_size);
  7373. if (result < 0) {
  7374. pr_err("%s: afe_cmd_memory_map failed for addr = 0x%pK, size = %d, err %d\n",
  7375. __func__, &cal_block->cal_data.paddr,
  7376. cal_block->map_data.map_size, result);
  7377. return result;
  7378. }
  7379. cal_block->map_data.map_handle = this_afe.mmap_handle;
  7380. done:
  7381. return result;
  7382. }
  7383. int afe_unmap_rtac_block(uint32_t *mem_map_handle)
  7384. {
  7385. int result = 0;
  7386. pr_debug("%s:\n", __func__);
  7387. if (mem_map_handle == NULL) {
  7388. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  7389. __func__);
  7390. goto done;
  7391. }
  7392. if (*mem_map_handle == 0) {
  7393. pr_debug("%s: Map handle is 0, nothing to unmap\n",
  7394. __func__);
  7395. goto done;
  7396. }
  7397. result = afe_cmd_memory_unmap(*mem_map_handle);
  7398. if (result) {
  7399. pr_err("%s: AFE memory unmap failed %d, handle 0x%x\n",
  7400. __func__, result, *mem_map_handle);
  7401. goto done;
  7402. } else {
  7403. *mem_map_handle = 0;
  7404. }
  7405. done:
  7406. return result;
  7407. }
  7408. static void afe_release_uevent_data(struct kobject *kobj)
  7409. {
  7410. struct audio_uevent_data *data = container_of(kobj,
  7411. struct audio_uevent_data, kobj);
  7412. kfree(data);
  7413. }
  7414. int __init afe_init(void)
  7415. {
  7416. int i = 0, ret;
  7417. atomic_set(&this_afe.state, 0);
  7418. atomic_set(&this_afe.status, 0);
  7419. atomic_set(&this_afe.mem_map_cal_index, -1);
  7420. this_afe.apr = NULL;
  7421. this_afe.dtmf_gen_rx_portid = -1;
  7422. this_afe.mmap_handle = 0;
  7423. this_afe.vi_tx_port = -1;
  7424. this_afe.vi_rx_port = -1;
  7425. this_afe.prot_cfg.mode = MSM_SPKR_PROT_DISABLED;
  7426. this_afe.th_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  7427. this_afe.ex_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  7428. mutex_init(&this_afe.afe_cmd_lock);
  7429. for (i = 0; i < AFE_MAX_PORTS; i++) {
  7430. this_afe.afe_cal_mode[i] = AFE_CAL_MODE_DEFAULT;
  7431. this_afe.afe_sample_rates[i] = 0;
  7432. this_afe.dev_acdb_id[i] = 0;
  7433. this_afe.island_mode[i] = 0;
  7434. this_afe.vad_cfg[i].is_enable = 0;
  7435. this_afe.vad_cfg[i].pre_roll = 0;
  7436. init_waitqueue_head(&this_afe.wait[i]);
  7437. }
  7438. init_waitqueue_head(&this_afe.wait_wakeup);
  7439. wakeup_source_init(&wl.ws, "spkr-prot");
  7440. ret = afe_init_cal_data();
  7441. if (ret)
  7442. pr_err("%s: could not init cal data! %d\n", __func__, ret);
  7443. config_debug_fs_init();
  7444. this_afe.uevent_data = kzalloc(sizeof(*(this_afe.uevent_data)), GFP_KERNEL);
  7445. if (!this_afe.uevent_data)
  7446. return -ENOMEM;
  7447. /*
  7448. * Set release function to cleanup memory related to kobject
  7449. * before initializing the kobject.
  7450. */
  7451. this_afe.uevent_data->ktype.release = afe_release_uevent_data;
  7452. q6core_init_uevent_data(this_afe.uevent_data, "q6afe_uevent");
  7453. INIT_WORK(&this_afe.afe_dc_work, afe_notify_dc_presence_work_fn);
  7454. INIT_WORK(&this_afe.afe_spdif_work,
  7455. afe_notify_spdif_fmt_update_work_fn);
  7456. this_afe.event_notifier.notifier_call = afe_aud_event_notify;
  7457. msm_aud_evt_blocking_register_client(&this_afe.event_notifier);
  7458. return 0;
  7459. }
  7460. void afe_exit(void)
  7461. {
  7462. if (this_afe.apr) {
  7463. apr_reset(this_afe.apr);
  7464. atomic_set(&this_afe.state, 0);
  7465. this_afe.apr = NULL;
  7466. rtac_set_afe_handle(this_afe.apr);
  7467. }
  7468. q6core_destroy_uevent_data(this_afe.uevent_data);
  7469. afe_delete_cal_data();
  7470. config_debug_fs_exit();
  7471. mutex_destroy(&this_afe.afe_cmd_lock);
  7472. wakeup_source_trash(&wl.ws);
  7473. }
  7474. /*
  7475. * afe_cal_init_hwdep -
  7476. * Initiliaze AFE HW dependent Node
  7477. *
  7478. * @card: pointer to sound card
  7479. *
  7480. */
  7481. int afe_cal_init_hwdep(void *card)
  7482. {
  7483. int ret = 0;
  7484. this_afe.fw_data = kzalloc(sizeof(*(this_afe.fw_data)),
  7485. GFP_KERNEL);
  7486. if (!this_afe.fw_data)
  7487. return -ENOMEM;
  7488. set_bit(Q6AFE_VAD_CORE_CAL, this_afe.fw_data->cal_bit);
  7489. ret = q6afe_cal_create_hwdep(this_afe.fw_data, Q6AFE_HWDEP_NODE, card);
  7490. if (ret < 0) {
  7491. pr_err("%s: couldn't create hwdep for AFE %d\n", __func__, ret);
  7492. return ret;
  7493. }
  7494. return ret;
  7495. }
  7496. EXPORT_SYMBOL(afe_cal_init_hwdep);