q6afe.c 209 KB

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