q6afe.c 258 KB

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