q6afe.c 203 KB

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