q6afe.c 229 KB

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