q6afe.c 214 KB

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