q6afe.c 202 KB

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