q6afe.c 213 KB

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