q6afe.c 214 KB

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