q6afe.c 237 KB

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