q6afe.c 260 KB

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