q6afe.c 228 KB

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