q6afe.c 237 KB

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