q6afe.c 212 KB

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