q6afe.c 198 KB

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