q6afe.c 232 KB

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