q6afe.c 205 KB

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