q6afe.c 214 KB

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