q6afe.c 237 KB

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