q6afe.c 212 KB

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