q6afe.c 236 KB

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