q6afe.c 202 KB

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