q6afe.c 223 KB

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