q6afe.c 316 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/slab.h>
  5. #include <linux/debugfs.h>
  6. #include <linux/kernel.h>
  7. #include <linux/kthread.h>
  8. #include <linux/uaccess.h>
  9. #include <linux/wait.h>
  10. #include <linux/jiffies.h>
  11. #include <linux/sched.h>
  12. #include <linux/delay.h>
  13. #include <dsp/msm_audio_ion.h>
  14. #include <dsp/apr_audio-v2.h>
  15. #include <dsp/audio_cal_utils.h>
  16. #include <dsp/q6afe-v2.h>
  17. #include <dsp/q6audio-v2.h>
  18. #include <dsp/q6common.h>
  19. #include <dsp/q6core.h>
  20. #include <dsp/msm-audio-event-notify.h>
  21. #include <ipc/apr_tal.h>
  22. #include "adsp_err.h"
  23. #include "q6afecal-hwdep.h"
  24. #define WAKELOCK_TIMEOUT 5000
  25. #define AFE_CLK_TOKEN 1024
  26. #define SP_V4_NUM_MAX_SPKRS SP_V2_NUM_MAX_SPKRS
  27. struct afe_avcs_payload_port_mapping {
  28. u16 port_id;
  29. struct avcs_load_unload_modules_payload *payload;
  30. } __packed;
  31. enum {
  32. ENCODER_CASE,
  33. DECODER_CASE,
  34. /* Add new use case here */
  35. MAX_ALLOWED_USE_CASES
  36. };
  37. static struct afe_avcs_payload_port_mapping *pm[MAX_ALLOWED_USE_CASES];
  38. enum {
  39. AFE_COMMON_RX_CAL = 0,
  40. AFE_COMMON_TX_CAL,
  41. AFE_LSM_TX_CAL,
  42. AFE_AANC_CAL,
  43. AFE_FB_SPKR_PROT_CAL,
  44. AFE_HW_DELAY_CAL,
  45. AFE_SIDETONE_CAL,
  46. AFE_SIDETONE_IIR_CAL,
  47. AFE_TOPOLOGY_CAL,
  48. AFE_LSM_TOPOLOGY_CAL,
  49. AFE_CUST_TOPOLOGY_CAL,
  50. AFE_FB_SPKR_PROT_TH_VI_CAL,
  51. AFE_FB_SPKR_PROT_EX_VI_CAL,
  52. AFE_FB_SPKR_PROT_V4_EX_VI_CAL,
  53. MAX_AFE_CAL_TYPES
  54. };
  55. enum fbsp_state {
  56. FBSP_INCORRECT_OP_MODE,
  57. FBSP_INACTIVE,
  58. FBSP_WARMUP,
  59. FBSP_IN_PROGRESS,
  60. FBSP_SUCCESS,
  61. FBSP_FAILED,
  62. MAX_FBSP_STATE
  63. };
  64. static char fbsp_state[MAX_FBSP_STATE][50] = {
  65. [FBSP_INCORRECT_OP_MODE] = "incorrect operation mode",
  66. [FBSP_INACTIVE] = "port not started",
  67. [FBSP_WARMUP] = "waiting for warmup",
  68. [FBSP_IN_PROGRESS] = "in progress state",
  69. [FBSP_SUCCESS] = "success",
  70. [FBSP_FAILED] = "failed"
  71. };
  72. enum v_vali_state {
  73. V_VALI_FAILED,
  74. V_VALI_SUCCESS,
  75. V_VALI_INCORRECT_OP_MODE,
  76. V_VALI_INACTIVE,
  77. V_VALI_WARMUP,
  78. V_VALI_IN_PROGRESS,
  79. MAX_V_VALI_STATE
  80. };
  81. enum {
  82. USE_CALIBRATED_R0TO,
  83. USE_SAFE_R0TO
  84. };
  85. enum {
  86. QUICK_CALIB_DISABLE,
  87. QUICK_CALIB_ENABLE
  88. };
  89. enum {
  90. Q6AFE_MSM_SPKR_PROCESSING = 0,
  91. Q6AFE_MSM_SPKR_CALIBRATION,
  92. Q6AFE_MSM_SPKR_FTM_MODE,
  93. Q6AFE_MSM_SPKR_V_VALI_MODE
  94. };
  95. enum {
  96. APTX_AD_48 = 0,
  97. APTX_AD_44_1 = 1
  98. };
  99. enum {
  100. AFE_MATCHED_PORT_DISABLE,
  101. AFE_MATCHED_PORT_ENABLE
  102. };
  103. enum {
  104. AFE_FBSP_V4_EX_VI_MODE_NORMAL = 0,
  105. AFE_FBSP_V4_EX_VI_MODE_FTM = 1
  106. };
  107. struct wlock {
  108. struct wakeup_source *ws;
  109. };
  110. static struct wlock wl;
  111. struct afe_sp_v4_th_vi_ftm_get_param_resp {
  112. struct afe_sp_v4_gen_get_param_resp gen_resp;
  113. int32_t num_ch;
  114. /* Number of channels for Rx signal.
  115. */
  116. struct afe_sp_v4_channel_ftm_params
  117. ch_ftm_params[SP_V4_NUM_MAX_SPKRS];
  118. } __packed;
  119. struct afe_sp_v4_v_vali_get_param_resp {
  120. struct afe_sp_v4_gen_get_param_resp gen_resp;
  121. int32_t num_ch;
  122. /* Number of channels for Rx signal.
  123. */
  124. struct afe_sp_v4_channel_v_vali_params
  125. ch_v_vali_params[SP_V4_NUM_MAX_SPKRS];
  126. } __packed;
  127. struct afe_sp_v4_ex_vi_ftm_get_param_resp {
  128. struct afe_sp_v4_gen_get_param_resp gen_resp;
  129. int32_t num_ch;
  130. /* Number of channels for Rx signal.
  131. */
  132. struct afe_sp_v4_channel_ex_vi_ftm_params
  133. ch_ex_vi_ftm_params[SP_V4_NUM_MAX_SPKRS];
  134. } __packed;
  135. struct afe_sp_v4_max_log_get_param_resp {
  136. struct afe_sp_v4_gen_get_param_resp gen_resp;
  137. int32_t num_ch;
  138. /* Number of channels for Rx signal.
  139. */
  140. struct afe_sp_v4_channel_tmax_xmax_params
  141. ch_max_params[SP_V4_NUM_MAX_SPKRS];
  142. } __packed;
  143. struct afe_ctl {
  144. void *apr;
  145. atomic_t state;
  146. atomic_t status;
  147. atomic_t clk_state;
  148. atomic_t clk_status;
  149. wait_queue_head_t wait[AFE_MAX_PORTS];
  150. wait_queue_head_t wait_wakeup;
  151. wait_queue_head_t clk_wait;
  152. struct task_struct *task;
  153. wait_queue_head_t lpass_core_hw_wait;
  154. uint32_t lpass_hw_core_client_hdl[AFE_LPASS_CORE_HW_VOTE_MAX];
  155. void (*tx_cb)(uint32_t opcode,
  156. uint32_t token, uint32_t *payload, void *priv);
  157. void (*rx_cb)(uint32_t opcode,
  158. uint32_t token, uint32_t *payload, void *priv);
  159. void *tx_private_data;
  160. void *rx_private_data[NUM_RX_PROXY_PORTS];
  161. uint32_t mmap_handle;
  162. void (*pri_spdif_tx_cb)(uint32_t opcode,
  163. uint32_t token, uint32_t *payload, void *priv);
  164. void (*sec_spdif_tx_cb)(uint32_t opcode,
  165. uint32_t token, uint32_t *payload, void *priv);
  166. void *pri_spdif_tx_private_data;
  167. void *sec_spdif_tx_private_data;
  168. int pri_spdif_config_change;
  169. int sec_spdif_config_change;
  170. struct work_struct afe_spdif_work;
  171. int topology[AFE_MAX_PORTS];
  172. struct cal_type_data *cal_data[MAX_AFE_CAL_TYPES];
  173. atomic_t mem_map_cal_handles[MAX_AFE_CAL_TYPES];
  174. atomic_t mem_map_cal_index;
  175. u32 afe_cal_mode[AFE_MAX_PORTS];
  176. u16 dtmf_gen_rx_portid;
  177. struct audio_cal_info_spk_prot_cfg prot_cfg;
  178. struct afe_spkr_prot_calib_get_resp calib_data;
  179. struct audio_cal_info_sp_th_vi_ftm_cfg th_ftm_cfg;
  180. struct audio_cal_info_sp_th_vi_v_vali_cfg v_vali_cfg;
  181. struct audio_cal_info_sp_ex_vi_ftm_cfg ex_ftm_cfg;
  182. struct afe_sp_th_vi_get_param_resp th_vi_resp;
  183. struct afe_sp_th_vi_v_vali_get_param_resp th_vi_v_vali_resp;
  184. struct afe_sp_ex_vi_get_param_resp ex_vi_resp;
  185. struct afe_sp_rx_tmax_xmax_logging_resp xt_logging_resp;
  186. struct afe_sp_v4_th_vi_calib_resp spv4_calib_data;
  187. struct afe_sp_v4_param_vi_channel_map_cfg v4_ch_map_cfg;
  188. struct afe_sp_v4_th_vi_ftm_get_param_resp spv4_th_vi_ftm_resp;
  189. uint32_t spv4_th_vi_ftm_rcvd_param_size;
  190. struct afe_sp_v4_v_vali_get_param_resp spv4_v_vali_resp;
  191. uint32_t spv4_v_vali_rcvd_param_size;
  192. struct afe_sp_v4_ex_vi_ftm_get_param_resp spv4_ex_vi_ftm_resp;
  193. uint32_t spv4_ex_vi_ftm_rcvd_param_size;
  194. struct afe_sp_v4_max_log_get_param_resp spv4_max_log_resp;
  195. uint32_t spv4_max_log_rcvd_param_size;
  196. struct afe_av_dev_drift_get_param_resp av_dev_drift_resp;
  197. struct afe_doa_tracking_mon_get_param_resp doa_tracking_mon_resp;
  198. int vi_tx_port;
  199. int vi_rx_port;
  200. uint32_t afe_sample_rates[AFE_MAX_PORTS];
  201. struct aanc_data aanc_info;
  202. struct mutex afe_cmd_lock;
  203. struct mutex afe_apr_lock;
  204. struct mutex afe_clk_lock;
  205. int set_custom_topology;
  206. int dev_acdb_id[AFE_MAX_PORTS];
  207. routing_cb rt_cb;
  208. struct audio_uevent_data *uevent_data;
  209. /* cal info for AFE */
  210. struct afe_fw_info *fw_data;
  211. u32 island_mode[AFE_MAX_PORTS];
  212. u32 power_mode[AFE_MAX_PORTS];
  213. struct vad_config vad_cfg[AFE_MAX_PORTS];
  214. struct work_struct afe_dc_work;
  215. struct notifier_block event_notifier;
  216. /* FTM spk params */
  217. uint32_t initial_cal;
  218. uint32_t v_vali_flag;
  219. uint32_t num_spkrs;
  220. };
  221. struct afe_clkinfo_per_port {
  222. u16 port_id; /* AFE port ID */
  223. uint32_t clk_id; /* Clock ID */
  224. };
  225. struct afe_clkinfo_per_port clkinfo_per_port[] = {
  226. { AFE_PORT_ID_PRIMARY_MI2S_RX, Q6AFE_LPASS_CLK_ID_PRI_MI2S_IBIT},
  227. { AFE_PORT_ID_SECONDARY_MI2S_RX, Q6AFE_LPASS_CLK_ID_SEC_MI2S_IBIT},
  228. { AFE_PORT_ID_TERTIARY_MI2S_RX, Q6AFE_LPASS_CLK_ID_TER_MI2S_IBIT},
  229. { AFE_PORT_ID_QUATERNARY_MI2S_RX, Q6AFE_LPASS_CLK_ID_QUAD_MI2S_IBIT},
  230. { AFE_PORT_ID_QUINARY_MI2S_RX, Q6AFE_LPASS_CLK_ID_QUI_MI2S_IBIT},
  231. { AFE_PORT_ID_SENARY_MI2S_RX, Q6AFE_LPASS_CLK_ID_SEN_MI2S_IBIT},
  232. { AFE_PORT_ID_PRIMARY_PCM_RX, Q6AFE_LPASS_CLK_ID_PRI_PCM_IBIT},
  233. { AFE_PORT_ID_SECONDARY_PCM_RX, Q6AFE_LPASS_CLK_ID_SEC_PCM_IBIT},
  234. { AFE_PORT_ID_TERTIARY_PCM_RX, Q6AFE_LPASS_CLK_ID_TER_PCM_IBIT},
  235. { AFE_PORT_ID_QUATERNARY_PCM_RX, Q6AFE_LPASS_CLK_ID_QUAD_PCM_IBIT},
  236. { AFE_PORT_ID_QUINARY_PCM_RX, Q6AFE_LPASS_CLK_ID_QUIN_PCM_IBIT},
  237. { AFE_PORT_ID_SENARY_PCM_RX, Q6AFE_LPASS_CLK_ID_SEN_PCM_IBIT},
  238. { AFE_PORT_ID_PRIMARY_TDM_RX, Q6AFE_LPASS_CLK_ID_PRI_TDM_IBIT},
  239. { AFE_PORT_ID_SECONDARY_TDM_RX, Q6AFE_LPASS_CLK_ID_SEC_TDM_IBIT},
  240. { AFE_PORT_ID_TERTIARY_TDM_RX, Q6AFE_LPASS_CLK_ID_TER_TDM_IBIT},
  241. { AFE_PORT_ID_QUATERNARY_TDM_RX, Q6AFE_LPASS_CLK_ID_QUAD_TDM_IBIT},
  242. { AFE_PORT_ID_QUINARY_TDM_RX, Q6AFE_LPASS_CLK_ID_QUIN_TDM_IBIT},
  243. { AFE_PORT_ID_PRIMARY_SPDIF_RX,
  244. AFE_CLOCK_SET_CLOCK_ID_PRI_SPDIF_OUTPUT_CORE},
  245. { AFE_PORT_ID_PRIMARY_SPDIF_TX,
  246. AFE_CLOCK_SET_CLOCK_ID_PRI_SPDIF_INPUT_CORE},
  247. { AFE_PORT_ID_SECONDARY_SPDIF_RX,
  248. AFE_CLOCK_SET_CLOCK_ID_SEC_SPDIF_OUTPUT_CORE},
  249. { AFE_PORT_ID_SECONDARY_SPDIF_TX,
  250. AFE_CLOCK_SET_CLOCK_ID_SEC_SPDIF_INPUT_CORE},
  251. { AFE_PORT_ID_PRIMARY_META_MI2S_RX,
  252. Q6AFE_LPASS_CLK_ID_PRI_MI2S_IBIT},
  253. { AFE_PORT_ID_SECONDARY_META_MI2S_RX,
  254. Q6AFE_LPASS_CLK_ID_PRI_MI2S_IBIT},
  255. };
  256. static atomic_t afe_ports_mad_type[SLIMBUS_PORT_LAST - SLIMBUS_0_RX];
  257. static unsigned long afe_configured_cmd;
  258. static struct afe_ctl this_afe;
  259. #define TIMEOUT_MS 1000
  260. #define Q6AFE_MAX_VOLUME 0x3FFF
  261. static int pcm_afe_instance[2];
  262. static int proxy_afe_instance[2];
  263. bool afe_close_done[2] = {true, true};
  264. static bool proxy_afe_started = false;
  265. #define SIZEOF_CFG_CMD(y) \
  266. (sizeof(struct apr_hdr) + sizeof(u16) + (sizeof(struct y)))
  267. static void q6afe_unload_avcs_modules(u16 port_id, int index)
  268. {
  269. int ret = 0;
  270. ret = q6core_avcs_load_unload_modules(pm[index]->payload,
  271. AVCS_UNLOAD_MODULES);
  272. if (ret < 0)
  273. pr_err("%s: avcs module unload failed %d\n", __func__, ret);
  274. kfree(pm[index]->payload);
  275. pm[index]->payload = NULL;
  276. kfree(pm[index]);
  277. pm[index] = NULL;
  278. }
  279. static int q6afe_load_avcs_modules(int num_modules, u16 port_id,
  280. uint32_t use_case, u32 format_id)
  281. {
  282. int i = 0;
  283. int32_t ret = 0;
  284. size_t payload_size = 0, port_struct_size = 0;
  285. struct afe_avcs_payload_port_mapping payload_map;
  286. struct avcs_load_unload_modules_sec_payload sec_payload;
  287. if (num_modules <= 0) {
  288. pr_err("%s: Invalid number of modules to load\n", __func__);
  289. return -EINVAL;
  290. }
  291. for (i = 0; i < MAX_ALLOWED_USE_CASES; i++) {
  292. if (pm[i] == NULL) {
  293. port_struct_size = sizeof(payload_map);
  294. pm[i] = kzalloc(port_struct_size, GFP_KERNEL);
  295. if (!pm[i])
  296. return -ENOMEM;
  297. pm[i]->port_id = port_id;
  298. payload_size = sizeof(uint32_t) + (sizeof(sec_payload)
  299. * num_modules);
  300. pm[i]->payload = kzalloc(payload_size, GFP_KERNEL);
  301. if (!pm[i]->payload) {
  302. kfree(pm[i]);
  303. pm[i] = NULL;
  304. return -ENOMEM;
  305. }
  306. /*
  307. * index 0 : packetizer/de-packetizer
  308. * index 1 : encoder/decoder
  309. */
  310. pm[i]->payload->num_modules = num_modules;
  311. /*
  312. * Remaining fields of payload
  313. * are initialized to zero
  314. */
  315. if (use_case == ENCODER_CASE) {
  316. pm[i]->payload->load_unload_info[0].module_type =
  317. AMDB_MODULE_TYPE_PACKETIZER;
  318. pm[i]->payload->load_unload_info[0].id1 =
  319. AVS_MODULE_ID_PACKETIZER_COP;
  320. pm[i]->payload->load_unload_info[1].module_type =
  321. AMDB_MODULE_TYPE_ENCODER;
  322. pm[i]->payload->load_unload_info[1].id1 =
  323. format_id;
  324. } else if (use_case == DECODER_CASE) {
  325. pm[i]->payload->load_unload_info[0].module_type =
  326. AMDB_MODULE_TYPE_DEPACKETIZER;
  327. pm[i]->payload->load_unload_info[0].id1 =
  328. AVS_MODULE_ID_DEPACKETIZER_COP_V1;
  329. if (format_id == ENC_CODEC_TYPE_LDAC) {
  330. pm[i]->payload->load_unload_info[0].id1 =
  331. AVS_MODULE_ID_DEPACKETIZER_COP;
  332. goto load_unload;
  333. }
  334. pm[i]->payload->load_unload_info[1].module_type =
  335. AMDB_MODULE_TYPE_DECODER;
  336. pm[i]->payload->load_unload_info[1].id1 =
  337. format_id;
  338. } else {
  339. pr_err("%s:load usecase %d not supported\n",
  340. __func__, use_case);
  341. ret = -EINVAL;
  342. goto fail;
  343. }
  344. load_unload:
  345. ret = q6core_avcs_load_unload_modules(pm[i]->payload,
  346. AVCS_LOAD_MODULES);
  347. if (ret < 0) {
  348. pr_err("%s: load failed %d\n", __func__, ret);
  349. goto fail;
  350. }
  351. return 0;
  352. }
  353. }
  354. ret = -EINVAL;
  355. if (i == MAX_ALLOWED_USE_CASES) {
  356. pr_err("%s: Not enough ports available\n", __func__);
  357. return ret;
  358. }
  359. fail:
  360. kfree(pm[i]->payload);
  361. pm[i]->payload = NULL;
  362. kfree(pm[i]);
  363. pm[i] = NULL;
  364. return ret;
  365. }
  366. static int afe_get_cal_hw_delay(int32_t path,
  367. struct audio_cal_hw_delay_entry *entry);
  368. static int remap_cal_data(struct cal_block_data *cal_block, int cal_index);
  369. int afe_get_spk_initial_cal(void)
  370. {
  371. return this_afe.initial_cal;
  372. }
  373. void afe_get_spk_r0(int *spk_r0)
  374. {
  375. uint16_t i = 0;
  376. for (; i < SP_V2_NUM_MAX_SPKRS; i++)
  377. spk_r0[i] = this_afe.prot_cfg.r0[i];
  378. }
  379. void afe_get_spk_t0(int *spk_t0)
  380. {
  381. uint16_t i = 0;
  382. for (; i < SP_V2_NUM_MAX_SPKRS; i++)
  383. spk_t0[i] = this_afe.prot_cfg.t0[i];
  384. }
  385. int afe_get_spk_v_vali_flag(void)
  386. {
  387. return this_afe.v_vali_flag;
  388. }
  389. void afe_get_spk_v_vali_sts(int *spk_v_vali_sts)
  390. {
  391. uint16_t i = 0;
  392. for (; i < SP_V2_NUM_MAX_SPKRS; i++)
  393. spk_v_vali_sts[i] =
  394. this_afe.th_vi_v_vali_resp.param.status[i];
  395. }
  396. void afe_set_spk_initial_cal(int initial_cal)
  397. {
  398. this_afe.initial_cal = initial_cal;
  399. }
  400. void afe_set_spk_v_vali_flag(int v_vali_flag)
  401. {
  402. this_afe.v_vali_flag = v_vali_flag;
  403. }
  404. int afe_get_topology(int port_id)
  405. {
  406. int topology;
  407. int port_index = afe_get_port_index(port_id);
  408. if ((port_index < 0) || (port_index >= AFE_MAX_PORTS)) {
  409. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  410. topology = -EINVAL;
  411. goto done;
  412. }
  413. topology = this_afe.topology[port_index];
  414. done:
  415. return topology;
  416. }
  417. /**
  418. * afe_set_aanc_info -
  419. * Update AFE AANC info
  420. *
  421. * @q6_aanc_info: AFE AANC info params
  422. *
  423. */
  424. void afe_set_aanc_info(struct aanc_data *q6_aanc_info)
  425. {
  426. this_afe.aanc_info.aanc_active = q6_aanc_info->aanc_active;
  427. this_afe.aanc_info.aanc_rx_port = q6_aanc_info->aanc_rx_port;
  428. this_afe.aanc_info.aanc_tx_port = q6_aanc_info->aanc_tx_port;
  429. pr_debug("%s: aanc active is %d rx port is 0x%x, tx port is 0x%x\n",
  430. __func__,
  431. this_afe.aanc_info.aanc_active,
  432. this_afe.aanc_info.aanc_rx_port,
  433. this_afe.aanc_info.aanc_tx_port);
  434. }
  435. EXPORT_SYMBOL(afe_set_aanc_info);
  436. static void afe_callback_debug_print(struct apr_client_data *data)
  437. {
  438. uint32_t *payload;
  439. payload = data->payload;
  440. if (data->payload_size >= 8)
  441. pr_debug("%s: code = 0x%x PL#0[0x%x], PL#1[0x%x], size = %d\n",
  442. __func__, data->opcode, payload[0], payload[1],
  443. data->payload_size);
  444. else if (data->payload_size >= 4)
  445. pr_debug("%s: code = 0x%x PL#0[0x%x], size = %d\n",
  446. __func__, data->opcode, payload[0],
  447. data->payload_size);
  448. else
  449. pr_debug("%s: code = 0x%x, size = %d\n",
  450. __func__, data->opcode, data->payload_size);
  451. }
  452. static void av_dev_drift_afe_cb_handler(uint32_t opcode, uint32_t *payload,
  453. uint32_t payload_size)
  454. {
  455. u32 param_id;
  456. size_t expected_size =
  457. sizeof(u32) + sizeof(struct afe_param_id_dev_timing_stats);
  458. /* Get param ID depending on command type */
  459. param_id = (opcode == AFE_PORT_CMDRSP_GET_PARAM_V3) ? payload[3] :
  460. payload[2];
  461. if (param_id != AFE_PARAM_ID_DEV_TIMING_STATS) {
  462. pr_err("%s: Unrecognized param ID %d\n", __func__, param_id);
  463. return;
  464. }
  465. switch (opcode) {
  466. case AFE_PORT_CMDRSP_GET_PARAM_V2:
  467. expected_size += sizeof(struct param_hdr_v1);
  468. if (payload_size < expected_size) {
  469. pr_err("%s: Error: received size %d, expected size %zu\n",
  470. __func__, payload_size, expected_size);
  471. return;
  472. }
  473. /* Repack response to add IID */
  474. this_afe.av_dev_drift_resp.status = payload[0];
  475. this_afe.av_dev_drift_resp.pdata.module_id = payload[1];
  476. this_afe.av_dev_drift_resp.pdata.instance_id = INSTANCE_ID_0;
  477. this_afe.av_dev_drift_resp.pdata.param_id = payload[2];
  478. this_afe.av_dev_drift_resp.pdata.param_size = payload[3];
  479. memcpy(&this_afe.av_dev_drift_resp.timing_stats, &payload[4],
  480. sizeof(struct afe_param_id_dev_timing_stats));
  481. break;
  482. case AFE_PORT_CMDRSP_GET_PARAM_V3:
  483. expected_size += sizeof(struct param_hdr_v3);
  484. if (payload_size < expected_size) {
  485. pr_err("%s: Error: received size %d, expected size %zu\n",
  486. __func__, payload_size, expected_size);
  487. return;
  488. }
  489. memcpy(&this_afe.av_dev_drift_resp, payload,
  490. sizeof(this_afe.av_dev_drift_resp));
  491. break;
  492. default:
  493. pr_err("%s: Unrecognized command %d\n", __func__, opcode);
  494. return;
  495. }
  496. if (!this_afe.av_dev_drift_resp.status) {
  497. atomic_set(&this_afe.state, 0);
  498. } else {
  499. pr_debug("%s: av_dev_drift_resp status: %d\n", __func__,
  500. this_afe.av_dev_drift_resp.status);
  501. atomic_set(&this_afe.state, -1);
  502. }
  503. }
  504. static void doa_tracking_mon_afe_cb_handler(uint32_t opcode, uint32_t *payload,
  505. uint32_t payload_size)
  506. {
  507. size_t expected_size =
  508. sizeof(u32) + sizeof(struct doa_tracking_mon_param);
  509. if (payload[0]) {
  510. atomic_set(&this_afe.status, payload[0]);
  511. atomic_set(&this_afe.state, 0);
  512. pr_err("%s: doa_tracking_mon_resp status: %d payload size %d\n",
  513. __func__, payload[0], payload_size);
  514. return;
  515. }
  516. switch (opcode) {
  517. case AFE_PORT_CMDRSP_GET_PARAM_V2:
  518. expected_size += sizeof(struct param_hdr_v1);
  519. if (payload_size < expected_size) {
  520. pr_err("%s: Error: received size %d, expected size %zu\n",
  521. __func__, payload_size, expected_size);
  522. return;
  523. }
  524. /* Repack response to add IID */
  525. this_afe.doa_tracking_mon_resp.status = payload[0];
  526. this_afe.doa_tracking_mon_resp.pdata.module_id = payload[1];
  527. this_afe.doa_tracking_mon_resp.pdata.instance_id =
  528. INSTANCE_ID_0;
  529. this_afe.doa_tracking_mon_resp.pdata.param_id = payload[2];
  530. this_afe.doa_tracking_mon_resp.pdata.param_size = payload[3];
  531. memcpy(&this_afe.doa_tracking_mon_resp.doa, &payload[4],
  532. sizeof(struct doa_tracking_mon_param));
  533. break;
  534. case AFE_PORT_CMDRSP_GET_PARAM_V3:
  535. expected_size += sizeof(struct param_hdr_v3);
  536. if (payload_size < expected_size) {
  537. pr_err("%s: Error: received size %d, expected size %zu\n",
  538. __func__, payload_size, expected_size);
  539. return;
  540. }
  541. memcpy(&this_afe.doa_tracking_mon_resp, payload,
  542. sizeof(this_afe.doa_tracking_mon_resp));
  543. break;
  544. default:
  545. pr_err("%s: Unrecognized command %d\n", __func__, opcode);
  546. return;
  547. }
  548. atomic_set(&this_afe.state, 0);
  549. }
  550. static int32_t sp_make_afe_callback(uint32_t opcode, uint32_t *payload,
  551. uint32_t payload_size)
  552. {
  553. struct param_hdr_v3 param_hdr;
  554. u32 *data_dest = NULL;
  555. u32 *data_start = NULL;
  556. size_t expected_size = sizeof(u32);
  557. uint32_t num_ch = 0;
  558. memset(&param_hdr, 0, sizeof(param_hdr));
  559. /* Set command specific details */
  560. switch (opcode) {
  561. case AFE_PORT_CMDRSP_GET_PARAM_V2:
  562. if (payload_size < (5 * sizeof(uint32_t))) {
  563. pr_err("%s: Error: size %d is less than expected\n",
  564. __func__, payload_size);
  565. return -EINVAL;
  566. }
  567. expected_size += sizeof(struct param_hdr_v1);
  568. param_hdr.module_id = payload[1];
  569. param_hdr.instance_id = INSTANCE_ID_0;
  570. param_hdr.param_id = payload[2];
  571. param_hdr.param_size = payload[3];
  572. data_start = &payload[4];
  573. break;
  574. case AFE_PORT_CMDRSP_GET_PARAM_V3:
  575. if (payload_size < (6 * sizeof(uint32_t))) {
  576. pr_err("%s: Error: size %d is less than expected\n",
  577. __func__, payload_size);
  578. return -EINVAL;
  579. }
  580. expected_size += sizeof(struct param_hdr_v3);
  581. if (payload_size < expected_size) {
  582. pr_err("%s: Error: size %d is less than expected\n",
  583. __func__, payload_size);
  584. return -EINVAL;
  585. }
  586. memcpy(&param_hdr, &payload[1], sizeof(struct param_hdr_v3));
  587. data_start = &payload[5];
  588. break;
  589. default:
  590. pr_err("%s: Unrecognized command %d\n", __func__, opcode);
  591. return -EINVAL;
  592. }
  593. switch (param_hdr.param_id) {
  594. case AFE_PARAM_ID_CALIB_RES_CFG_V2:
  595. expected_size += sizeof(struct asm_calib_res_cfg);
  596. data_dest = (u32 *) &this_afe.calib_data;
  597. break;
  598. case AFE_PARAM_ID_SP_V2_TH_VI_FTM_PARAMS:
  599. expected_size += sizeof(struct afe_sp_th_vi_ftm_params);
  600. data_dest = (u32 *) &this_afe.th_vi_resp;
  601. break;
  602. case AFE_PARAM_ID_SP_V2_TH_VI_V_VALI_PARAMS:
  603. expected_size += sizeof(struct afe_sp_th_vi_v_vali_params);
  604. data_dest = (u32 *) &this_afe.th_vi_v_vali_resp;
  605. break;
  606. case AFE_PARAM_ID_SP_V2_EX_VI_FTM_PARAMS:
  607. expected_size += sizeof(struct afe_sp_ex_vi_ftm_params);
  608. data_dest = (u32 *) &this_afe.ex_vi_resp;
  609. break;
  610. case AFE_PARAM_ID_SP_RX_TMAX_XMAX_LOGGING:
  611. expected_size += sizeof(
  612. struct afe_sp_rx_tmax_xmax_logging_param);
  613. data_dest = (u32 *) &this_afe.xt_logging_resp;
  614. break;
  615. case AFE_PARAM_ID_SP_V4_CALIB_RES_CFG:
  616. expected_size += sizeof(
  617. struct afe_sp_v4_param_th_vi_calib_res_cfg);
  618. data_dest = (u32 *) &this_afe.spv4_calib_data;
  619. break;
  620. case AFE_PARAM_ID_SP_V4_TH_VI_FTM_PARAMS:
  621. num_ch = data_start[0];
  622. this_afe.spv4_th_vi_ftm_rcvd_param_size = param_hdr.param_size;
  623. data_dest = (u32 *)&this_afe.spv4_th_vi_ftm_resp;
  624. expected_size +=
  625. sizeof(struct afe_sp_v4_param_th_vi_ftm_params) +
  626. (num_ch * sizeof(struct afe_sp_v4_channel_ftm_params));
  627. break;
  628. case AFE_PARAM_ID_SP_V4_TH_VI_V_VALI_PARAMS:
  629. num_ch = data_start[0];
  630. this_afe.spv4_v_vali_rcvd_param_size = param_hdr.param_size;
  631. data_dest = (u32 *)&this_afe.spv4_v_vali_resp;
  632. expected_size +=
  633. sizeof(struct afe_sp_v4_param_th_vi_v_vali_params) +
  634. (num_ch *
  635. sizeof(struct afe_sp_v4_channel_v_vali_params));
  636. break;
  637. case AFE_PARAM_ID_SP_V4_EX_VI_FTM_PARAMS:
  638. num_ch = data_start[0];
  639. this_afe.spv4_ex_vi_ftm_rcvd_param_size = param_hdr.param_size;
  640. data_dest = (u32 *)&this_afe.spv4_ex_vi_ftm_resp;
  641. expected_size +=
  642. sizeof(struct afe_sp_v4_param_ex_vi_ftm_params) +
  643. (num_ch * sizeof(struct afe_sp_v4_channel_ex_vi_ftm_params));
  644. break;
  645. case AFE_PARAM_ID_SP_V4_RX_TMAX_XMAX_LOGGING:
  646. num_ch = data_start[0];
  647. this_afe.spv4_max_log_rcvd_param_size = param_hdr.param_size;
  648. data_dest = (u32 *)&this_afe.spv4_max_log_resp;
  649. expected_size +=
  650. sizeof(struct afe_sp_v4_param_tmax_xmax_logging) +
  651. (num_ch * sizeof(struct afe_sp_v4_channel_tmax_xmax_params));
  652. break;
  653. default:
  654. pr_err("%s: Unrecognized param ID %d\n", __func__,
  655. param_hdr.param_id);
  656. return -EINVAL;
  657. }
  658. if (!data_dest)
  659. return -ENOMEM;
  660. if (payload_size < expected_size) {
  661. pr_err(
  662. "%s: Error: received size %d, expected size %zu for param %d\n",
  663. __func__, payload_size, expected_size,
  664. param_hdr.param_id);
  665. return -EINVAL;
  666. }
  667. data_dest[0] = payload[0];
  668. memcpy(&data_dest[1], &param_hdr, sizeof(struct param_hdr_v3));
  669. memcpy(&data_dest[5], data_start, param_hdr.param_size);
  670. if (!data_dest[0]) {
  671. atomic_set(&this_afe.state, 0);
  672. } else {
  673. pr_debug("%s: status: %d", __func__, data_dest[0]);
  674. atomic_set(&this_afe.state, -1);
  675. }
  676. return 0;
  677. }
  678. static void afe_notify_dc_presence(void)
  679. {
  680. pr_debug("%s: DC detected\n", __func__);
  681. msm_aud_evt_notifier_call_chain(MSM_AUD_DC_EVENT, NULL);
  682. schedule_work(&this_afe.afe_dc_work);
  683. }
  684. static void afe_notify_dc_presence_work_fn(struct work_struct *work)
  685. {
  686. int ret = 0;
  687. char event[] = "DC_PRESENCE=TRUE";
  688. ret = q6core_send_uevent(this_afe.uevent_data, event);
  689. if (ret)
  690. pr_err("%s: Send UEvent %s failed :%d\n",
  691. __func__, event, ret);
  692. }
  693. static int afe_aud_event_notify(struct notifier_block *self,
  694. unsigned long action, void *data)
  695. {
  696. switch (action) {
  697. case SWR_WAKE_IRQ_REGISTER:
  698. afe_send_cmd_wakeup_register(data, true);
  699. break;
  700. case SWR_WAKE_IRQ_DEREGISTER:
  701. afe_send_cmd_wakeup_register(data, false);
  702. break;
  703. default:
  704. pr_err("%s: invalid event type: %lu\n", __func__, action);
  705. return -EINVAL;
  706. }
  707. return 0;
  708. }
  709. static void afe_notify_spdif_fmt_update_work_fn(struct work_struct *work)
  710. {
  711. int ret = 0;
  712. char event_pri[] = "PRI_SPDIF_TX=MEDIA_CONFIG_CHANGE";
  713. char event_sec[] = "SEC_SPDIF_TX=MEDIA_CONFIG_CHANGE";
  714. if (this_afe.pri_spdif_config_change) {
  715. this_afe.pri_spdif_config_change = 0;
  716. ret = q6core_send_uevent(this_afe.uevent_data, event_pri);
  717. if (ret)
  718. pr_err("%s: Send UEvent %s failed :%d\n",
  719. __func__, event_pri, ret);
  720. }
  721. if (this_afe.sec_spdif_config_change) {
  722. this_afe.sec_spdif_config_change = 0;
  723. ret = q6core_send_uevent(this_afe.uevent_data, event_sec);
  724. if (ret)
  725. pr_err("%s: Send UEvent %s failed :%d\n",
  726. __func__, event_sec, ret);
  727. }
  728. }
  729. static void afe_notify_spdif_fmt_update(void *payload)
  730. {
  731. struct afe_port_mod_evt_rsp_hdr *evt_pl;
  732. evt_pl = (struct afe_port_mod_evt_rsp_hdr *)payload;
  733. if (evt_pl->port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX)
  734. this_afe.pri_spdif_config_change = 1;
  735. else
  736. this_afe.sec_spdif_config_change = 1;
  737. schedule_work(&this_afe.afe_spdif_work);
  738. }
  739. static bool afe_token_is_valid(uint32_t token)
  740. {
  741. if (token >= AFE_MAX_PORTS) {
  742. pr_err("%s: token %d is invalid.\n", __func__, token);
  743. return false;
  744. }
  745. return true;
  746. }
  747. static int32_t afe_callback(struct apr_client_data *data, void *priv)
  748. {
  749. uint16_t i = 0;
  750. if (!data) {
  751. pr_err("%s: Invalid param data\n", __func__);
  752. return -EINVAL;
  753. }
  754. if (data->opcode == RESET_EVENTS) {
  755. pr_debug("%s: reset event = %d %d apr[%pK]\n",
  756. __func__,
  757. data->reset_event, data->reset_proc, this_afe.apr);
  758. cal_utils_clear_cal_block_q6maps(MAX_AFE_CAL_TYPES,
  759. this_afe.cal_data);
  760. /* Reset the custom topology mode: to resend again to AFE. */
  761. mutex_lock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  762. this_afe.set_custom_topology = 1;
  763. mutex_unlock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  764. rtac_clear_mapping(AFE_RTAC_CAL);
  765. if (this_afe.apr) {
  766. apr_reset(this_afe.apr);
  767. atomic_set(&this_afe.state, 0);
  768. this_afe.apr = NULL;
  769. rtac_set_afe_handle(this_afe.apr);
  770. }
  771. /* Reset the core client handle in SSR/PDR use cases */
  772. mutex_lock(&this_afe.afe_cmd_lock);
  773. for (i = 0; i < AFE_LPASS_CORE_HW_VOTE_MAX; i++)
  774. this_afe.lpass_hw_core_client_hdl[i] = 0;
  775. mutex_unlock(&this_afe.afe_cmd_lock);
  776. /*
  777. * Pass reset events to proxy driver, if cb is registered
  778. */
  779. if (this_afe.tx_cb) {
  780. this_afe.tx_cb(data->opcode, data->token,
  781. data->payload,
  782. this_afe.tx_private_data);
  783. this_afe.tx_cb = NULL;
  784. }
  785. for (i = 0; i < NUM_RX_PROXY_PORTS; i++) {
  786. if (this_afe.rx_cb && this_afe.rx_private_data[i]) {
  787. this_afe.rx_cb(data->opcode, data->token,
  788. data->payload,
  789. this_afe.rx_private_data[i]);
  790. }
  791. }
  792. this_afe.rx_cb = NULL;
  793. return 0;
  794. }
  795. afe_callback_debug_print(data);
  796. if (data->opcode == AFE_PORT_CMDRSP_GET_PARAM_V2 ||
  797. data->opcode == AFE_PORT_CMDRSP_GET_PARAM_V3) {
  798. uint32_t *payload = data->payload;
  799. uint32_t param_id;
  800. uint32_t param_id_pos = 0;
  801. if (!payload || (data->token >= AFE_MAX_PORTS)) {
  802. pr_err("%s: Error: size %d payload %pK token %d\n",
  803. __func__, data->payload_size,
  804. payload, data->token);
  805. return -EINVAL;
  806. }
  807. if (rtac_make_afe_callback(data->payload,
  808. data->payload_size))
  809. return 0;
  810. if (data->opcode == AFE_PORT_CMDRSP_GET_PARAM_V3)
  811. param_id_pos = 4;
  812. else
  813. param_id_pos = 3;
  814. if (data->payload_size >= param_id_pos * sizeof(uint32_t))
  815. param_id = payload[param_id_pos - 1];
  816. else {
  817. pr_err("%s: Error: size %d is less than expected\n",
  818. __func__, data->payload_size);
  819. return -EINVAL;
  820. }
  821. if (param_id == AUDPROC_PARAM_ID_FFV_DOA_TRACKING_MONITOR) {
  822. doa_tracking_mon_afe_cb_handler(data->opcode,
  823. data->payload, data->payload_size);
  824. } else if (param_id == AFE_PARAM_ID_DEV_TIMING_STATS) {
  825. av_dev_drift_afe_cb_handler(data->opcode, data->payload,
  826. data->payload_size);
  827. } else {
  828. if (sp_make_afe_callback(data->opcode, data->payload,
  829. data->payload_size))
  830. return -EINVAL;
  831. }
  832. if (afe_token_is_valid(data->token))
  833. wake_up(&this_afe.wait[data->token]);
  834. else
  835. return -EINVAL;
  836. } else if (data->opcode == AFE_EVENT_MBHC_DETECTION_SW_WA) {
  837. msm_aud_evt_notifier_call_chain(SWR_WAKE_IRQ_EVENT, NULL);
  838. } else if (data->opcode ==
  839. AFE_CMD_RSP_REMOTE_LPASS_CORE_HW_VOTE_REQUEST) {
  840. uint32_t *payload = data->payload;
  841. pr_debug("%s: AFE_CMD_RSP_REMOTE_LPASS_CORE_HW_VOTE_REQUEST handle %d\n",
  842. __func__, payload[0]);
  843. if (data->token < AFE_LPASS_CORE_HW_VOTE_MAX)
  844. this_afe.lpass_hw_core_client_hdl[data->token] =
  845. payload[0];
  846. atomic_set(&this_afe.clk_state, 0);
  847. atomic_set(&this_afe.clk_status, 0);
  848. wake_up(&this_afe.lpass_core_hw_wait);
  849. } else if (data->payload_size) {
  850. uint32_t *payload;
  851. uint16_t port_id = 0;
  852. payload = data->payload;
  853. if (data->opcode == APR_BASIC_RSP_RESULT) {
  854. if (data->payload_size < (2 * sizeof(uint32_t))) {
  855. pr_err("%s: Error: size %d is less than expected\n",
  856. __func__, data->payload_size);
  857. return -EINVAL;
  858. }
  859. pr_debug("%s:opcode = 0x%x cmd = 0x%x status = 0x%x token=%d\n",
  860. __func__, data->opcode,
  861. payload[0], payload[1], data->token);
  862. /* payload[1] contains the error status for response */
  863. if (payload[1] != 0) {
  864. if(data->token == AFE_CLK_TOKEN)
  865. atomic_set(&this_afe.clk_status, payload[1]);
  866. else
  867. atomic_set(&this_afe.status, payload[1]);
  868. pr_err("%s: cmd = 0x%x returned error = 0x%x\n",
  869. __func__, payload[0], payload[1]);
  870. }
  871. switch (payload[0]) {
  872. case AFE_PORT_CMD_SET_PARAM_V2:
  873. case AFE_PORT_CMD_SET_PARAM_V3:
  874. if (rtac_make_afe_callback(payload,
  875. data->payload_size))
  876. return 0;
  877. case AFE_PORT_CMD_DEVICE_STOP:
  878. case AFE_PORT_CMD_DEVICE_START:
  879. case AFE_PSEUDOPORT_CMD_START:
  880. case AFE_PSEUDOPORT_CMD_STOP:
  881. case AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS:
  882. case AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS:
  883. case AFE_SERVICE_CMD_UNREGISTER_RT_PORT_DRIVER:
  884. case AFE_PORTS_CMD_DTMF_CTL:
  885. case AFE_SVC_CMD_SET_PARAM:
  886. case AFE_SVC_CMD_SET_PARAM_V2:
  887. case AFE_PORT_CMD_MOD_EVENT_CFG:
  888. if(data->token == AFE_CLK_TOKEN) {
  889. atomic_set(&this_afe.clk_state, 0);
  890. wake_up(&this_afe.clk_wait);
  891. } else {
  892. atomic_set(&this_afe.state, 0);
  893. if (afe_token_is_valid(data->token))
  894. wake_up(&this_afe.wait[data->token]);
  895. else
  896. return -EINVAL;
  897. }
  898. break;
  899. case AFE_SERVICE_CMD_REGISTER_RT_PORT_DRIVER:
  900. break;
  901. case AFE_PORT_DATA_CMD_RT_PROXY_PORT_WRITE_V2:
  902. port_id = RT_PROXY_PORT_001_TX;
  903. break;
  904. case AFE_PORT_DATA_CMD_RT_PROXY_PORT_READ_V2:
  905. port_id = data->src_port;
  906. break;
  907. case AFE_CMD_ADD_TOPOLOGIES:
  908. atomic_set(&this_afe.state, 0);
  909. if (afe_token_is_valid(data->token))
  910. wake_up(&this_afe.wait[data->token]);
  911. else
  912. return -EINVAL;
  913. pr_debug("%s: AFE_CMD_ADD_TOPOLOGIES cmd 0x%x\n",
  914. __func__, payload[1]);
  915. break;
  916. case AFE_PORT_CMD_GET_PARAM_V2:
  917. case AFE_PORT_CMD_GET_PARAM_V3:
  918. /*
  919. * Should only come here if there is an APR
  920. * error or malformed APR packet. Otherwise
  921. * response will be returned as
  922. * AFE_PORT_CMDRSP_GET_PARAM_V2/3
  923. */
  924. pr_debug("%s: AFE Get Param opcode 0x%x token 0x%x src %d dest %d\n",
  925. __func__, data->opcode, data->token,
  926. data->src_port, data->dest_port);
  927. if (payload[1] != 0) {
  928. pr_err("%s: AFE Get Param failed with error %d\n",
  929. __func__, payload[1]);
  930. if (rtac_make_afe_callback(
  931. payload,
  932. data->payload_size))
  933. return 0;
  934. }
  935. atomic_set(&this_afe.state, payload[1]);
  936. if (afe_token_is_valid(data->token))
  937. wake_up(&this_afe.wait[data->token]);
  938. else
  939. return -EINVAL;
  940. break;
  941. case AFE_CMD_REMOTE_LPASS_CORE_HW_VOTE_REQUEST:
  942. case AFE_CMD_REMOTE_LPASS_CORE_HW_DEVOTE_REQUEST:
  943. atomic_set(&this_afe.clk_state, 0);
  944. if (payload[1] != 0)
  945. atomic_set(&this_afe.clk_status,
  946. payload[1]);
  947. wake_up(&this_afe.lpass_core_hw_wait);
  948. break;
  949. case AFE_SVC_CMD_EVENT_CFG:
  950. atomic_set(&this_afe.state, payload[1]);
  951. wake_up(&this_afe.wait_wakeup);
  952. break;
  953. default:
  954. pr_err("%s: Unknown cmd 0x%x\n", __func__,
  955. payload[0]);
  956. break;
  957. }
  958. } else if (data->opcode ==
  959. AFE_SERVICE_CMDRSP_SHARED_MEM_MAP_REGIONS) {
  960. pr_debug("%s: mmap_handle: 0x%x, cal index %d\n",
  961. __func__, payload[0],
  962. atomic_read(&this_afe.mem_map_cal_index));
  963. if (atomic_read(&this_afe.mem_map_cal_index) != -1)
  964. atomic_set(&this_afe.mem_map_cal_handles[
  965. atomic_read(
  966. &this_afe.mem_map_cal_index)],
  967. (uint32_t)payload[0]);
  968. else
  969. this_afe.mmap_handle = payload[0];
  970. atomic_set(&this_afe.state, 0);
  971. if (afe_token_is_valid(data->token))
  972. wake_up(&this_afe.wait[data->token]);
  973. else
  974. return -EINVAL;
  975. } else if (data->opcode == AFE_EVENT_RT_PROXY_PORT_STATUS) {
  976. port_id = (uint16_t)(0x0000FFFF & payload[0]);
  977. } else if (data->opcode == AFE_PORT_MOD_EVENT) {
  978. u32 flag_dc_presence[2];
  979. uint32_t *payload = data->payload;
  980. struct afe_port_mod_evt_rsp_hdr *evt_pl =
  981. (struct afe_port_mod_evt_rsp_hdr *)payload;
  982. if (!payload || (data->token >= AFE_MAX_PORTS)) {
  983. pr_err("%s: Error: size %d payload %pK token %d\n",
  984. __func__, data->payload_size,
  985. payload, data->token);
  986. return -EINVAL;
  987. }
  988. if ((evt_pl->module_id == AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI) &&
  989. (evt_pl->event_id == AFE_PORT_SP_DC_DETECTION_EVENT) &&
  990. (evt_pl->payload_size == sizeof(flag_dc_presence))) {
  991. memcpy(&flag_dc_presence,
  992. (uint8_t *)payload +
  993. sizeof(struct afe_port_mod_evt_rsp_hdr),
  994. evt_pl->payload_size);
  995. if (flag_dc_presence[0] == 1 ||
  996. flag_dc_presence[1] == 1) {
  997. afe_notify_dc_presence();
  998. }
  999. } else if ((evt_pl->module_id ==
  1000. AFE_MODULE_SPEAKER_PROTECTION_V4_VI) &&
  1001. (evt_pl->event_id ==
  1002. AFE_PORT_SP_DC_DETECTION_EVENT)) {
  1003. bool dc_detected = false;
  1004. uint32_t *num_channels =
  1005. (uint32_t *)((uint8_t *)payload +
  1006. sizeof(struct afe_port_mod_evt_rsp_hdr));
  1007. uint32_t *dc_presence_flag = num_channels + 1;
  1008. for (i = 0; i < *num_channels; i++) {
  1009. if (dc_presence_flag[i] == 1)
  1010. dc_detected = true;
  1011. }
  1012. if (dc_detected)
  1013. afe_notify_dc_presence();
  1014. } else if (evt_pl->port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX) {
  1015. if (this_afe.pri_spdif_tx_cb) {
  1016. this_afe.pri_spdif_tx_cb(data->opcode,
  1017. data->token, data->payload,
  1018. this_afe.pri_spdif_tx_private_data);
  1019. }
  1020. afe_notify_spdif_fmt_update(data->payload);
  1021. } else if (evt_pl->port_id == AFE_PORT_ID_SECONDARY_SPDIF_TX) {
  1022. if (this_afe.sec_spdif_tx_cb) {
  1023. this_afe.sec_spdif_tx_cb(data->opcode,
  1024. data->token, data->payload,
  1025. this_afe.sec_spdif_tx_private_data);
  1026. }
  1027. afe_notify_spdif_fmt_update(data->payload);
  1028. } else {
  1029. pr_debug("%s: mod ID = 0x%x event_id = 0x%x\n",
  1030. __func__, evt_pl->module_id,
  1031. evt_pl->event_id);
  1032. }
  1033. }
  1034. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  1035. switch (port_id) {
  1036. case RT_PROXY_PORT_001_TX: {
  1037. if (this_afe.tx_cb) {
  1038. this_afe.tx_cb(data->opcode, data->token,
  1039. data->payload,
  1040. this_afe.tx_private_data);
  1041. }
  1042. break;
  1043. }
  1044. case RT_PROXY_PORT_001_RX:
  1045. case RT_PROXY_PORT_002_RX:
  1046. {
  1047. if (this_afe.rx_cb) {
  1048. this_afe.rx_cb(data->opcode, data->token,
  1049. data->payload,
  1050. this_afe.rx_private_data[PORTID_TO_IDX(port_id)]);
  1051. }
  1052. break;
  1053. }
  1054. default:
  1055. pr_debug("%s: default case 0x%x\n", __func__, port_id);
  1056. break;
  1057. }
  1058. }
  1059. return 0;
  1060. }
  1061. /**
  1062. * afe_get_port_type -
  1063. * Retrieve AFE port type whether RX or TX
  1064. *
  1065. * @port_id: AFE Port ID number
  1066. *
  1067. * Returns RX/TX type.
  1068. */
  1069. int afe_get_port_type(u16 port_id)
  1070. {
  1071. int ret = MSM_AFE_PORT_TYPE_RX;
  1072. switch (port_id) {
  1073. case VOICE_RECORD_RX:
  1074. case VOICE_RECORD_TX:
  1075. ret = MSM_AFE_PORT_TYPE_TX;
  1076. break;
  1077. case VOICE_PLAYBACK_TX:
  1078. case VOICE2_PLAYBACK_TX:
  1079. ret = MSM_AFE_PORT_TYPE_RX;
  1080. break;
  1081. default:
  1082. /* Odd numbered ports are TX and Rx are Even numbered */
  1083. if (port_id & 0x1)
  1084. ret = MSM_AFE_PORT_TYPE_TX;
  1085. else
  1086. ret = MSM_AFE_PORT_TYPE_RX;
  1087. break;
  1088. }
  1089. return ret;
  1090. }
  1091. EXPORT_SYMBOL(afe_get_port_type);
  1092. int afe_sizeof_cfg_cmd(u16 port_id)
  1093. {
  1094. int ret_size;
  1095. switch (port_id) {
  1096. case PRIMARY_I2S_RX:
  1097. case PRIMARY_I2S_TX:
  1098. case SECONDARY_I2S_RX:
  1099. case SECONDARY_I2S_TX:
  1100. case MI2S_RX:
  1101. case MI2S_TX:
  1102. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  1103. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  1104. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  1105. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  1106. case AFE_PORT_ID_QUINARY_MI2S_RX:
  1107. case AFE_PORT_ID_QUINARY_MI2S_TX:
  1108. case AFE_PORT_ID_SENARY_MI2S_RX:
  1109. case AFE_PORT_ID_SENARY_MI2S_TX:
  1110. ret_size = SIZEOF_CFG_CMD(afe_param_id_i2s_cfg);
  1111. break;
  1112. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  1113. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  1114. ret_size = SIZEOF_CFG_CMD(afe_param_id_meta_i2s_cfg);
  1115. break;
  1116. case HDMI_RX:
  1117. case HDMI_RX_MS:
  1118. case DISPLAY_PORT_RX:
  1119. ret_size =
  1120. SIZEOF_CFG_CMD(afe_param_id_hdmi_multi_chan_audio_cfg);
  1121. break;
  1122. case AFE_PORT_ID_PRIMARY_SPDIF_RX:
  1123. case AFE_PORT_ID_PRIMARY_SPDIF_TX:
  1124. case AFE_PORT_ID_SECONDARY_SPDIF_RX:
  1125. case AFE_PORT_ID_SECONDARY_SPDIF_TX:
  1126. ret_size =
  1127. SIZEOF_CFG_CMD(afe_param_id_spdif_cfg_v2);
  1128. break;
  1129. case SLIMBUS_0_RX:
  1130. case SLIMBUS_0_TX:
  1131. case SLIMBUS_1_RX:
  1132. case SLIMBUS_1_TX:
  1133. case SLIMBUS_2_RX:
  1134. case SLIMBUS_2_TX:
  1135. case SLIMBUS_3_RX:
  1136. case SLIMBUS_3_TX:
  1137. case SLIMBUS_4_RX:
  1138. case SLIMBUS_4_TX:
  1139. case SLIMBUS_5_RX:
  1140. case SLIMBUS_5_TX:
  1141. case SLIMBUS_6_RX:
  1142. case SLIMBUS_6_TX:
  1143. case SLIMBUS_7_RX:
  1144. case SLIMBUS_7_TX:
  1145. case SLIMBUS_8_RX:
  1146. case SLIMBUS_8_TX:
  1147. case SLIMBUS_9_RX:
  1148. case SLIMBUS_9_TX:
  1149. ret_size = SIZEOF_CFG_CMD(afe_param_id_slimbus_cfg);
  1150. break;
  1151. case VOICE_PLAYBACK_TX:
  1152. case VOICE2_PLAYBACK_TX:
  1153. case VOICE_RECORD_RX:
  1154. case VOICE_RECORD_TX:
  1155. ret_size = SIZEOF_CFG_CMD(afe_param_id_pseudo_port_cfg);
  1156. break;
  1157. case RT_PROXY_PORT_001_RX:
  1158. case RT_PROXY_PORT_001_TX:
  1159. case RT_PROXY_PORT_002_RX:
  1160. case RT_PROXY_PORT_002_TX:
  1161. ret_size = SIZEOF_CFG_CMD(afe_param_id_rt_proxy_port_cfg);
  1162. break;
  1163. case AFE_PORT_ID_USB_RX:
  1164. case AFE_PORT_ID_USB_TX:
  1165. ret_size = SIZEOF_CFG_CMD(afe_param_id_usb_audio_cfg);
  1166. break;
  1167. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  1168. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  1169. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  1170. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  1171. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  1172. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  1173. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  1174. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  1175. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  1176. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  1177. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  1178. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  1179. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  1180. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  1181. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  1182. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  1183. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  1184. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  1185. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  1186. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  1187. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  1188. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  1189. ret_size = SIZEOF_CFG_CMD(afe_param_id_cdc_dma_cfg_t);
  1190. break;
  1191. case AFE_PORT_ID_PRIMARY_PCM_RX:
  1192. case AFE_PORT_ID_PRIMARY_PCM_TX:
  1193. case AFE_PORT_ID_SECONDARY_PCM_RX:
  1194. case AFE_PORT_ID_SECONDARY_PCM_TX:
  1195. case AFE_PORT_ID_TERTIARY_PCM_RX:
  1196. case AFE_PORT_ID_TERTIARY_PCM_TX:
  1197. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  1198. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  1199. case AFE_PORT_ID_QUINARY_PCM_RX:
  1200. case AFE_PORT_ID_QUINARY_PCM_TX:
  1201. case AFE_PORT_ID_SENARY_PCM_RX:
  1202. case AFE_PORT_ID_SENARY_PCM_TX:
  1203. default:
  1204. pr_debug("%s: default case 0x%x\n", __func__, port_id);
  1205. ret_size = SIZEOF_CFG_CMD(afe_param_id_pcm_cfg);
  1206. break;
  1207. }
  1208. return ret_size;
  1209. }
  1210. /**
  1211. * afe_q6_interface_prepare -
  1212. * wrapper API to check Q6 AFE registered to APR otherwise registers
  1213. *
  1214. * Returns 0 on success or error on failure.
  1215. */
  1216. int afe_q6_interface_prepare(void)
  1217. {
  1218. int ret = 0;
  1219. pr_debug("%s:\n", __func__);
  1220. if (this_afe.apr == NULL) {
  1221. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  1222. 0xFFFFFFFF, &this_afe);
  1223. if (this_afe.apr == NULL) {
  1224. pr_err("%s: Unable to register AFE\n", __func__);
  1225. ret = -ENETRESET;
  1226. }
  1227. rtac_set_afe_handle(this_afe.apr);
  1228. }
  1229. return ret;
  1230. }
  1231. EXPORT_SYMBOL(afe_q6_interface_prepare);
  1232. /*
  1233. * afe_apr_send_pkt : returns 0 on success, negative otherwise.
  1234. */
  1235. static int afe_apr_send_pkt(void *data, wait_queue_head_t *wait)
  1236. {
  1237. int ret;
  1238. mutex_lock(&this_afe.afe_apr_lock);
  1239. if (wait)
  1240. atomic_set(&this_afe.state, 1);
  1241. atomic_set(&this_afe.status, 0);
  1242. ret = apr_send_pkt(this_afe.apr, data);
  1243. if (ret > 0) {
  1244. if (wait) {
  1245. ret = wait_event_timeout(*wait,
  1246. (atomic_read(&this_afe.state) == 0),
  1247. msecs_to_jiffies(2 * TIMEOUT_MS));
  1248. if (!ret) {
  1249. pr_err_ratelimited("%s: request timedout\n",
  1250. __func__);
  1251. ret = -ETIMEDOUT;
  1252. trace_printk("%s: wait for ADSP response timed out\n",
  1253. __func__);
  1254. } else if (atomic_read(&this_afe.status) > 0) {
  1255. pr_err("%s: DSP returned error[%s]\n", __func__,
  1256. adsp_err_get_err_str(atomic_read(
  1257. &this_afe.status)));
  1258. ret = adsp_err_get_lnx_err_code(
  1259. atomic_read(&this_afe.status));
  1260. } else {
  1261. ret = 0;
  1262. }
  1263. } else {
  1264. ret = 0;
  1265. }
  1266. } else if (ret == 0) {
  1267. pr_err("%s: packet not transmitted\n", __func__);
  1268. /* apr_send_pkt can return 0 when nothing is transmitted */
  1269. ret = -EINVAL;
  1270. }
  1271. pr_debug("%s: leave %d\n", __func__, ret);
  1272. mutex_unlock(&this_afe.afe_apr_lock);
  1273. return ret;
  1274. }
  1275. /*
  1276. * afe_apr_send_clk_pkt : returns 0 on success, negative otherwise.
  1277. */
  1278. static int afe_apr_send_clk_pkt(void *data, wait_queue_head_t *wait)
  1279. {
  1280. int ret;
  1281. if (wait)
  1282. atomic_set(&this_afe.clk_state, 1);
  1283. atomic_set(&this_afe.clk_status, 0);
  1284. ret = apr_send_pkt(this_afe.apr, data);
  1285. if (ret > 0) {
  1286. if (wait) {
  1287. ret = wait_event_timeout(*wait,
  1288. (atomic_read(&this_afe.clk_state) == 0),
  1289. msecs_to_jiffies(2 * TIMEOUT_MS));
  1290. if (!ret) {
  1291. pr_err("%s: timeout\n", __func__);
  1292. ret = -ETIMEDOUT;
  1293. } else if (atomic_read(&this_afe.clk_status) > 0) {
  1294. pr_err("%s: DSP returned error[%s]\n", __func__,
  1295. adsp_err_get_err_str(atomic_read(
  1296. &this_afe.clk_status)));
  1297. ret = adsp_err_get_lnx_err_code(
  1298. atomic_read(&this_afe.clk_status));
  1299. } else {
  1300. ret = 0;
  1301. }
  1302. } else {
  1303. ret = 0;
  1304. }
  1305. } else if (ret == 0) {
  1306. pr_err("%s: packet not transmitted\n", __func__);
  1307. /* apr_send_pkt can return 0 when nothing is transmitted */
  1308. ret = -EINVAL;
  1309. }
  1310. pr_debug("%s: leave %d\n", __func__, ret);
  1311. return ret;
  1312. }
  1313. /* This function shouldn't be called directly. Instead call q6afe_set_params. */
  1314. static int q6afe_set_params_v2(u16 port_id, int index,
  1315. struct mem_mapping_hdr *mem_hdr,
  1316. u8 *packed_param_data, u32 packed_data_size)
  1317. {
  1318. struct afe_port_cmd_set_param_v2 *set_param = NULL;
  1319. uint32_t size = sizeof(struct afe_port_cmd_set_param_v2);
  1320. int rc = 0;
  1321. if (packed_param_data != NULL)
  1322. size += packed_data_size;
  1323. set_param = kzalloc(size, GFP_KERNEL);
  1324. if (set_param == NULL)
  1325. return -ENOMEM;
  1326. set_param->apr_hdr.hdr_field =
  1327. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1328. APR_PKT_VER);
  1329. set_param->apr_hdr.pkt_size = size;
  1330. set_param->apr_hdr.src_port = 0;
  1331. set_param->apr_hdr.dest_port = 0;
  1332. set_param->apr_hdr.token = index;
  1333. set_param->apr_hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  1334. set_param->port_id = port_id;
  1335. if (packed_data_size > U16_MAX) {
  1336. pr_err("%s: Invalid data size for set params V2 %d\n", __func__,
  1337. packed_data_size);
  1338. rc = -EINVAL;
  1339. goto done;
  1340. }
  1341. set_param->payload_size = packed_data_size;
  1342. if (mem_hdr != NULL) {
  1343. set_param->mem_hdr = *mem_hdr;
  1344. } else if (packed_param_data != NULL) {
  1345. memcpy(&set_param->param_data, packed_param_data,
  1346. packed_data_size);
  1347. } else {
  1348. pr_err("%s: Both memory header and param data are NULL\n",
  1349. __func__);
  1350. rc = -EINVAL;
  1351. goto done;
  1352. }
  1353. rc = afe_apr_send_pkt(set_param, &this_afe.wait[index]);
  1354. done:
  1355. kfree(set_param);
  1356. return rc;
  1357. }
  1358. /* This function shouldn't be called directly. Instead call q6afe_set_params. */
  1359. static int q6afe_set_params_v3(u16 port_id, int index,
  1360. struct mem_mapping_hdr *mem_hdr,
  1361. u8 *packed_param_data, u32 packed_data_size)
  1362. {
  1363. struct afe_port_cmd_set_param_v3 *set_param = NULL;
  1364. uint32_t size = sizeof(struct afe_port_cmd_set_param_v3);
  1365. int rc = 0;
  1366. if (packed_param_data != NULL)
  1367. size += packed_data_size;
  1368. set_param = kzalloc(size, GFP_KERNEL);
  1369. if (set_param == NULL)
  1370. return -ENOMEM;
  1371. set_param->apr_hdr.hdr_field =
  1372. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1373. APR_PKT_VER);
  1374. set_param->apr_hdr.pkt_size = size;
  1375. set_param->apr_hdr.src_port = 0;
  1376. set_param->apr_hdr.dest_port = 0;
  1377. set_param->apr_hdr.token = index;
  1378. set_param->apr_hdr.opcode = AFE_PORT_CMD_SET_PARAM_V3;
  1379. set_param->port_id = port_id;
  1380. set_param->payload_size = packed_data_size;
  1381. if (mem_hdr != NULL) {
  1382. set_param->mem_hdr = *mem_hdr;
  1383. } else if (packed_param_data != NULL) {
  1384. memcpy(&set_param->param_data, packed_param_data,
  1385. packed_data_size);
  1386. } else {
  1387. pr_err("%s: Both memory header and param data are NULL\n",
  1388. __func__);
  1389. rc = -EINVAL;
  1390. goto done;
  1391. }
  1392. rc = afe_apr_send_pkt(set_param, &this_afe.wait[index]);
  1393. done:
  1394. kfree(set_param);
  1395. return rc;
  1396. }
  1397. static int q6afe_set_params(u16 port_id, int index,
  1398. struct mem_mapping_hdr *mem_hdr,
  1399. u8 *packed_param_data, u32 packed_data_size)
  1400. {
  1401. int ret = 0;
  1402. ret = afe_q6_interface_prepare();
  1403. if (ret != 0) {
  1404. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  1405. return ret;
  1406. }
  1407. port_id = q6audio_get_port_id(port_id);
  1408. ret = q6audio_validate_port(port_id);
  1409. if (ret < 0) {
  1410. pr_err("%s: Not a valid port id = 0x%x ret %d\n", __func__,
  1411. port_id, ret);
  1412. return -EINVAL;
  1413. }
  1414. if (index < 0 || index >= AFE_MAX_PORTS) {
  1415. pr_err("%s: AFE port index[%d] invalid\n", __func__, index);
  1416. return -EINVAL;
  1417. }
  1418. if (q6common_is_instance_id_supported())
  1419. return q6afe_set_params_v3(port_id, index, mem_hdr,
  1420. packed_param_data, packed_data_size);
  1421. else
  1422. return q6afe_set_params_v2(port_id, index, mem_hdr,
  1423. packed_param_data, packed_data_size);
  1424. }
  1425. static int q6afe_pack_and_set_param_in_band(u16 port_id, int index,
  1426. struct param_hdr_v3 param_hdr,
  1427. u8 *param_data)
  1428. {
  1429. u8 *packed_param_data = NULL;
  1430. int packed_data_size = sizeof(union param_hdrs) + param_hdr.param_size;
  1431. int ret;
  1432. packed_param_data = kzalloc(packed_data_size, GFP_KERNEL);
  1433. if (packed_param_data == NULL)
  1434. return -ENOMEM;
  1435. ret = q6common_pack_pp_params(packed_param_data, &param_hdr, param_data,
  1436. &packed_data_size);
  1437. if (ret) {
  1438. pr_err("%s: Failed to pack param header and data, error %d\n",
  1439. __func__, ret);
  1440. goto fail_cmd;
  1441. }
  1442. ret = q6afe_set_params(port_id, index, NULL, packed_param_data,
  1443. packed_data_size);
  1444. fail_cmd:
  1445. kfree(packed_param_data);
  1446. return ret;
  1447. }
  1448. static int q6afe_set_aanc_level(void)
  1449. {
  1450. struct param_hdr_v3 param_hdr;
  1451. struct afe_param_id_aanc_noise_reduction aanc_noise_level;
  1452. int ret = 0;
  1453. uint16_t tx_port = 0;
  1454. if (!this_afe.aanc_info.aanc_active)
  1455. return -EINVAL;
  1456. pr_debug("%s: level: %d\n", __func__, this_afe.aanc_info.level);
  1457. memset(&aanc_noise_level, 0, sizeof(aanc_noise_level));
  1458. aanc_noise_level.minor_version = 1;
  1459. aanc_noise_level.ad_beta = this_afe.aanc_info.level;
  1460. memset(&param_hdr, 0, sizeof(param_hdr));
  1461. param_hdr.module_id = AFE_MODULE_AANC;
  1462. param_hdr.instance_id = INSTANCE_ID_0;
  1463. param_hdr.param_id = AFE_PARAM_ID_AANC_NOISE_REDUCTION;
  1464. param_hdr.param_size = sizeof(struct afe_param_id_aanc_noise_reduction);
  1465. tx_port = this_afe.aanc_info.aanc_tx_port;
  1466. ret = q6afe_pack_and_set_param_in_band(tx_port,
  1467. q6audio_get_port_index(tx_port),
  1468. param_hdr,
  1469. (u8 *) &aanc_noise_level);
  1470. if (ret)
  1471. pr_err("%s: AANC noise level enable failed for tx_port 0x%x ret %d\n",
  1472. __func__, tx_port, ret);
  1473. return ret;
  1474. }
  1475. /**
  1476. * afe_set_aanc_noise_level - controls aanc noise reduction strength
  1477. *
  1478. * @level: Noise level to be controlled
  1479. *
  1480. * Returns 0 on success or error on failure.
  1481. */
  1482. int afe_set_aanc_noise_level(int level)
  1483. {
  1484. int ret = 0;
  1485. if (this_afe.aanc_info.level == level)
  1486. return ret;
  1487. mutex_lock(&this_afe.afe_cmd_lock);
  1488. this_afe.aanc_info.level = level;
  1489. ret = q6afe_set_aanc_level();
  1490. mutex_unlock(&this_afe.afe_cmd_lock);
  1491. return ret;
  1492. }
  1493. EXPORT_SYMBOL(afe_set_aanc_noise_level);
  1494. /* This function shouldn't be called directly. Instead call q6afe_get_param. */
  1495. static int q6afe_get_params_v2(u16 port_id, int index,
  1496. struct mem_mapping_hdr *mem_hdr,
  1497. struct param_hdr_v3 *param_hdr)
  1498. {
  1499. struct afe_port_cmd_get_param_v2 afe_get_param;
  1500. u32 param_size = param_hdr->param_size;
  1501. memset(&afe_get_param, 0, sizeof(afe_get_param));
  1502. afe_get_param.apr_hdr.hdr_field =
  1503. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1504. APR_PKT_VER);
  1505. afe_get_param.apr_hdr.pkt_size = sizeof(afe_get_param);
  1506. afe_get_param.apr_hdr.src_port = 0;
  1507. afe_get_param.apr_hdr.dest_port = 0;
  1508. afe_get_param.apr_hdr.token = index;
  1509. afe_get_param.apr_hdr.opcode = AFE_PORT_CMD_GET_PARAM_V2;
  1510. afe_get_param.port_id = port_id;
  1511. afe_get_param.payload_size = sizeof(struct param_hdr_v1) + param_size;
  1512. if (mem_hdr != NULL)
  1513. afe_get_param.mem_hdr = *mem_hdr;
  1514. /* Set MID and PID in command */
  1515. afe_get_param.module_id = param_hdr->module_id;
  1516. afe_get_param.param_id = param_hdr->param_id;
  1517. /* Set param header in payload */
  1518. afe_get_param.param_hdr.module_id = param_hdr->module_id;
  1519. afe_get_param.param_hdr.param_id = param_hdr->param_id;
  1520. afe_get_param.param_hdr.param_size = param_size;
  1521. return afe_apr_send_pkt(&afe_get_param, &this_afe.wait[index]);
  1522. }
  1523. /* This function shouldn't be called directly. Instead call q6afe_get_param. */
  1524. static int q6afe_get_params_v3(u16 port_id, int index,
  1525. struct mem_mapping_hdr *mem_hdr,
  1526. struct param_hdr_v3 *param_hdr)
  1527. {
  1528. struct afe_port_cmd_get_param_v3 afe_get_param;
  1529. memset(&afe_get_param, 0, sizeof(afe_get_param));
  1530. afe_get_param.apr_hdr.hdr_field =
  1531. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1532. APR_PKT_VER);
  1533. afe_get_param.apr_hdr.pkt_size = sizeof(afe_get_param);
  1534. afe_get_param.apr_hdr.src_port = 0;
  1535. afe_get_param.apr_hdr.dest_port = 0;
  1536. afe_get_param.apr_hdr.token = index;
  1537. afe_get_param.apr_hdr.opcode = AFE_PORT_CMD_GET_PARAM_V3;
  1538. afe_get_param.port_id = port_id;
  1539. if (mem_hdr != NULL)
  1540. afe_get_param.mem_hdr = *mem_hdr;
  1541. /* Set param header in command, no payload in V3 */
  1542. afe_get_param.param_hdr = *param_hdr;
  1543. return afe_apr_send_pkt(&afe_get_param, &this_afe.wait[index]);
  1544. }
  1545. /*
  1546. * Calling functions copy param data directly from this_afe. Do not copy data
  1547. * back to caller here.
  1548. */
  1549. static int q6afe_get_params(u16 port_id, struct mem_mapping_hdr *mem_hdr,
  1550. struct param_hdr_v3 *param_hdr)
  1551. {
  1552. int index;
  1553. int ret;
  1554. ret = afe_q6_interface_prepare();
  1555. if (ret != 0) {
  1556. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  1557. return ret;
  1558. }
  1559. port_id = q6audio_get_port_id(port_id);
  1560. ret = q6audio_validate_port(port_id);
  1561. if (ret < 0) {
  1562. pr_err("%s: Not a valid port id = 0x%x ret %d\n", __func__,
  1563. port_id, ret);
  1564. return -EINVAL;
  1565. }
  1566. index = q6audio_get_port_index(port_id);
  1567. if (index < 0 || index >= AFE_MAX_PORTS) {
  1568. pr_err("%s: AFE port index[%d] invalid\n", __func__, index);
  1569. return -EINVAL;
  1570. }
  1571. if (q6common_is_instance_id_supported())
  1572. return q6afe_get_params_v3(port_id, index, NULL, param_hdr);
  1573. else
  1574. return q6afe_get_params_v2(port_id, index, NULL, param_hdr);
  1575. }
  1576. /*
  1577. * This function shouldn't be called directly. Instead call
  1578. * q6afe_svc_set_params.
  1579. */
  1580. static int q6afe_svc_set_params_v1(int index, struct mem_mapping_hdr *mem_hdr,
  1581. u8 *packed_param_data, u32 packed_data_size)
  1582. {
  1583. struct afe_svc_cmd_set_param_v1 *svc_set_param = NULL;
  1584. uint32_t size = sizeof(struct afe_svc_cmd_set_param_v1);
  1585. int rc = 0;
  1586. if (packed_param_data != NULL)
  1587. size += packed_data_size;
  1588. svc_set_param = kzalloc(size, GFP_KERNEL);
  1589. if (svc_set_param == NULL)
  1590. return -ENOMEM;
  1591. svc_set_param->apr_hdr.hdr_field =
  1592. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1593. APR_PKT_VER);
  1594. svc_set_param->apr_hdr.pkt_size = size;
  1595. svc_set_param->apr_hdr.src_port = 0;
  1596. svc_set_param->apr_hdr.dest_port = 0;
  1597. svc_set_param->apr_hdr.token = index;
  1598. svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM;
  1599. svc_set_param->payload_size = packed_data_size;
  1600. if (mem_hdr != NULL) {
  1601. /* Out of band case. */
  1602. svc_set_param->mem_hdr = *mem_hdr;
  1603. } else if (packed_param_data != NULL) {
  1604. /* In band case. */
  1605. memcpy(&svc_set_param->param_data, packed_param_data,
  1606. packed_data_size);
  1607. } else {
  1608. pr_err("%s: Both memory header and param data are NULL\n",
  1609. __func__);
  1610. rc = -EINVAL;
  1611. goto done;
  1612. }
  1613. rc = afe_apr_send_pkt(svc_set_param, &this_afe.wait[index]);
  1614. done:
  1615. kfree(svc_set_param);
  1616. return rc;
  1617. }
  1618. /*
  1619. * This function shouldn't be called directly. Instead call
  1620. * q6afe_svc_set_params.
  1621. */
  1622. static int q6afe_svc_set_params_v2(int index, struct mem_mapping_hdr *mem_hdr,
  1623. u8 *packed_param_data, u32 packed_data_size)
  1624. {
  1625. struct afe_svc_cmd_set_param_v2 *svc_set_param = NULL;
  1626. uint16_t size = sizeof(struct afe_svc_cmd_set_param_v2);
  1627. int rc = 0;
  1628. if (packed_param_data != NULL)
  1629. size += packed_data_size;
  1630. svc_set_param = kzalloc(size, GFP_KERNEL);
  1631. if (svc_set_param == NULL)
  1632. return -ENOMEM;
  1633. svc_set_param->apr_hdr.hdr_field =
  1634. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1635. APR_PKT_VER);
  1636. svc_set_param->apr_hdr.pkt_size = size;
  1637. svc_set_param->apr_hdr.src_port = 0;
  1638. svc_set_param->apr_hdr.dest_port = 0;
  1639. svc_set_param->apr_hdr.token = index;
  1640. svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM_V2;
  1641. svc_set_param->payload_size = packed_data_size;
  1642. if (mem_hdr != NULL) {
  1643. /* Out of band case. */
  1644. svc_set_param->mem_hdr = *mem_hdr;
  1645. } else if (packed_param_data != NULL) {
  1646. /* In band case. */
  1647. memcpy(&svc_set_param->param_data, packed_param_data,
  1648. packed_data_size);
  1649. } else {
  1650. pr_err("%s: Both memory header and param data are NULL\n",
  1651. __func__);
  1652. rc = -EINVAL;
  1653. goto done;
  1654. }
  1655. rc = afe_apr_send_pkt(svc_set_param, &this_afe.wait[index]);
  1656. done:
  1657. kfree(svc_set_param);
  1658. return rc;
  1659. }
  1660. /*
  1661. * This function shouldn't be called directly. Instead call
  1662. * q6afe_clk_set_params.
  1663. */
  1664. static int q6afe_clk_set_params_v1(int index, struct mem_mapping_hdr *mem_hdr,
  1665. u8 *packed_param_data, u32 packed_data_size)
  1666. {
  1667. struct afe_svc_cmd_set_param_v1 *svc_set_param = NULL;
  1668. uint32_t size = sizeof(struct afe_svc_cmd_set_param_v1);
  1669. int rc = 0;
  1670. if (packed_param_data != NULL)
  1671. size += packed_data_size;
  1672. svc_set_param = kzalloc(size, GFP_KERNEL);
  1673. if (svc_set_param == NULL)
  1674. return -ENOMEM;
  1675. svc_set_param->apr_hdr.hdr_field =
  1676. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1677. APR_PKT_VER);
  1678. svc_set_param->apr_hdr.pkt_size = size;
  1679. svc_set_param->apr_hdr.src_port = 0;
  1680. svc_set_param->apr_hdr.dest_port = 0;
  1681. svc_set_param->apr_hdr.token = AFE_CLK_TOKEN;
  1682. svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM;
  1683. svc_set_param->payload_size = packed_data_size;
  1684. if (mem_hdr != NULL) {
  1685. /* Out of band case. */
  1686. svc_set_param->mem_hdr = *mem_hdr;
  1687. } else if (packed_param_data != NULL) {
  1688. /* In band case. */
  1689. memcpy(&svc_set_param->param_data, packed_param_data,
  1690. packed_data_size);
  1691. } else {
  1692. pr_err("%s: Both memory header and param data are NULL\n",
  1693. __func__);
  1694. rc = -EINVAL;
  1695. goto done;
  1696. }
  1697. rc = afe_apr_send_clk_pkt(svc_set_param, &this_afe.clk_wait);
  1698. done:
  1699. kfree(svc_set_param);
  1700. return rc;
  1701. }
  1702. /*
  1703. * This function shouldn't be called directly. Instead call
  1704. * q6afe_clk_set_params.
  1705. */
  1706. static int q6afe_clk_set_params_v2(int index, struct mem_mapping_hdr *mem_hdr,
  1707. u8 *packed_param_data, u32 packed_data_size)
  1708. {
  1709. struct afe_svc_cmd_set_param_v2 *svc_set_param = NULL;
  1710. uint16_t size = sizeof(struct afe_svc_cmd_set_param_v2);
  1711. int rc = 0;
  1712. if (packed_param_data != NULL)
  1713. size += packed_data_size;
  1714. svc_set_param = kzalloc(size, GFP_KERNEL);
  1715. if (svc_set_param == NULL)
  1716. return -ENOMEM;
  1717. svc_set_param->apr_hdr.hdr_field =
  1718. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1719. APR_PKT_VER);
  1720. svc_set_param->apr_hdr.pkt_size = size;
  1721. svc_set_param->apr_hdr.src_port = 0;
  1722. svc_set_param->apr_hdr.dest_port = 0;
  1723. svc_set_param->apr_hdr.token = AFE_CLK_TOKEN;
  1724. svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM_V2;
  1725. svc_set_param->payload_size = packed_data_size;
  1726. if (mem_hdr != NULL) {
  1727. /* Out of band case. */
  1728. svc_set_param->mem_hdr = *mem_hdr;
  1729. } else if (packed_param_data != NULL) {
  1730. /* In band case. */
  1731. memcpy(&svc_set_param->param_data, packed_param_data,
  1732. packed_data_size);
  1733. } else {
  1734. pr_err("%s: Both memory header and param data are NULL\n",
  1735. __func__);
  1736. rc = -EINVAL;
  1737. goto done;
  1738. }
  1739. rc = afe_apr_send_clk_pkt(svc_set_param, &this_afe.clk_wait);
  1740. done:
  1741. kfree(svc_set_param);
  1742. return rc;
  1743. }
  1744. static int q6afe_clk_set_params(int index, struct mem_mapping_hdr *mem_hdr,
  1745. u8 *packed_param_data, u32 packed_data_size,
  1746. bool is_iid_supported)
  1747. {
  1748. int ret;
  1749. ret = afe_q6_interface_prepare();
  1750. if (ret != 0) {
  1751. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  1752. return ret;
  1753. }
  1754. if (is_iid_supported)
  1755. return q6afe_clk_set_params_v2(index, mem_hdr,
  1756. packed_param_data,
  1757. packed_data_size);
  1758. else
  1759. return q6afe_clk_set_params_v1(index, mem_hdr,
  1760. packed_param_data,
  1761. packed_data_size);
  1762. }
  1763. static int q6afe_svc_set_params(int index, struct mem_mapping_hdr *mem_hdr,
  1764. u8 *packed_param_data, u32 packed_data_size,
  1765. bool is_iid_supported)
  1766. {
  1767. int ret;
  1768. ret = afe_q6_interface_prepare();
  1769. if (ret != 0) {
  1770. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  1771. return ret;
  1772. }
  1773. if (is_iid_supported)
  1774. return q6afe_svc_set_params_v2(index, mem_hdr,
  1775. packed_param_data,
  1776. packed_data_size);
  1777. else
  1778. return q6afe_svc_set_params_v1(index, mem_hdr,
  1779. packed_param_data,
  1780. packed_data_size);
  1781. }
  1782. static int q6afe_svc_pack_and_set_param_in_band(int index,
  1783. struct param_hdr_v3 param_hdr,
  1784. u8 *param_data)
  1785. {
  1786. u8 *packed_param_data = NULL;
  1787. u32 packed_data_size =
  1788. sizeof(struct param_hdr_v3) + param_hdr.param_size;
  1789. int ret = 0;
  1790. bool is_iid_supported = q6common_is_instance_id_supported();
  1791. packed_param_data = kzalloc(packed_data_size, GFP_KERNEL);
  1792. if (!packed_param_data)
  1793. return -ENOMEM;
  1794. ret = q6common_pack_pp_params_v2(packed_param_data, &param_hdr,
  1795. param_data, &packed_data_size,
  1796. is_iid_supported);
  1797. if (ret) {
  1798. pr_err("%s: Failed to pack parameter header and data, error %d\n",
  1799. __func__, ret);
  1800. goto done;
  1801. }
  1802. if (param_hdr.module_id == AFE_MODULE_CLOCK_SET)
  1803. ret = q6afe_clk_set_params(index, NULL, packed_param_data,
  1804. packed_data_size, is_iid_supported);
  1805. else
  1806. ret = q6afe_svc_set_params(index, NULL, packed_param_data,
  1807. packed_data_size, is_iid_supported);
  1808. done:
  1809. kfree(packed_param_data);
  1810. return ret;
  1811. }
  1812. static int afe_send_cal_block(u16 port_id, struct cal_block_data *cal_block)
  1813. {
  1814. struct mem_mapping_hdr mem_hdr;
  1815. int payload_size = 0;
  1816. int result = 0;
  1817. memset(&mem_hdr, 0, sizeof(mem_hdr));
  1818. if (!cal_block) {
  1819. pr_debug("%s: No AFE cal to send!\n", __func__);
  1820. result = -EINVAL;
  1821. goto done;
  1822. }
  1823. if (cal_block->cal_data.size <= 0) {
  1824. pr_debug("%s: AFE cal has invalid size!\n", __func__);
  1825. result = -EINVAL;
  1826. goto done;
  1827. }
  1828. payload_size = cal_block->cal_data.size;
  1829. mem_hdr.data_payload_addr_lsw =
  1830. lower_32_bits(cal_block->cal_data.paddr);
  1831. mem_hdr.data_payload_addr_msw =
  1832. msm_audio_populate_upper_32_bits(cal_block->cal_data.paddr);
  1833. mem_hdr.mem_map_handle = cal_block->map_data.q6map_handle;
  1834. pr_debug("%s: AFE cal sent for device port = 0x%x, cal size = %zd, cal addr = 0x%pK\n",
  1835. __func__, port_id,
  1836. cal_block->cal_data.size, &cal_block->cal_data.paddr);
  1837. result = q6afe_set_params(port_id, q6audio_get_port_index(port_id),
  1838. &mem_hdr, NULL, payload_size);
  1839. if (result)
  1840. pr_err("%s: AFE cal for port 0x%x failed %d\n",
  1841. __func__, port_id, result);
  1842. done:
  1843. return result;
  1844. }
  1845. static int afe_send_custom_topology_block(struct cal_block_data *cal_block)
  1846. {
  1847. int result = 0;
  1848. int index = 0;
  1849. struct cmd_set_topologies afe_cal;
  1850. if (!cal_block) {
  1851. pr_err("%s: No AFE SVC cal to send!\n", __func__);
  1852. return -EINVAL;
  1853. }
  1854. if (cal_block->cal_data.size <= 0) {
  1855. pr_err("%s: AFE SVC cal has invalid size: %zd!\n",
  1856. __func__, cal_block->cal_data.size);
  1857. return -EINVAL;
  1858. }
  1859. afe_cal.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  1860. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  1861. afe_cal.hdr.pkt_size = sizeof(afe_cal);
  1862. afe_cal.hdr.src_port = 0;
  1863. afe_cal.hdr.dest_port = 0;
  1864. afe_cal.hdr.token = index;
  1865. afe_cal.hdr.opcode = AFE_CMD_ADD_TOPOLOGIES;
  1866. afe_cal.payload_size = cal_block->cal_data.size;
  1867. afe_cal.payload_addr_lsw =
  1868. lower_32_bits(cal_block->cal_data.paddr);
  1869. afe_cal.payload_addr_msw =
  1870. msm_audio_populate_upper_32_bits(cal_block->cal_data.paddr);
  1871. afe_cal.mem_map_handle = cal_block->map_data.q6map_handle;
  1872. pr_debug("%s:cmd_id:0x%x calsize:%zd memmap_hdl:0x%x caladdr:0x%pK",
  1873. __func__, AFE_CMD_ADD_TOPOLOGIES, cal_block->cal_data.size,
  1874. afe_cal.mem_map_handle, &cal_block->cal_data.paddr);
  1875. result = afe_apr_send_pkt(&afe_cal, &this_afe.wait[index]);
  1876. if (result)
  1877. pr_err("%s: AFE send topology for command 0x%x failed %d\n",
  1878. __func__, AFE_CMD_ADD_TOPOLOGIES, result);
  1879. return result;
  1880. }
  1881. static void afe_send_custom_topology(void)
  1882. {
  1883. struct cal_block_data *cal_block = NULL;
  1884. int cal_index = AFE_CUST_TOPOLOGY_CAL;
  1885. int ret;
  1886. if (this_afe.cal_data[cal_index] == NULL) {
  1887. pr_err("%s: cal_index %d not allocated!\n",
  1888. __func__, cal_index);
  1889. return;
  1890. }
  1891. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  1892. if (!this_afe.set_custom_topology)
  1893. goto unlock;
  1894. this_afe.set_custom_topology = 0;
  1895. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  1896. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  1897. pr_err("%s cal_block not found!!\n", __func__);
  1898. goto unlock;
  1899. }
  1900. pr_debug("%s: Sending cal_index cal %d\n", __func__, cal_index);
  1901. ret = remap_cal_data(cal_block, cal_index);
  1902. if (ret) {
  1903. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  1904. __func__, cal_index);
  1905. goto unlock;
  1906. }
  1907. ret = afe_send_custom_topology_block(cal_block);
  1908. if (ret < 0) {
  1909. pr_err("%s: No cal sent for cal_index %d! ret %d\n",
  1910. __func__, cal_index, ret);
  1911. goto unlock;
  1912. }
  1913. pr_debug("%s:sent custom topology for AFE\n", __func__);
  1914. unlock:
  1915. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  1916. }
  1917. static int afe_spk_ramp_dn_cfg(int port)
  1918. {
  1919. struct param_hdr_v3 param_info;
  1920. int ret = -EINVAL;
  1921. memset(&param_info, 0, sizeof(param_info));
  1922. if (afe_get_port_type(port) != MSM_AFE_PORT_TYPE_RX) {
  1923. pr_debug("%s: port doesn't match 0x%x\n", __func__, port);
  1924. return 0;
  1925. }
  1926. if (this_afe.prot_cfg.mode == MSM_SPKR_PROT_DISABLED ||
  1927. (this_afe.vi_rx_port != port)) {
  1928. pr_debug("%s: spkr protection disabled port 0x%x %d 0x%x\n",
  1929. __func__, port, ret, this_afe.vi_rx_port);
  1930. return 0;
  1931. }
  1932. param_info.module_id = AFE_MODULE_FB_SPKR_PROT_V2_RX;
  1933. param_info.instance_id = INSTANCE_ID_0;
  1934. param_info.param_id = AFE_PARAM_ID_FBSP_PTONE_RAMP_CFG;
  1935. param_info.param_size = 0;
  1936. ret = q6afe_pack_and_set_param_in_band(port,
  1937. q6audio_get_port_index(port),
  1938. param_info, NULL);
  1939. if (ret) {
  1940. pr_err("%s: Failed to set speaker ramp duration param, err %d\n",
  1941. __func__, ret);
  1942. goto fail_cmd;
  1943. }
  1944. /* dsp needs atleast 15ms to ramp down pilot tone*/
  1945. usleep_range(15000, 15010);
  1946. ret = 0;
  1947. fail_cmd:
  1948. pr_debug("%s: config.pdata.param_id 0x%x status %d\n", __func__,
  1949. param_info.param_id, ret);
  1950. return ret;
  1951. }
  1952. /**
  1953. * afe_send_cps_config -
  1954. * to send cps speaker protection configuration
  1955. *
  1956. * @src_port: source port to send configuration to
  1957. * @cps_config: cps speaker protection v4 configuration
  1958. * @param_size: size of payload
  1959. *
  1960. * Returns 0 on success or error value on failure.
  1961. */
  1962. int afe_send_cps_config(int src_port,
  1963. struct afe_cps_hw_intf_cfg *cps_config,
  1964. int param_size)
  1965. {
  1966. struct param_hdr_v3 param_info;
  1967. int ret = -EINVAL;
  1968. u8 *packed_payload = NULL;
  1969. int cpy_size = 0;
  1970. ret = q6audio_validate_port(src_port);
  1971. if (ret < 0) {
  1972. pr_err("%s: Invalid src port 0x%x ret %d", __func__,
  1973. src_port, ret);
  1974. return -EINVAL;
  1975. }
  1976. packed_payload = kzalloc(param_size, GFP_KERNEL);
  1977. if (packed_payload == NULL)
  1978. return -ENOMEM;
  1979. cpy_size = sizeof(struct afe_cps_hw_intf_cfg) -
  1980. sizeof(cps_config->spkr_dep_cfg);
  1981. memcpy(packed_payload, cps_config, cpy_size);
  1982. memcpy(packed_payload + cpy_size, cps_config->spkr_dep_cfg,
  1983. sizeof(struct lpass_swr_spkr_dep_cfg_t)
  1984. * cps_config->hw_reg_cfg.num_spkr);
  1985. memset(&param_info, 0, sizeof(param_info));
  1986. mutex_lock(&this_afe.afe_cmd_lock);
  1987. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_RX;
  1988. param_info.instance_id = INSTANCE_ID_0;
  1989. param_info.param_id = AFE_PARAM_ID_CPS_LPASS_HW_INTF_CFG;
  1990. param_info.param_size = param_size;
  1991. ret = q6afe_pack_and_set_param_in_band(src_port,
  1992. q6audio_get_port_index(src_port),
  1993. param_info, packed_payload);
  1994. if (ret)
  1995. pr_err("%s: port = 0x%x param = 0x%x failed %d\n", __func__,
  1996. src_port, param_info.param_id, ret);
  1997. mutex_unlock(&this_afe.afe_cmd_lock);
  1998. pr_debug("%s: config.pdata.param_id 0x%x status %d 0x%x\n", __func__,
  1999. param_info.param_id, ret, src_port);
  2000. kfree(packed_payload);
  2001. return ret;
  2002. }
  2003. EXPORT_SYMBOL(afe_send_cps_config);
  2004. static int afe_spk_prot_prepare(int src_port, int dst_port, int param_id,
  2005. union afe_spkr_prot_config *prot_config, uint32_t param_size)
  2006. {
  2007. struct param_hdr_v3 param_info;
  2008. int ret = -EINVAL;
  2009. memset(&param_info, 0, sizeof(param_info));
  2010. ret = q6audio_validate_port(src_port);
  2011. if (ret < 0) {
  2012. pr_err("%s: Invalid src port 0x%x ret %d", __func__, src_port,
  2013. ret);
  2014. ret = -EINVAL;
  2015. goto fail_cmd;
  2016. }
  2017. ret = q6audio_validate_port(dst_port);
  2018. if (ret < 0) {
  2019. pr_err("%s: Invalid dst port 0x%x ret %d", __func__,
  2020. dst_port, ret);
  2021. ret = -EINVAL;
  2022. goto fail_cmd;
  2023. }
  2024. switch (param_id) {
  2025. case AFE_PARAM_ID_FBSP_MODE_RX_CFG:
  2026. case AFE_PARAM_ID_SP_RX_LIMITER_TH:
  2027. param_info.module_id = AFE_MODULE_FB_SPKR_PROT_V2_RX;
  2028. break;
  2029. case AFE_PARAM_ID_SP_V4_OP_MODE:
  2030. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_RX;
  2031. break;
  2032. case AFE_PARAM_ID_FEEDBACK_PATH_CFG:
  2033. this_afe.vi_tx_port = src_port;
  2034. this_afe.vi_rx_port = dst_port;
  2035. param_info.module_id = AFE_MODULE_FEEDBACK;
  2036. break;
  2037. /*
  2038. * AFE_PARAM_ID_SPKR_CALIB_VI_PROC_CFG_V2 is same as
  2039. * AFE_PARAM_ID_SP_V2_TH_VI_MODE_CFG. V_VALI_CFG uses
  2040. * same module TH_VI.
  2041. */
  2042. case AFE_PARAM_ID_SPKR_CALIB_VI_PROC_CFG_V2:
  2043. case AFE_PARAM_ID_SP_V2_TH_VI_FTM_CFG:
  2044. case AFE_PARAM_ID_SP_V2_TH_VI_V_VALI_CFG:
  2045. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  2046. break;
  2047. case AFE_PARAM_ID_SP_V2_EX_VI_MODE_CFG:
  2048. case AFE_PARAM_ID_SP_V2_EX_VI_FTM_CFG:
  2049. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI;
  2050. break;
  2051. case AFE_PARAM_ID_SP_V4_VI_CHANNEL_MAP_CFG:
  2052. case AFE_PARAM_ID_SP_V4_VI_OP_MODE_CFG:
  2053. case AFE_PARAM_ID_SP_V4_VI_R0T0_CFG:
  2054. case AFE_PARAM_ID_SP_V4_TH_VI_FTM_CFG:
  2055. case AFE_PARAM_ID_SP_V4_TH_VI_V_VALI_CFG:
  2056. case AFE_PARAM_ID_SP_V4_EX_VI_MODE_CFG:
  2057. case AFE_PARAM_ID_SP_V4_EX_VI_FTM_CFG:
  2058. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  2059. break;
  2060. default:
  2061. pr_err("%s: default case 0x%x\n", __func__, param_id);
  2062. goto fail_cmd;
  2063. }
  2064. param_info.instance_id = INSTANCE_ID_0;
  2065. param_info.param_id = param_id;
  2066. param_info.param_size = param_size;
  2067. ret = q6afe_pack_and_set_param_in_band(src_port,
  2068. q6audio_get_port_index(src_port),
  2069. param_info, (u8 *) prot_config);
  2070. if (ret)
  2071. pr_err("%s: port = 0x%x param = 0x%x failed %d\n", __func__,
  2072. src_port, param_id, ret);
  2073. fail_cmd:
  2074. pr_debug("%s: config.pdata.param_id 0x%x status %d 0x%x\n", __func__,
  2075. param_info.param_id, ret, src_port);
  2076. return ret;
  2077. }
  2078. static int afe_spkr_prot_reg_event_cfg(u16 port_id, uint32_t module_id)
  2079. {
  2080. struct afe_port_cmd_event_cfg *config;
  2081. struct afe_port_cmd_mod_evt_cfg_payload pl;
  2082. int index;
  2083. int ret;
  2084. int num_events = 1;
  2085. int cmd_size = sizeof(struct afe_port_cmd_event_cfg) +
  2086. (num_events * sizeof(struct afe_port_cmd_mod_evt_cfg_payload));
  2087. config = kzalloc(cmd_size, GFP_KERNEL);
  2088. if (!config)
  2089. return -ENOMEM;
  2090. index = q6audio_get_port_index(port_id);
  2091. if (index < 0) {
  2092. pr_err("%s: Invalid index number: %d\n", __func__, index);
  2093. ret = -EINVAL;
  2094. goto fail_idx;
  2095. }
  2096. memset(&pl, 0, sizeof(pl));
  2097. pl.module_id = module_id;
  2098. pl.event_id = AFE_PORT_SP_DC_DETECTION_EVENT;
  2099. pl.reg_flag = AFE_MODULE_REGISTER_EVENT_FLAG;
  2100. config->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2101. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  2102. config->hdr.pkt_size = cmd_size;
  2103. config->hdr.src_port = 0;
  2104. config->hdr.dest_port = 0;
  2105. config->hdr.token = index;
  2106. config->hdr.opcode = AFE_PORT_CMD_MOD_EVENT_CFG;
  2107. config->port_id = q6audio_get_port_id(port_id);
  2108. config->num_events = num_events;
  2109. config->version = 1;
  2110. memcpy(config->payload, &pl, sizeof(pl));
  2111. ret = afe_apr_send_pkt((uint32_t *) config, &this_afe.wait[index]);
  2112. fail_idx:
  2113. kfree(config);
  2114. return ret;
  2115. }
  2116. static void afe_send_cal_spv4_tx(int port_id)
  2117. {
  2118. union afe_spkr_prot_config afe_spk_config;
  2119. uint32_t size = 0;
  2120. void *tmp_ptr = NULL;
  2121. struct afe_sp_v4_param_th_vi_r0t0_cfg *th_vi_r0t0_cfg = NULL;
  2122. struct afe_sp_v4_channel_r0t0 *ch_r0t0_cfg = NULL;
  2123. struct afe_sp_v4_param_th_vi_ftm_cfg *th_vi_ftm_cfg = NULL;
  2124. struct afe_sp_v4_channel_ftm_cfg *ch_ftm_cfg = NULL;
  2125. struct afe_sp_v4_param_th_vi_v_vali_cfg *th_vi_v_vali_cfg = NULL;
  2126. struct afe_sp_v4_channel_v_vali_cfg *ch_v_vali_cfg = NULL;
  2127. struct afe_sp_v4_param_ex_vi_ftm_cfg *ex_vi_ftm_cfg = NULL;
  2128. struct afe_sp_v4_channel_ex_vi_ftm *ch_ex_vi_ftm_cfg = NULL;
  2129. uint32_t i = 0;
  2130. pr_debug("%s: Entry.. port_id %d\n", __func__, port_id);
  2131. if (this_afe.vi_tx_port == port_id) {
  2132. memcpy(&afe_spk_config.v4_ch_map_cfg, &this_afe.v4_ch_map_cfg,
  2133. sizeof(struct afe_sp_v4_param_vi_channel_map_cfg));
  2134. if (afe_spk_prot_prepare(port_id, this_afe.vi_rx_port,
  2135. AFE_PARAM_ID_SP_V4_VI_CHANNEL_MAP_CFG, &afe_spk_config,
  2136. sizeof(struct afe_sp_v4_param_vi_channel_map_cfg)))
  2137. pr_info("%s: SPKR_CALIB_CHANNEL_MAP_CFG failed\n",
  2138. __func__);
  2139. }
  2140. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL ||
  2141. this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  2142. this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL) {
  2143. pr_info("%s: Returning as no cal data cached\n", __func__);
  2144. return;
  2145. }
  2146. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2147. if ((this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED) &&
  2148. (this_afe.vi_tx_port == port_id) &&
  2149. (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9)) {
  2150. if (this_afe.prot_cfg.mode ==
  2151. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS) {
  2152. afe_spk_config.v4_vi_op_mode.th_operation_mode =
  2153. Q6AFE_MSM_SPKR_CALIBRATION;
  2154. afe_spk_config.v4_vi_op_mode.th_quick_calib_flag =
  2155. this_afe.prot_cfg.quick_calib_flag;
  2156. } else {
  2157. afe_spk_config.v4_vi_op_mode.th_operation_mode =
  2158. Q6AFE_MSM_SPKR_PROCESSING;
  2159. }
  2160. if (this_afe.th_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE)
  2161. afe_spk_config.v4_vi_op_mode.th_operation_mode =
  2162. Q6AFE_MSM_SPKR_FTM_MODE;
  2163. else if (this_afe.v_vali_cfg.mode ==
  2164. MSM_SPKR_PROT_IN_V_VALI_MODE)
  2165. afe_spk_config.v4_vi_op_mode.th_operation_mode =
  2166. Q6AFE_MSM_SPKR_V_VALI_MODE;
  2167. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_NOT_CALIBRATED) {
  2168. struct afe_sp_v4_param_vi_op_mode_cfg *v4_vi_op_mode;
  2169. v4_vi_op_mode = &afe_spk_config.v4_vi_op_mode;
  2170. v4_vi_op_mode->th_r0t0_selection_flag[SP_V2_SPKR_1] =
  2171. USE_CALIBRATED_R0TO;
  2172. v4_vi_op_mode->th_r0t0_selection_flag[SP_V2_SPKR_2] =
  2173. USE_CALIBRATED_R0TO;
  2174. } else {
  2175. struct afe_sp_v4_param_vi_op_mode_cfg *v4_vi_op_mode;
  2176. v4_vi_op_mode = &afe_spk_config.v4_vi_op_mode;
  2177. v4_vi_op_mode->th_r0t0_selection_flag[SP_V2_SPKR_1] =
  2178. USE_SAFE_R0TO;
  2179. v4_vi_op_mode->th_r0t0_selection_flag[SP_V2_SPKR_2] =
  2180. USE_SAFE_R0TO;
  2181. }
  2182. afe_spk_config.v4_vi_op_mode.num_speakers = this_afe.num_spkrs;
  2183. if (afe_spk_prot_prepare(port_id, 0,
  2184. AFE_PARAM_ID_SP_V4_VI_OP_MODE_CFG,
  2185. &afe_spk_config,
  2186. sizeof(struct afe_sp_v4_param_vi_op_mode_cfg)))
  2187. pr_info("%s: SPKR_CALIB_VI_PROC_CFG failed\n",
  2188. __func__);
  2189. size = sizeof(struct afe_sp_v4_param_th_vi_r0t0_cfg) +
  2190. (this_afe.num_spkrs * sizeof(struct afe_sp_v4_channel_r0t0));
  2191. tmp_ptr = kzalloc(size, GFP_KERNEL);
  2192. if (!tmp_ptr) {
  2193. mutex_unlock(
  2194. &this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2195. return;
  2196. }
  2197. memset(tmp_ptr, 0, size);
  2198. th_vi_r0t0_cfg =
  2199. (struct afe_sp_v4_param_th_vi_r0t0_cfg *)tmp_ptr;
  2200. ch_r0t0_cfg =
  2201. (struct afe_sp_v4_channel_r0t0 *)(th_vi_r0t0_cfg + 1);
  2202. th_vi_r0t0_cfg->num_speakers = this_afe.num_spkrs;
  2203. for (i = 0; i < this_afe.num_spkrs; i++) {
  2204. ch_r0t0_cfg[i].r0_cali_q24 =
  2205. (uint32_t) this_afe.prot_cfg.r0[i];
  2206. ch_r0t0_cfg[i].t0_cali_q6 =
  2207. (uint32_t) this_afe.prot_cfg.t0[i];
  2208. }
  2209. if (afe_spk_prot_prepare(port_id, 0,
  2210. AFE_PARAM_ID_SP_V4_VI_R0T0_CFG,
  2211. (union afe_spkr_prot_config *)tmp_ptr, size))
  2212. pr_info("%s: th vi ftm cfg failed\n", __func__);
  2213. kfree(tmp_ptr);
  2214. }
  2215. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2216. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2217. if ((this_afe.th_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE) &&
  2218. (this_afe.vi_tx_port == port_id) &&
  2219. (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9)) {
  2220. size = sizeof(struct afe_sp_v4_param_th_vi_ftm_cfg) +
  2221. (this_afe.num_spkrs * sizeof(struct afe_sp_v4_channel_ftm_cfg));
  2222. tmp_ptr = kzalloc(size, GFP_KERNEL);
  2223. if (!tmp_ptr) {
  2224. mutex_unlock(
  2225. &this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2226. return;
  2227. }
  2228. memset(tmp_ptr, 0, size);
  2229. th_vi_ftm_cfg = (struct afe_sp_v4_param_th_vi_ftm_cfg *)tmp_ptr;
  2230. ch_ftm_cfg =
  2231. (struct afe_sp_v4_channel_ftm_cfg *)(th_vi_ftm_cfg+1);
  2232. th_vi_ftm_cfg->num_ch = this_afe.num_spkrs;
  2233. for (i = 0; i < this_afe.num_spkrs; i++) {
  2234. ch_ftm_cfg[i].wait_time_ms =
  2235. this_afe.th_ftm_cfg.wait_time[i];
  2236. ch_ftm_cfg[i].ftm_time_ms =
  2237. this_afe.th_ftm_cfg.ftm_time[i];
  2238. }
  2239. if (afe_spk_prot_prepare(port_id, 0,
  2240. AFE_PARAM_ID_SP_V4_TH_VI_FTM_CFG,
  2241. (union afe_spkr_prot_config *)tmp_ptr, size))
  2242. pr_info("%s: th vi ftm cfg failed\n", __func__);
  2243. kfree(tmp_ptr);
  2244. this_afe.th_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2245. } else if ((this_afe.v_vali_cfg.mode ==
  2246. MSM_SPKR_PROT_IN_V_VALI_MODE) &&
  2247. (this_afe.vi_tx_port == port_id)) {
  2248. size = sizeof(struct afe_sp_v4_param_th_vi_v_vali_cfg) +
  2249. (this_afe.num_spkrs *
  2250. sizeof(struct afe_sp_v4_channel_v_vali_cfg));
  2251. tmp_ptr = kzalloc(size, GFP_KERNEL);
  2252. if (!tmp_ptr) {
  2253. mutex_unlock(
  2254. &this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2255. return;
  2256. }
  2257. memset(tmp_ptr, 0, size);
  2258. th_vi_v_vali_cfg =
  2259. (struct afe_sp_v4_param_th_vi_v_vali_cfg *)tmp_ptr;
  2260. ch_v_vali_cfg =
  2261. (struct afe_sp_v4_channel_v_vali_cfg *)(th_vi_v_vali_cfg + 1);
  2262. th_vi_v_vali_cfg->num_ch = this_afe.num_spkrs;
  2263. for (i = 0; i < this_afe.num_spkrs; i++) {
  2264. ch_v_vali_cfg[i].wait_time_ms =
  2265. this_afe.v_vali_cfg.wait_time[i];
  2266. ch_v_vali_cfg[i].vali_time_ms =
  2267. this_afe.v_vali_cfg.vali_time[i];
  2268. }
  2269. if (afe_spk_prot_prepare(port_id, 0,
  2270. AFE_PARAM_ID_SP_V4_TH_VI_V_VALI_CFG,
  2271. (union afe_spkr_prot_config *)tmp_ptr, size))
  2272. pr_info("%s: th vi v-vali cfg failed\n", __func__);
  2273. kfree(tmp_ptr);
  2274. this_afe.v_vali_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2275. }
  2276. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2277. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2278. if ((this_afe.ex_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE) &&
  2279. (this_afe.vi_tx_port == port_id) &&
  2280. (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9)) {
  2281. size = sizeof(struct afe_sp_v4_param_ex_vi_ftm_cfg) +
  2282. (this_afe.num_spkrs *
  2283. sizeof(struct afe_sp_v4_channel_ex_vi_ftm));
  2284. tmp_ptr = kzalloc(size, GFP_KERNEL);
  2285. if (!tmp_ptr) {
  2286. mutex_unlock(
  2287. &this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2288. return;
  2289. }
  2290. memset(tmp_ptr, 0, size);
  2291. ex_vi_ftm_cfg = (struct afe_sp_v4_param_ex_vi_ftm_cfg *)tmp_ptr;
  2292. ch_ex_vi_ftm_cfg =
  2293. (struct afe_sp_v4_channel_ex_vi_ftm *)(ex_vi_ftm_cfg + 1);
  2294. afe_spk_config.v4_ex_vi_mode_cfg.operation_mode =
  2295. AFE_FBSP_V4_EX_VI_MODE_FTM;
  2296. if (afe_spk_prot_prepare(port_id, 0,
  2297. AFE_PARAM_ID_SP_V4_EX_VI_MODE_CFG,
  2298. &afe_spk_config,
  2299. sizeof(struct afe_sp_v4_param_ex_vi_mode_cfg)))
  2300. pr_info("%s: ex vi mode cfg failed\n", __func__);
  2301. ex_vi_ftm_cfg->num_ch = this_afe.num_spkrs;
  2302. for (i = 0; i < this_afe.num_spkrs; i++) {
  2303. ch_ex_vi_ftm_cfg[i].wait_time_ms =
  2304. this_afe.ex_ftm_cfg.wait_time[i];
  2305. ch_ex_vi_ftm_cfg[i].ftm_time_ms =
  2306. this_afe.ex_ftm_cfg.ftm_time[i];
  2307. }
  2308. if (afe_spk_prot_prepare(port_id, 0,
  2309. AFE_PARAM_ID_SP_V4_EX_VI_FTM_CFG,
  2310. (union afe_spkr_prot_config *)tmp_ptr, size))
  2311. pr_info("%s: ex vi ftm cfg failed\n", __func__);
  2312. kfree(tmp_ptr);
  2313. this_afe.ex_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2314. }
  2315. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2316. /* Register for DC detection event if speaker protection is enabled */
  2317. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
  2318. (this_afe.vi_tx_port == port_id)) {
  2319. afe_spkr_prot_reg_event_cfg(port_id,
  2320. AFE_MODULE_SPEAKER_PROTECTION_V4_VI);
  2321. }
  2322. }
  2323. static void afe_send_cal_spkr_prot_tx(int port_id)
  2324. {
  2325. union afe_spkr_prot_config afe_spk_config;
  2326. if (q6core_get_avcs_api_version_per_service(
  2327. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  2328. afe_send_cal_spv4_tx(port_id);
  2329. return;
  2330. }
  2331. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL ||
  2332. this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  2333. this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL)
  2334. return;
  2335. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2336. if ((this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED) &&
  2337. (this_afe.vi_tx_port == port_id)) {
  2338. if (this_afe.prot_cfg.mode ==
  2339. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS) {
  2340. afe_spk_config.vi_proc_cfg.operation_mode =
  2341. Q6AFE_MSM_SPKR_CALIBRATION;
  2342. afe_spk_config.vi_proc_cfg.quick_calib_flag =
  2343. this_afe.prot_cfg.quick_calib_flag;
  2344. } else {
  2345. afe_spk_config.vi_proc_cfg.operation_mode =
  2346. Q6AFE_MSM_SPKR_PROCESSING;
  2347. }
  2348. if (this_afe.th_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE)
  2349. afe_spk_config.vi_proc_cfg.operation_mode =
  2350. Q6AFE_MSM_SPKR_FTM_MODE;
  2351. else if (this_afe.v_vali_cfg.mode ==
  2352. MSM_SPKR_PROT_IN_V_VALI_MODE)
  2353. afe_spk_config.vi_proc_cfg.operation_mode =
  2354. Q6AFE_MSM_SPKR_V_VALI_MODE;
  2355. afe_spk_config.vi_proc_cfg.minor_version = 1;
  2356. afe_spk_config.vi_proc_cfg.r0_cali_q24[SP_V2_SPKR_1] =
  2357. (uint32_t) this_afe.prot_cfg.r0[SP_V2_SPKR_1];
  2358. afe_spk_config.vi_proc_cfg.r0_cali_q24[SP_V2_SPKR_2] =
  2359. (uint32_t) this_afe.prot_cfg.r0[SP_V2_SPKR_2];
  2360. afe_spk_config.vi_proc_cfg.t0_cali_q6[SP_V2_SPKR_1] =
  2361. (uint32_t) this_afe.prot_cfg.t0[SP_V2_SPKR_1];
  2362. afe_spk_config.vi_proc_cfg.t0_cali_q6[SP_V2_SPKR_2] =
  2363. (uint32_t) this_afe.prot_cfg.t0[SP_V2_SPKR_2];
  2364. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_NOT_CALIBRATED) {
  2365. struct asm_spkr_calib_vi_proc_cfg *vi_proc_cfg;
  2366. vi_proc_cfg = &afe_spk_config.vi_proc_cfg;
  2367. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_1] =
  2368. USE_CALIBRATED_R0TO;
  2369. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_2] =
  2370. USE_CALIBRATED_R0TO;
  2371. } else {
  2372. struct asm_spkr_calib_vi_proc_cfg *vi_proc_cfg;
  2373. vi_proc_cfg = &afe_spk_config.vi_proc_cfg;
  2374. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_1] =
  2375. USE_SAFE_R0TO;
  2376. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_2] =
  2377. USE_SAFE_R0TO;
  2378. }
  2379. if (afe_spk_prot_prepare(port_id, 0,
  2380. AFE_PARAM_ID_SPKR_CALIB_VI_PROC_CFG_V2,
  2381. &afe_spk_config, sizeof(union afe_spkr_prot_config)))
  2382. pr_err("%s: SPKR_CALIB_VI_PROC_CFG failed\n",
  2383. __func__);
  2384. }
  2385. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2386. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2387. if ((this_afe.th_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE) &&
  2388. (this_afe.vi_tx_port == port_id)) {
  2389. afe_spk_config.th_vi_ftm_cfg.minor_version = 1;
  2390. afe_spk_config.th_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_1] =
  2391. this_afe.th_ftm_cfg.wait_time[SP_V2_SPKR_1];
  2392. afe_spk_config.th_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_2] =
  2393. this_afe.th_ftm_cfg.wait_time[SP_V2_SPKR_2];
  2394. afe_spk_config.th_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_1] =
  2395. this_afe.th_ftm_cfg.ftm_time[SP_V2_SPKR_1];
  2396. afe_spk_config.th_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_2] =
  2397. this_afe.th_ftm_cfg.ftm_time[SP_V2_SPKR_2];
  2398. if (afe_spk_prot_prepare(port_id, 0,
  2399. AFE_PARAM_ID_SP_V2_TH_VI_FTM_CFG,
  2400. &afe_spk_config,
  2401. sizeof(union afe_spkr_prot_config)))
  2402. pr_err("%s: th vi ftm cfg failed\n", __func__);
  2403. this_afe.th_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2404. } else if ((this_afe.v_vali_cfg.mode ==
  2405. MSM_SPKR_PROT_IN_V_VALI_MODE) &&
  2406. (this_afe.vi_tx_port == port_id)) {
  2407. afe_spk_config.th_vi_v_vali_cfg.minor_version = 1;
  2408. afe_spk_config.th_vi_v_vali_cfg.wait_time_ms[SP_V2_SPKR_1] =
  2409. this_afe.v_vali_cfg.wait_time[SP_V2_SPKR_1];
  2410. afe_spk_config.th_vi_v_vali_cfg.wait_time_ms[SP_V2_SPKR_2] =
  2411. this_afe.v_vali_cfg.wait_time[SP_V2_SPKR_2];
  2412. afe_spk_config.th_vi_v_vali_cfg.vali_time_ms[SP_V2_SPKR_1] =
  2413. this_afe.v_vali_cfg.vali_time[SP_V2_SPKR_1];
  2414. afe_spk_config.th_vi_v_vali_cfg.vali_time_ms[SP_V2_SPKR_2] =
  2415. this_afe.v_vali_cfg.vali_time[SP_V2_SPKR_2];
  2416. if (afe_spk_prot_prepare(port_id, 0,
  2417. AFE_PARAM_ID_SP_V2_TH_VI_V_VALI_CFG,
  2418. &afe_spk_config,
  2419. sizeof(union afe_spkr_prot_config)))
  2420. pr_err("%s: th vi v-vali cfg failed\n", __func__);
  2421. this_afe.v_vali_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2422. }
  2423. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2424. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2425. if ((this_afe.ex_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE) &&
  2426. (this_afe.vi_tx_port == port_id)) {
  2427. afe_spk_config.ex_vi_mode_cfg.minor_version = 1;
  2428. afe_spk_config.ex_vi_mode_cfg.operation_mode =
  2429. Q6AFE_MSM_SPKR_FTM_MODE;
  2430. if (afe_spk_prot_prepare(port_id, 0,
  2431. AFE_PARAM_ID_SP_V2_EX_VI_MODE_CFG,
  2432. &afe_spk_config,
  2433. sizeof(union afe_spkr_prot_config)))
  2434. pr_err("%s: ex vi mode cfg failed\n", __func__);
  2435. afe_spk_config.ex_vi_ftm_cfg.minor_version = 1;
  2436. afe_spk_config.ex_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_1] =
  2437. this_afe.ex_ftm_cfg.wait_time[SP_V2_SPKR_1];
  2438. afe_spk_config.ex_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_2] =
  2439. this_afe.ex_ftm_cfg.wait_time[SP_V2_SPKR_2];
  2440. afe_spk_config.ex_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_1] =
  2441. this_afe.ex_ftm_cfg.ftm_time[SP_V2_SPKR_1];
  2442. afe_spk_config.ex_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_2] =
  2443. this_afe.ex_ftm_cfg.ftm_time[SP_V2_SPKR_2];
  2444. if (afe_spk_prot_prepare(port_id, 0,
  2445. AFE_PARAM_ID_SP_V2_EX_VI_FTM_CFG,
  2446. &afe_spk_config,
  2447. sizeof(union afe_spkr_prot_config)))
  2448. pr_err("%s: ex vi ftm cfg failed\n", __func__);
  2449. this_afe.ex_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2450. }
  2451. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2452. /* Register for DC detection event if speaker protection is enabled */
  2453. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
  2454. (this_afe.vi_tx_port == port_id)) {
  2455. afe_spkr_prot_reg_event_cfg(port_id,
  2456. AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI);
  2457. }
  2458. }
  2459. static void afe_send_cal_spv4_rx(int port_id)
  2460. {
  2461. union afe_spkr_prot_config afe_spk_config;
  2462. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  2463. return;
  2464. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2465. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
  2466. (this_afe.vi_rx_port == port_id) &&
  2467. (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9)) {
  2468. if (this_afe.prot_cfg.mode ==
  2469. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS)
  2470. afe_spk_config.v4_op_mode.mode =
  2471. Q6AFE_MSM_SPKR_CALIBRATION;
  2472. else
  2473. afe_spk_config.v4_op_mode.mode =
  2474. Q6AFE_MSM_SPKR_PROCESSING;
  2475. if (afe_spk_prot_prepare(port_id, 0,
  2476. AFE_PARAM_ID_SP_V4_OP_MODE,
  2477. &afe_spk_config, sizeof(union afe_spkr_prot_config)))
  2478. pr_info("%s: RX MODE_VI_PROC_CFG failed\n",
  2479. __func__);
  2480. }
  2481. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2482. }
  2483. static void afe_send_cal_spkr_prot_rx(int port_id)
  2484. {
  2485. union afe_spkr_prot_config afe_spk_config;
  2486. union afe_spkr_prot_config afe_spk_limiter_config;
  2487. if (q6core_get_avcs_api_version_per_service(
  2488. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  2489. afe_send_cal_spv4_rx(port_id);
  2490. return;
  2491. }
  2492. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  2493. goto done;
  2494. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2495. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
  2496. (this_afe.vi_rx_port == port_id)) {
  2497. if (this_afe.prot_cfg.mode ==
  2498. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS)
  2499. afe_spk_config.mode_rx_cfg.mode =
  2500. Q6AFE_MSM_SPKR_CALIBRATION;
  2501. else
  2502. afe_spk_config.mode_rx_cfg.mode =
  2503. Q6AFE_MSM_SPKR_PROCESSING;
  2504. afe_spk_config.mode_rx_cfg.minor_version = 1;
  2505. if (afe_spk_prot_prepare(port_id, 0,
  2506. AFE_PARAM_ID_FBSP_MODE_RX_CFG,
  2507. &afe_spk_config, sizeof(union afe_spkr_prot_config)))
  2508. pr_err("%s: RX MODE_VI_PROC_CFG failed\n",
  2509. __func__);
  2510. if (afe_spk_config.mode_rx_cfg.mode ==
  2511. Q6AFE_MSM_SPKR_PROCESSING) {
  2512. if (this_afe.prot_cfg.sp_version >=
  2513. AFE_API_VERSION_SUPPORT_SPV3) {
  2514. afe_spk_limiter_config.limiter_th_cfg.
  2515. minor_version = 1;
  2516. afe_spk_limiter_config.limiter_th_cfg.
  2517. lim_thr_per_calib_q27[SP_V2_SPKR_1] =
  2518. this_afe.prot_cfg.limiter_th[SP_V2_SPKR_1];
  2519. afe_spk_limiter_config.limiter_th_cfg.
  2520. lim_thr_per_calib_q27[SP_V2_SPKR_2] =
  2521. this_afe.prot_cfg.limiter_th[SP_V2_SPKR_2];
  2522. if (afe_spk_prot_prepare(port_id, 0,
  2523. AFE_PARAM_ID_SP_RX_LIMITER_TH,
  2524. &afe_spk_limiter_config,
  2525. sizeof(union afe_spkr_prot_config)))
  2526. pr_err("%s: SP_RX_LIMITER_TH failed.\n",
  2527. __func__);
  2528. } else {
  2529. pr_debug("%s: SPv3 failed to apply on AFE API version=%d.\n",
  2530. __func__,
  2531. this_afe.prot_cfg.sp_version);
  2532. }
  2533. }
  2534. }
  2535. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2536. done:
  2537. return;
  2538. }
  2539. /**
  2540. * afe_send_cdc_dma_data_align -
  2541. * for sending codec dma data alignment
  2542. *
  2543. * @port_id: AFE port id number
  2544. */
  2545. int afe_send_cdc_dma_data_align(u16 port_id, u32 cdc_dma_data_align)
  2546. {
  2547. struct afe_param_id_cdc_dma_data_align data_align;
  2548. struct param_hdr_v3 param_info;
  2549. uint16_t port_index = 0;
  2550. int ret = -EINVAL;
  2551. memset(&data_align, 0, sizeof(data_align));
  2552. memset(&param_info, 0, sizeof(param_info));
  2553. port_index = afe_get_port_index(port_id);
  2554. if (port_index < 0 || port_index >= AFE_MAX_PORTS) {
  2555. pr_err("%s: AFE port index[%d] invalid!\n",
  2556. __func__, port_index);
  2557. return -EINVAL;
  2558. }
  2559. data_align.cdc_dma_data_align =
  2560. cdc_dma_data_align;
  2561. pr_debug("%s: port_id %x, data_align %d\n", __func__,
  2562. port_id, data_align.cdc_dma_data_align);
  2563. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2564. param_info.instance_id = INSTANCE_ID_0;
  2565. param_info.param_id = AFE_PARAM_ID_CODEC_DMA_DATA_ALIGN;
  2566. param_info.param_size = sizeof(data_align);
  2567. ret = q6afe_pack_and_set_param_in_band(port_id,
  2568. q6audio_get_port_index(port_id),
  2569. param_info, (u8 *) &data_align);
  2570. if (ret)
  2571. pr_err("%s: AFE cdc cdc data alignment for port 0x%x failed %d\n",
  2572. __func__, port_id, ret);
  2573. return ret;
  2574. }
  2575. EXPORT_SYMBOL(afe_send_cdc_dma_data_align);
  2576. static int afe_send_hw_delay(u16 port_id, u32 rate)
  2577. {
  2578. struct audio_cal_hw_delay_entry delay_entry;
  2579. struct afe_param_id_device_hw_delay_cfg hw_delay;
  2580. struct param_hdr_v3 param_info;
  2581. int ret = -EINVAL;
  2582. pr_debug("%s:\n", __func__);
  2583. memset(&delay_entry, 0, sizeof(delay_entry));
  2584. memset(&param_info, 0, sizeof(param_info));
  2585. delay_entry.sample_rate = rate;
  2586. if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_TX)
  2587. ret = afe_get_cal_hw_delay(TX_DEVICE, &delay_entry);
  2588. else if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX)
  2589. ret = afe_get_cal_hw_delay(RX_DEVICE, &delay_entry);
  2590. /*
  2591. * HW delay is only used for IMS calls to sync audio with video
  2592. * It is only needed for devices & sample rates used for IMS video
  2593. * calls. Values are received from ACDB calbration files
  2594. */
  2595. if (ret != 0) {
  2596. pr_debug("%s: debug: HW delay info not available %d\n",
  2597. __func__, ret);
  2598. goto fail_cmd;
  2599. }
  2600. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2601. param_info.instance_id = INSTANCE_ID_0;
  2602. param_info.param_id = AFE_PARAM_ID_DEVICE_HW_DELAY;
  2603. param_info.param_size = sizeof(hw_delay);
  2604. hw_delay.delay_in_us = delay_entry.delay_usec;
  2605. hw_delay.device_hw_delay_minor_version =
  2606. AFE_API_VERSION_DEVICE_HW_DELAY;
  2607. ret = q6afe_pack_and_set_param_in_band(port_id,
  2608. q6audio_get_port_index(port_id),
  2609. param_info, (u8 *) &hw_delay);
  2610. if (ret)
  2611. pr_err("%s: AFE hw delay for port 0x%x failed %d\n",
  2612. __func__, port_id, ret);
  2613. fail_cmd:
  2614. pr_info("%s: port_id 0x%x rate %u delay_usec %d status %d\n",
  2615. __func__, port_id, rate, delay_entry.delay_usec, ret);
  2616. return ret;
  2617. }
  2618. static struct cal_block_data *afe_find_cal_topo_id_by_port(
  2619. struct cal_type_data *cal_type, u16 port_id)
  2620. {
  2621. struct list_head *ptr, *next;
  2622. struct cal_block_data *cal_block = NULL;
  2623. int32_t path;
  2624. struct audio_cal_info_afe_top *afe_top;
  2625. int afe_port_index = q6audio_get_port_index(port_id);
  2626. if (afe_port_index < 0)
  2627. goto err_exit;
  2628. list_for_each_safe(ptr, next,
  2629. &cal_type->cal_blocks) {
  2630. cal_block = list_entry(ptr,
  2631. struct cal_block_data, list);
  2632. /* Skip cal_block if it is already marked stale */
  2633. if (cal_utils_is_cal_stale(cal_block))
  2634. continue;
  2635. pr_debug("%s: port id: 0x%x, dev_acdb_id: %d\n", __func__,
  2636. port_id, this_afe.dev_acdb_id[afe_port_index]);
  2637. path = ((afe_get_port_type(port_id) ==
  2638. MSM_AFE_PORT_TYPE_TX)?(TX_DEVICE):(RX_DEVICE));
  2639. afe_top =
  2640. (struct audio_cal_info_afe_top *)cal_block->cal_info;
  2641. if (afe_top->path == path) {
  2642. if (this_afe.dev_acdb_id[afe_port_index] > 0) {
  2643. if (afe_top->acdb_id ==
  2644. this_afe.dev_acdb_id[afe_port_index]) {
  2645. pr_debug("%s: top_id:%x acdb_id:%d afe_port_id:0x%x\n",
  2646. __func__, afe_top->topology,
  2647. afe_top->acdb_id,
  2648. q6audio_get_port_id(port_id));
  2649. return cal_block;
  2650. }
  2651. } else {
  2652. pr_debug("%s: top_id:%x acdb_id:%d afe_port:0x%x\n",
  2653. __func__, afe_top->topology, afe_top->acdb_id,
  2654. q6audio_get_port_id(port_id));
  2655. return cal_block;
  2656. }
  2657. }
  2658. }
  2659. err_exit:
  2660. return NULL;
  2661. }
  2662. /*
  2663. * Retrieving cal_block will mark cal_block as stale.
  2664. * Hence it cannot be reused or resent unless the flag
  2665. * is reset.
  2666. */
  2667. static int afe_get_cal_topology_id(u16 port_id, u32 *topology_id,
  2668. int cal_type_index)
  2669. {
  2670. int ret = 0;
  2671. struct cal_block_data *cal_block = NULL;
  2672. struct audio_cal_info_afe_top *afe_top_info = NULL;
  2673. if (this_afe.cal_data[cal_type_index] == NULL) {
  2674. pr_err("%s: cal_type %d not initialized\n", __func__,
  2675. cal_type_index);
  2676. return -EINVAL;
  2677. }
  2678. if (topology_id == NULL) {
  2679. pr_err("%s: topology_id is NULL\n", __func__);
  2680. return -EINVAL;
  2681. }
  2682. *topology_id = 0;
  2683. mutex_lock(&this_afe.cal_data[cal_type_index]->lock);
  2684. cal_block = afe_find_cal_topo_id_by_port(
  2685. this_afe.cal_data[cal_type_index], port_id);
  2686. if (cal_block == NULL) {
  2687. pr_err("%s: cal_type %d not initialized for this port %d\n",
  2688. __func__, cal_type_index, port_id);
  2689. ret = -EINVAL;
  2690. goto unlock;
  2691. }
  2692. afe_top_info = ((struct audio_cal_info_afe_top *)
  2693. cal_block->cal_info);
  2694. if (!afe_top_info->topology) {
  2695. pr_err("%s: invalid topology id : [%d, %d]\n",
  2696. __func__, afe_top_info->acdb_id, afe_top_info->topology);
  2697. ret = -EINVAL;
  2698. goto unlock;
  2699. }
  2700. *topology_id = (u32)afe_top_info->topology;
  2701. cal_utils_mark_cal_used(cal_block);
  2702. pr_info("%s: port_id = 0x%x acdb_id = %d topology_id = 0x%x cal_type_index=%d ret=%d\n",
  2703. __func__, port_id, afe_top_info->acdb_id,
  2704. afe_top_info->topology, cal_type_index, ret);
  2705. unlock:
  2706. mutex_unlock(&this_afe.cal_data[cal_type_index]->lock);
  2707. return ret;
  2708. }
  2709. static int afe_send_port_topology_id(u16 port_id)
  2710. {
  2711. struct afe_param_id_set_topology_cfg topology;
  2712. struct param_hdr_v3 param_info;
  2713. u32 topology_id = 0;
  2714. int index = 0;
  2715. int ret = 0;
  2716. memset(&topology, 0, sizeof(topology));
  2717. memset(&param_info, 0, sizeof(param_info));
  2718. index = q6audio_get_port_index(port_id);
  2719. if (index < 0 || index >= AFE_MAX_PORTS) {
  2720. pr_err("%s: AFE port index[%d] invalid!\n",
  2721. __func__, index);
  2722. return -EINVAL;
  2723. }
  2724. ret = afe_get_cal_topology_id(port_id, &topology_id, AFE_TOPOLOGY_CAL);
  2725. if (ret < 0) {
  2726. pr_debug("%s: Check for LSM topology\n", __func__);
  2727. ret = afe_get_cal_topology_id(port_id, &topology_id,
  2728. AFE_LSM_TOPOLOGY_CAL);
  2729. }
  2730. if (ret || !topology_id) {
  2731. pr_debug("%s: AFE port[%d] get_cal_topology[%d] invalid!\n",
  2732. __func__, port_id, topology_id);
  2733. goto done;
  2734. }
  2735. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2736. param_info.instance_id = INSTANCE_ID_0;
  2737. param_info.param_id = AFE_PARAM_ID_SET_TOPOLOGY;
  2738. param_info.param_size = sizeof(topology);
  2739. topology.minor_version = AFE_API_VERSION_TOPOLOGY_V1;
  2740. topology.topology_id = topology_id;
  2741. ret = q6afe_pack_and_set_param_in_band(port_id,
  2742. q6audio_get_port_index(port_id),
  2743. param_info, (u8 *) &topology);
  2744. if (ret) {
  2745. pr_err("%s: AFE set topology id enable for port 0x%x failed %d\n",
  2746. __func__, port_id, ret);
  2747. goto done;
  2748. }
  2749. this_afe.topology[index] = topology_id;
  2750. rtac_update_afe_topology(port_id);
  2751. done:
  2752. pr_debug("%s: AFE set topology id 0x%x enable for port 0x%x ret %d\n",
  2753. __func__, topology_id, port_id, ret);
  2754. return ret;
  2755. }
  2756. static int afe_get_power_mode(u16 port_id, u32 *power_mode)
  2757. {
  2758. int ret = 0;
  2759. int index = 0;
  2760. *power_mode = 0;
  2761. index = q6audio_get_port_index(port_id);
  2762. if (index < 0 || index >= AFE_MAX_PORTS) {
  2763. pr_err("%s: AFE port index[%d] invalid!\n",
  2764. __func__, index);
  2765. return -EINVAL;
  2766. }
  2767. *power_mode = this_afe.power_mode[index];
  2768. return ret;
  2769. }
  2770. /**
  2771. * afe_send_port_power_mode -
  2772. * for sending power mode to AFE
  2773. *
  2774. * @port_id: AFE port id number
  2775. * Returns 0 on success or error on failure.
  2776. */
  2777. int afe_send_port_power_mode(u16 port_id)
  2778. {
  2779. struct afe_param_id_power_mode_cfg_t power_mode_cfg;
  2780. struct param_hdr_v3 param_info;
  2781. u32 power_mode = 0;
  2782. int ret = 0;
  2783. if (!(q6core_get_avcs_api_version_per_service(
  2784. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V4)) {
  2785. pr_debug("%s: AFE port[%d] API version is invalid!\n",
  2786. __func__, port_id);
  2787. return 0;
  2788. }
  2789. memset(&power_mode_cfg, 0, sizeof(power_mode_cfg));
  2790. memset(&param_info, 0, sizeof(param_info));
  2791. ret = afe_get_power_mode(port_id, &power_mode);
  2792. if (ret) {
  2793. pr_err("%s: AFE port[%d] get power mode is invalid!\n",
  2794. __func__, port_id);
  2795. return ret;
  2796. }
  2797. if (power_mode == 0) {
  2798. pr_debug("%s: AFE port[%d] power mode is not enabled\n",
  2799. __func__, port_id);
  2800. return ret;
  2801. }
  2802. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2803. param_info.instance_id = INSTANCE_ID_0;
  2804. param_info.param_id = AFE_PARAM_ID_POWER_MODE_CONFIG;
  2805. param_info.param_size = sizeof(power_mode_cfg);
  2806. power_mode_cfg.power_mode_cfg_minor_version =
  2807. AFE_API_VERSION_POWER_MODE_CONFIG;
  2808. power_mode_cfg.power_mode_enable = power_mode;
  2809. ret = q6afe_pack_and_set_param_in_band(port_id,
  2810. q6audio_get_port_index(port_id),
  2811. param_info, (u8 *) &power_mode_cfg);
  2812. if (ret) {
  2813. pr_err("%s: AFE set power mode enable for port 0x%x failed %d\n",
  2814. __func__, port_id, ret);
  2815. return ret;
  2816. }
  2817. pr_debug("%s: AFE set power mode 0x%x enable for port 0x%x ret %d\n",
  2818. __func__, power_mode, port_id, ret);
  2819. trace_printk("%s: AFE set power mode 0x%x enable for port 0x%x ret %d\n",
  2820. __func__, power_mode, port_id, ret);
  2821. return ret;
  2822. }
  2823. EXPORT_SYMBOL(afe_send_port_power_mode);
  2824. static int afe_get_island_mode(u16 port_id, u32 *island_mode)
  2825. {
  2826. int ret = 0;
  2827. int index = 0;
  2828. *island_mode = 0;
  2829. index = q6audio_get_port_index(port_id);
  2830. if (index < 0 || index >= AFE_MAX_PORTS) {
  2831. pr_err("%s: AFE port index[%d] invalid!\n",
  2832. __func__, index);
  2833. return -EINVAL;
  2834. }
  2835. *island_mode = this_afe.island_mode[index];
  2836. return ret;
  2837. }
  2838. /*
  2839. * afe_send_port_island_mode -
  2840. * for sending island mode to AFE
  2841. *
  2842. * @port_id: AFE port id number
  2843. *
  2844. * Returns 0 on success or error on failure.
  2845. */
  2846. int afe_send_port_island_mode(u16 port_id)
  2847. {
  2848. struct afe_param_id_island_cfg_t island_cfg;
  2849. struct param_hdr_v3 param_info;
  2850. u32 island_mode = 0;
  2851. int ret = 0;
  2852. if (!(q6core_get_avcs_api_version_per_service(
  2853. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V4)) {
  2854. pr_debug("%s: AFE port[%d] API version is invalid!\n",
  2855. __func__, port_id);
  2856. return 0;
  2857. }
  2858. memset(&island_cfg, 0, sizeof(island_cfg));
  2859. memset(&param_info, 0, sizeof(param_info));
  2860. ret = afe_get_island_mode(port_id, &island_mode);
  2861. if (ret) {
  2862. pr_err("%s: AFE port[%d] get island mode is invalid!\n",
  2863. __func__, port_id);
  2864. return ret;
  2865. }
  2866. if (island_mode == 0) {
  2867. pr_debug("%s: AFE port[%d] island mode is not enabled\n",
  2868. __func__, port_id);
  2869. return ret;
  2870. }
  2871. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2872. param_info.instance_id = INSTANCE_ID_0;
  2873. param_info.param_id = AFE_PARAM_ID_ISLAND_CONFIG;
  2874. param_info.param_size = sizeof(island_cfg);
  2875. island_cfg.island_cfg_minor_version = AFE_API_VERSION_ISLAND_CONFIG;
  2876. island_cfg.island_enable = island_mode;
  2877. ret = q6afe_pack_and_set_param_in_band(port_id,
  2878. q6audio_get_port_index(port_id),
  2879. param_info, (u8 *) &island_cfg);
  2880. if (ret) {
  2881. pr_err("%s: AFE set island mode enable for port 0x%x failed %d\n",
  2882. __func__, port_id, ret);
  2883. return ret;
  2884. }
  2885. pr_debug("%s: AFE set island mode 0x%x enable for port 0x%x ret %d\n",
  2886. __func__, island_mode, port_id, ret);
  2887. trace_printk("%s: AFE set island mode 0x%x enable for port 0x%x ret %d\n",
  2888. __func__, island_mode, port_id, ret);
  2889. return ret;
  2890. }
  2891. EXPORT_SYMBOL(afe_send_port_island_mode);
  2892. static int afe_get_vad_preroll_cfg(u16 port_id, u32 *preroll_cfg)
  2893. {
  2894. int ret = 0;
  2895. int index = 0;
  2896. *preroll_cfg = 0;
  2897. index = q6audio_get_port_index(port_id);
  2898. if (index < 0 || index >= AFE_MAX_PORTS) {
  2899. pr_err("%s: AFE port index[%d] invalid!\n",
  2900. __func__, index);
  2901. return -EINVAL;
  2902. }
  2903. *preroll_cfg = this_afe.vad_cfg[index].pre_roll;
  2904. return ret;
  2905. }
  2906. int afe_send_port_vad_cfg_params(u16 port_id)
  2907. {
  2908. struct afe_param_id_vad_cfg_t vad_cfg;
  2909. struct afe_mod_enable_param vad_enable;
  2910. struct param_hdr_v3 param_info;
  2911. u32 pre_roll_cfg = 0;
  2912. struct firmware_cal *hwdep_cal = NULL;
  2913. int ret = 0;
  2914. uint16_t port_index = 0;
  2915. if (!(q6core_get_avcs_api_version_per_service(
  2916. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V4)) {
  2917. pr_err("%s: AFE port[%d]: AFE API version doesn't support VAD config\n",
  2918. __func__, port_id);
  2919. return 0;
  2920. }
  2921. port_index = afe_get_port_index(port_id);
  2922. if (this_afe.vad_cfg[port_index].is_enable) {
  2923. memset(&vad_cfg, 0, sizeof(vad_cfg));
  2924. memset(&param_info, 0, sizeof(param_info));
  2925. ret = afe_get_vad_preroll_cfg(port_id, &pre_roll_cfg);
  2926. if (ret) {
  2927. pr_err("%s: AFE port[%d] get preroll cfg is invalid!\n",
  2928. __func__, port_id);
  2929. return ret;
  2930. }
  2931. param_info.module_id = AFE_MODULE_VAD;
  2932. param_info.instance_id = INSTANCE_ID_0;
  2933. param_info.param_id = AFE_PARAM_ID_VAD_CFG;
  2934. param_info.param_size = sizeof(vad_cfg);
  2935. vad_cfg.vad_cfg_minor_version = AFE_API_VERSION_VAD_CFG;
  2936. vad_cfg.pre_roll_in_ms = pre_roll_cfg;
  2937. ret = q6afe_pack_and_set_param_in_band(port_id,
  2938. q6audio_get_port_index(port_id),
  2939. param_info, (u8 *) &vad_cfg);
  2940. if (ret) {
  2941. pr_err("%s: AFE set vad cfg for port 0x%x failed %d\n",
  2942. __func__, port_id, ret);
  2943. return ret;
  2944. }
  2945. memset(&param_info, 0, sizeof(param_info));
  2946. hwdep_cal = q6afecal_get_fw_cal(this_afe.fw_data,
  2947. Q6AFE_VAD_CORE_CAL);
  2948. if (!hwdep_cal) {
  2949. pr_err("%s: error in retrieving vad core calibration",
  2950. __func__);
  2951. return -EINVAL;
  2952. }
  2953. param_info.module_id = AFE_MODULE_VAD;
  2954. param_info.instance_id = INSTANCE_ID_0;
  2955. param_info.param_id = AFE_PARAM_ID_VAD_CORE_CFG;
  2956. param_info.param_size = hwdep_cal->size;
  2957. ret = q6afe_pack_and_set_param_in_band(port_id,
  2958. q6audio_get_port_index(port_id),
  2959. param_info,
  2960. (u8 *) hwdep_cal->data);
  2961. if (ret) {
  2962. pr_err("%s: AFE set vad cfg for port 0x%x failed %d\n",
  2963. __func__, port_id, ret);
  2964. return ret;
  2965. }
  2966. }
  2967. if (q6core_get_avcs_api_version_per_service(
  2968. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V6) {
  2969. memset(&vad_enable, 0, sizeof(vad_enable));
  2970. memset(&param_info, 0, sizeof(param_info));
  2971. param_info.module_id = AFE_MODULE_VAD;
  2972. param_info.instance_id = INSTANCE_ID_0;
  2973. param_info.param_id = AFE_PARAM_ID_ENABLE;
  2974. param_info.param_size = sizeof(vad_enable);
  2975. port_index = afe_get_port_index(port_id);
  2976. vad_enable.enable = this_afe.vad_cfg[port_index].is_enable;
  2977. ret = q6afe_pack_and_set_param_in_band(port_id,
  2978. q6audio_get_port_index(port_id),
  2979. param_info, (u8 *) &vad_enable);
  2980. if (ret) {
  2981. pr_err("%s: AFE set vad enable for port 0x%x failed %d\n",
  2982. __func__, port_id, ret);
  2983. return ret;
  2984. }
  2985. }
  2986. pr_debug("%s: AFE set preroll cfg %d vad core cfg port 0x%x ret %d\n",
  2987. __func__, pre_roll_cfg, port_id, ret);
  2988. return ret;
  2989. }
  2990. EXPORT_SYMBOL(afe_send_port_vad_cfg_params);
  2991. static int remap_cal_data(struct cal_block_data *cal_block, int cal_index)
  2992. {
  2993. int ret = 0;
  2994. if (cal_block->map_data.dma_buf == NULL) {
  2995. pr_err("%s: No ION allocation for cal index %d!\n",
  2996. __func__, cal_index);
  2997. ret = -EINVAL;
  2998. goto done;
  2999. }
  3000. if ((cal_block->map_data.map_size > 0) &&
  3001. (cal_block->map_data.q6map_handle == 0)) {
  3002. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  3003. ret = afe_cmd_memory_map(cal_block->cal_data.paddr,
  3004. cal_block->map_data.map_size);
  3005. atomic_set(&this_afe.mem_map_cal_index, -1);
  3006. if (ret < 0) {
  3007. pr_err("%s: mmap did not work! size = %zd ret %d\n",
  3008. __func__,
  3009. cal_block->map_data.map_size, ret);
  3010. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %zd\n",
  3011. __func__,
  3012. &cal_block->cal_data.paddr,
  3013. cal_block->map_data.map_size);
  3014. goto done;
  3015. }
  3016. cal_block->map_data.q6map_handle = atomic_read(&this_afe.
  3017. mem_map_cal_handles[cal_index]);
  3018. }
  3019. done:
  3020. return ret;
  3021. }
  3022. static struct cal_block_data *afe_find_cal(int cal_index, int port_id)
  3023. {
  3024. struct list_head *ptr, *next;
  3025. struct cal_block_data *cal_block = NULL;
  3026. struct audio_cal_info_afe *afe_cal_info = NULL;
  3027. int afe_port_index = q6audio_get_port_index(port_id);
  3028. pr_debug("%s: cal_index %d port_id 0x%x port_index %d\n", __func__,
  3029. cal_index, port_id, afe_port_index);
  3030. if (afe_port_index < 0) {
  3031. pr_err("%s: Error getting AFE port index %d\n",
  3032. __func__, afe_port_index);
  3033. goto exit;
  3034. }
  3035. list_for_each_safe(ptr, next,
  3036. &this_afe.cal_data[cal_index]->cal_blocks) {
  3037. cal_block = list_entry(ptr, struct cal_block_data, list);
  3038. afe_cal_info = cal_block->cal_info;
  3039. pr_debug("%s: acdb_id %d dev_acdb_id %d sample_rate %d afe_sample_rates %d\n",
  3040. __func__, afe_cal_info->acdb_id,
  3041. this_afe.dev_acdb_id[afe_port_index],
  3042. afe_cal_info->sample_rate,
  3043. this_afe.afe_sample_rates[afe_port_index]);
  3044. if ((afe_cal_info->acdb_id ==
  3045. this_afe.dev_acdb_id[afe_port_index]) &&
  3046. (afe_cal_info->sample_rate ==
  3047. this_afe.afe_sample_rates[afe_port_index])) {
  3048. pr_debug("%s: cal block is a match, size is %zd\n",
  3049. __func__, cal_block->cal_data.size);
  3050. goto exit;
  3051. }
  3052. }
  3053. pr_info("%s: no matching cal_block found\n", __func__);
  3054. cal_block = NULL;
  3055. exit:
  3056. return cal_block;
  3057. }
  3058. static int send_afe_cal_type(int cal_index, int port_id)
  3059. {
  3060. struct cal_block_data *cal_block = NULL;
  3061. int ret;
  3062. int afe_port_index = q6audio_get_port_index(port_id);
  3063. pr_debug("%s: cal_index is %d\n", __func__, cal_index);
  3064. if (this_afe.cal_data[cal_index] == NULL) {
  3065. pr_warn("%s: cal_index %d not allocated!\n",
  3066. __func__, cal_index);
  3067. ret = -EINVAL;
  3068. goto done;
  3069. }
  3070. if (afe_port_index < 0) {
  3071. pr_err("%s: Error getting AFE port index %d\n",
  3072. __func__, afe_port_index);
  3073. ret = -EINVAL;
  3074. goto done;
  3075. }
  3076. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  3077. pr_debug("%s: dev_acdb_id[%d] is %d\n",
  3078. __func__, afe_port_index,
  3079. this_afe.dev_acdb_id[afe_port_index]);
  3080. if (((cal_index == AFE_COMMON_RX_CAL) ||
  3081. (cal_index == AFE_COMMON_TX_CAL) ||
  3082. (cal_index == AFE_LSM_TX_CAL)) &&
  3083. (this_afe.dev_acdb_id[afe_port_index] > 0))
  3084. cal_block = afe_find_cal(cal_index, port_id);
  3085. else
  3086. cal_block = cal_utils_get_only_cal_block(
  3087. this_afe.cal_data[cal_index]);
  3088. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  3089. pr_err("%s cal_block not found!!\n", __func__);
  3090. ret = -EINVAL;
  3091. goto unlock;
  3092. }
  3093. pr_debug("%s: Sending cal_index cal %d\n", __func__, cal_index);
  3094. ret = remap_cal_data(cal_block, cal_index);
  3095. if (ret) {
  3096. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  3097. __func__, cal_index);
  3098. ret = -EINVAL;
  3099. goto unlock;
  3100. }
  3101. ret = afe_send_cal_block(port_id, cal_block);
  3102. if (ret < 0)
  3103. pr_err("%s: No cal sent for cal_index %d, port_id = 0x%x! ret %d\n",
  3104. __func__, cal_index, port_id, ret);
  3105. cal_utils_mark_cal_used(cal_block);
  3106. unlock:
  3107. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  3108. done:
  3109. return ret;
  3110. }
  3111. void afe_send_cal(u16 port_id)
  3112. {
  3113. int ret;
  3114. pr_debug("%s: port_id=0x%x\n", __func__, port_id);
  3115. if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_TX) {
  3116. afe_send_cal_spkr_prot_tx(port_id);
  3117. ret = send_afe_cal_type(AFE_COMMON_TX_CAL, port_id);
  3118. if (ret < 0)
  3119. send_afe_cal_type(AFE_LSM_TX_CAL, port_id);
  3120. } else if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX) {
  3121. send_afe_cal_type(AFE_COMMON_RX_CAL, port_id);
  3122. afe_send_cal_spkr_prot_rx(port_id);
  3123. }
  3124. }
  3125. int afe_turn_onoff_hw_mad(u16 mad_type, u16 enable)
  3126. {
  3127. struct afe_param_hw_mad_ctrl mad_enable_param;
  3128. struct param_hdr_v3 param_info;
  3129. int ret;
  3130. pr_debug("%s: enter\n", __func__);
  3131. memset(&mad_enable_param, 0, sizeof(mad_enable_param));
  3132. memset(&param_info, 0, sizeof(param_info));
  3133. param_info.module_id = AFE_MODULE_HW_MAD;
  3134. param_info.instance_id = INSTANCE_ID_0;
  3135. param_info.param_id = AFE_PARAM_ID_HW_MAD_CTRL;
  3136. param_info.param_size = sizeof(mad_enable_param);
  3137. mad_enable_param.minor_version = 1;
  3138. mad_enable_param.mad_type = mad_type;
  3139. mad_enable_param.mad_enable = enable;
  3140. ret = q6afe_pack_and_set_param_in_band(SLIMBUS_5_TX, IDX_GLOBAL_CFG,
  3141. param_info,
  3142. (u8 *) &mad_enable_param);
  3143. if (ret)
  3144. pr_err("%s: AFE_PARAM_ID_HW_MAD_CTRL failed %d\n", __func__,
  3145. ret);
  3146. return ret;
  3147. }
  3148. static int afe_send_slimbus_slave_cfg(
  3149. struct afe_param_cdc_slimbus_slave_cfg *sb_slave_cfg)
  3150. {
  3151. struct param_hdr_v3 param_hdr;
  3152. int ret;
  3153. pr_debug("%s: enter\n", __func__);
  3154. memset(&param_hdr, 0, sizeof(param_hdr));
  3155. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  3156. param_hdr.instance_id = INSTANCE_ID_0;
  3157. param_hdr.param_id = AFE_PARAM_ID_CDC_SLIMBUS_SLAVE_CFG;
  3158. param_hdr.param_size = sizeof(struct afe_param_cdc_slimbus_slave_cfg);
  3159. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  3160. (u8 *) sb_slave_cfg);
  3161. if (ret)
  3162. pr_err("%s: AFE_PARAM_ID_CDC_SLIMBUS_SLAVE_CFG failed %d\n",
  3163. __func__, ret);
  3164. pr_debug("%s: leave %d\n", __func__, ret);
  3165. return ret;
  3166. }
  3167. static int afe_send_codec_reg_page_config(
  3168. struct afe_param_cdc_reg_page_cfg *cdc_reg_page_cfg)
  3169. {
  3170. struct param_hdr_v3 param_hdr;
  3171. int ret;
  3172. memset(&param_hdr, 0, sizeof(param_hdr));
  3173. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  3174. param_hdr.instance_id = INSTANCE_ID_0;
  3175. param_hdr.param_id = AFE_PARAM_ID_CDC_REG_PAGE_CFG;
  3176. param_hdr.param_size = sizeof(struct afe_param_cdc_reg_page_cfg);
  3177. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  3178. (u8 *) cdc_reg_page_cfg);
  3179. if (ret)
  3180. pr_err("%s: AFE_PARAM_ID_CDC_REG_PAGE_CFG failed %d\n",
  3181. __func__, ret);
  3182. return ret;
  3183. }
  3184. static int afe_send_codec_reg_config(
  3185. struct afe_param_cdc_reg_cfg_data *cdc_reg_cfg)
  3186. {
  3187. u8 *packed_param_data = NULL;
  3188. u32 packed_data_size = 0;
  3189. u32 single_param_size = 0;
  3190. u32 max_data_size = 0;
  3191. u32 max_single_param = 0;
  3192. struct param_hdr_v3 param_hdr;
  3193. int idx = 0;
  3194. int ret = -EINVAL;
  3195. bool is_iid_supported = q6common_is_instance_id_supported();
  3196. memset(&param_hdr, 0, sizeof(param_hdr));
  3197. max_single_param = sizeof(struct param_hdr_v3) +
  3198. sizeof(struct afe_param_cdc_reg_cfg);
  3199. max_data_size = APR_MAX_BUF - sizeof(struct afe_svc_cmd_set_param_v2);
  3200. packed_param_data = kzalloc(max_data_size, GFP_KERNEL);
  3201. if (!packed_param_data)
  3202. return -ENOMEM;
  3203. /* param_hdr is the same for all params sent, set once at top */
  3204. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  3205. param_hdr.instance_id = INSTANCE_ID_0;
  3206. param_hdr.param_id = AFE_PARAM_ID_CDC_REG_CFG;
  3207. param_hdr.param_size = sizeof(struct afe_param_cdc_reg_cfg);
  3208. while (idx < cdc_reg_cfg->num_registers) {
  3209. memset(packed_param_data, 0, max_data_size);
  3210. packed_data_size = 0;
  3211. single_param_size = 0;
  3212. while (packed_data_size + max_single_param < max_data_size &&
  3213. idx < cdc_reg_cfg->num_registers) {
  3214. ret = q6common_pack_pp_params_v2(
  3215. packed_param_data + packed_data_size,
  3216. &param_hdr, (u8 *) &cdc_reg_cfg->reg_data[idx],
  3217. &single_param_size, is_iid_supported);
  3218. if (ret) {
  3219. pr_err("%s: Failed to pack parameters with error %d\n",
  3220. __func__, ret);
  3221. goto done;
  3222. }
  3223. packed_data_size += single_param_size;
  3224. idx++;
  3225. }
  3226. ret = q6afe_svc_set_params(IDX_GLOBAL_CFG, NULL,
  3227. packed_param_data, packed_data_size,
  3228. is_iid_supported);
  3229. if (ret) {
  3230. pr_err("%s: AFE_PARAM_ID_CDC_REG_CFG failed %d\n",
  3231. __func__, ret);
  3232. break;
  3233. }
  3234. }
  3235. done:
  3236. kfree(packed_param_data);
  3237. return ret;
  3238. }
  3239. static int afe_init_cdc_reg_config(void)
  3240. {
  3241. struct param_hdr_v3 param_hdr;
  3242. int ret;
  3243. pr_debug("%s: enter\n", __func__);
  3244. memset(&param_hdr, 0, sizeof(param_hdr));
  3245. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  3246. param_hdr.instance_id = INSTANCE_ID_0;
  3247. param_hdr.param_id = AFE_PARAM_ID_CDC_REG_CFG_INIT;
  3248. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  3249. NULL);
  3250. if (ret)
  3251. pr_err("%s: AFE_PARAM_ID_CDC_INIT_REG_CFG failed %d\n",
  3252. __func__, ret);
  3253. return ret;
  3254. }
  3255. static int afe_send_slimbus_slave_port_cfg(
  3256. struct afe_param_slimbus_slave_port_cfg *slim_slave_config, u16 port_id)
  3257. {
  3258. struct param_hdr_v3 param_hdr;
  3259. int ret;
  3260. pr_debug("%s: enter, port_id = 0x%x\n", __func__, port_id);
  3261. memset(&param_hdr, 0, sizeof(param_hdr));
  3262. param_hdr.module_id = AFE_MODULE_HW_MAD;
  3263. param_hdr.instance_id = INSTANCE_ID_0;
  3264. param_hdr.reserved = 0;
  3265. param_hdr.param_id = AFE_PARAM_ID_SLIMBUS_SLAVE_PORT_CFG;
  3266. param_hdr.param_size = sizeof(struct afe_param_slimbus_slave_port_cfg);
  3267. ret = q6afe_pack_and_set_param_in_band(port_id,
  3268. q6audio_get_port_index(port_id),
  3269. param_hdr,
  3270. (u8 *) slim_slave_config);
  3271. if (ret)
  3272. pr_err("%s: AFE_PARAM_ID_SLIMBUS_SLAVE_PORT_CFG failed %d\n",
  3273. __func__, ret);
  3274. pr_debug("%s: leave %d\n", __func__, ret);
  3275. return ret;
  3276. }
  3277. static int afe_aanc_port_cfg(void *apr, uint16_t tx_port, uint16_t rx_port)
  3278. {
  3279. struct afe_param_aanc_port_cfg aanc_port_cfg;
  3280. struct param_hdr_v3 param_hdr;
  3281. int ret = 0;
  3282. pr_debug("%s: tx_port 0x%x, rx_port 0x%x\n",
  3283. __func__, tx_port, rx_port);
  3284. pr_debug("%s: AANC sample rate tx rate: %d rx rate %d\n", __func__,
  3285. this_afe.aanc_info.aanc_tx_port_sample_rate,
  3286. this_afe.aanc_info.aanc_rx_port_sample_rate);
  3287. memset(&aanc_port_cfg, 0, sizeof(aanc_port_cfg));
  3288. memset(&param_hdr, 0, sizeof(param_hdr));
  3289. /*
  3290. * If aanc tx sample rate or rx sample rate is zero, skip aanc
  3291. * configuration as AFE resampler will fail for invalid sample
  3292. * rates.
  3293. */
  3294. if (!this_afe.aanc_info.aanc_tx_port_sample_rate ||
  3295. !this_afe.aanc_info.aanc_rx_port_sample_rate) {
  3296. return -EINVAL;
  3297. }
  3298. param_hdr.module_id = AFE_MODULE_AANC;
  3299. param_hdr.instance_id = INSTANCE_ID_0;
  3300. param_hdr.param_id = AFE_PARAM_ID_AANC_PORT_CONFIG;
  3301. param_hdr.param_size = sizeof(struct afe_param_aanc_port_cfg);
  3302. aanc_port_cfg.aanc_port_cfg_minor_version =
  3303. AFE_API_VERSION_AANC_PORT_CONFIG;
  3304. aanc_port_cfg.tx_port_sample_rate =
  3305. this_afe.aanc_info.aanc_tx_port_sample_rate;
  3306. aanc_port_cfg.tx_port_channel_map[0] = AANC_TX_VOICE_MIC;
  3307. aanc_port_cfg.tx_port_channel_map[1] = AANC_TX_NOISE_MIC;
  3308. aanc_port_cfg.tx_port_channel_map[2] = AANC_TX_ERROR_MIC;
  3309. aanc_port_cfg.tx_port_channel_map[3] = AANC_TX_MIC_UNUSED;
  3310. aanc_port_cfg.tx_port_channel_map[4] = AANC_TX_MIC_UNUSED;
  3311. aanc_port_cfg.tx_port_channel_map[5] = AANC_TX_MIC_UNUSED;
  3312. aanc_port_cfg.tx_port_channel_map[6] = AANC_TX_MIC_UNUSED;
  3313. aanc_port_cfg.tx_port_channel_map[7] = AANC_TX_MIC_UNUSED;
  3314. aanc_port_cfg.tx_port_num_channels = 3;
  3315. aanc_port_cfg.rx_path_ref_port_id = rx_port;
  3316. aanc_port_cfg.ref_port_sample_rate =
  3317. this_afe.aanc_info.aanc_rx_port_sample_rate;
  3318. ret = q6afe_pack_and_set_param_in_band(tx_port,
  3319. q6audio_get_port_index(tx_port),
  3320. param_hdr,
  3321. (u8 *) &aanc_port_cfg);
  3322. if (ret)
  3323. pr_err("%s: AFE AANC port config failed for tx_port 0x%x, rx_port 0x%x ret %d\n",
  3324. __func__, tx_port, rx_port, ret);
  3325. else
  3326. q6afe_set_aanc_level();
  3327. return ret;
  3328. }
  3329. static int afe_aanc_mod_enable(void *apr, uint16_t tx_port, uint16_t enable)
  3330. {
  3331. struct afe_mod_enable_param mod_enable;
  3332. struct param_hdr_v3 param_hdr;
  3333. int ret = 0;
  3334. pr_debug("%s: tx_port 0x%x\n", __func__, tx_port);
  3335. memset(&mod_enable, 0, sizeof(mod_enable));
  3336. memset(&param_hdr, 0, sizeof(param_hdr));
  3337. param_hdr.module_id = AFE_MODULE_AANC;
  3338. param_hdr.instance_id = INSTANCE_ID_0;
  3339. param_hdr.param_id = AFE_PARAM_ID_ENABLE;
  3340. param_hdr.param_size = sizeof(struct afe_mod_enable_param);
  3341. mod_enable.enable = enable;
  3342. mod_enable.reserved = 0;
  3343. ret = q6afe_pack_and_set_param_in_band(tx_port,
  3344. q6audio_get_port_index(tx_port),
  3345. param_hdr, (u8 *) &mod_enable);
  3346. if (ret)
  3347. pr_err("%s: AFE AANC enable failed for tx_port 0x%x ret %d\n",
  3348. __func__, tx_port, ret);
  3349. return ret;
  3350. }
  3351. static int afe_send_bank_selection_clip(
  3352. struct afe_param_id_clip_bank_sel *param)
  3353. {
  3354. struct param_hdr_v3 param_hdr;
  3355. int ret;
  3356. if (!param) {
  3357. pr_err("%s: Invalid params", __func__);
  3358. return -EINVAL;
  3359. }
  3360. memset(&param_hdr, 0, sizeof(param_hdr));
  3361. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  3362. param_hdr.instance_id = INSTANCE_ID_0;
  3363. param_hdr.param_id = AFE_PARAM_ID_CLIP_BANK_SEL_CFG;
  3364. param_hdr.param_size = sizeof(struct afe_param_id_clip_bank_sel);
  3365. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  3366. (u8 *) param);
  3367. if (ret)
  3368. pr_err("%s: AFE_PARAM_ID_CLIP_BANK_SEL_CFG failed %d\n",
  3369. __func__, ret);
  3370. return ret;
  3371. }
  3372. int afe_send_aanc_version(
  3373. struct afe_param_id_cdc_aanc_version *version_cfg)
  3374. {
  3375. struct param_hdr_v3 param_hdr;
  3376. int ret;
  3377. pr_debug("%s: enter\n", __func__);
  3378. memset(&param_hdr, 0, sizeof(param_hdr));
  3379. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  3380. param_hdr.instance_id = INSTANCE_ID_0;
  3381. param_hdr.param_id = AFE_PARAM_ID_CDC_AANC_VERSION;
  3382. param_hdr.param_size = sizeof(struct afe_param_id_cdc_aanc_version);
  3383. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  3384. (u8 *) version_cfg);
  3385. if (ret)
  3386. pr_err("%s: AFE_PARAM_ID_CDC_AANC_VERSION failed %d\n",
  3387. __func__, ret);
  3388. return ret;
  3389. }
  3390. /**
  3391. * afe_port_set_mad_type -
  3392. * to update mad type
  3393. *
  3394. * @port_id: AFE port id number
  3395. * @mad_type: MAD type enum value
  3396. *
  3397. * Returns 0 on success or error on failure.
  3398. */
  3399. int afe_port_set_mad_type(u16 port_id, enum afe_mad_type mad_type)
  3400. {
  3401. int i;
  3402. if (port_id == AFE_PORT_ID_TERTIARY_MI2S_TX ||
  3403. port_id == AFE_PORT_ID_INT3_MI2S_TX ||
  3404. port_id == AFE_PORT_ID_TX_CODEC_DMA_TX_3 ||
  3405. port_id == AFE_PORT_ID_TERTIARY_TDM_TX) {
  3406. mad_type = MAD_SW_AUDIO;
  3407. return 0;
  3408. }
  3409. i = port_id - SLIMBUS_0_RX;
  3410. if (i < 0 || i >= ARRAY_SIZE(afe_ports_mad_type)) {
  3411. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  3412. return -EINVAL;
  3413. }
  3414. atomic_set(&afe_ports_mad_type[i], mad_type);
  3415. return 0;
  3416. }
  3417. EXPORT_SYMBOL(afe_port_set_mad_type);
  3418. /**
  3419. * afe_port_get_mad_type -
  3420. * to retrieve mad type
  3421. *
  3422. * @port_id: AFE port id number
  3423. *
  3424. * Returns valid enum value on success or MAD_HW_NONE on failure.
  3425. */
  3426. enum afe_mad_type afe_port_get_mad_type(u16 port_id)
  3427. {
  3428. int i;
  3429. if (port_id == AFE_PORT_ID_TERTIARY_MI2S_TX ||
  3430. port_id == AFE_PORT_ID_INT3_MI2S_TX ||
  3431. port_id == AFE_PORT_ID_TX_CODEC_DMA_TX_3 ||
  3432. port_id == AFE_PORT_ID_TERTIARY_TDM_TX)
  3433. return MAD_SW_AUDIO;
  3434. i = port_id - SLIMBUS_0_RX;
  3435. if (i < 0 || i >= ARRAY_SIZE(afe_ports_mad_type)) {
  3436. pr_debug("%s: Non Slimbus port_id 0x%x\n", __func__, port_id);
  3437. return MAD_HW_NONE;
  3438. }
  3439. return (enum afe_mad_type) atomic_read(&afe_ports_mad_type[i]);
  3440. }
  3441. EXPORT_SYMBOL(afe_port_get_mad_type);
  3442. /**
  3443. * afe_set_config -
  3444. * to configure AFE session with
  3445. * specified configuration for given config type
  3446. *
  3447. * @config_type: config type
  3448. * @config_data: configuration to pass to AFE session
  3449. * @arg: argument used in specific config types
  3450. *
  3451. * Returns 0 on success or error value on port start failure.
  3452. */
  3453. int afe_set_config(enum afe_config_type config_type, void *config_data, int arg)
  3454. {
  3455. int ret;
  3456. pr_debug("%s: enter config_type %d\n", __func__, config_type);
  3457. ret = afe_q6_interface_prepare();
  3458. if (ret) {
  3459. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3460. return ret;
  3461. }
  3462. switch (config_type) {
  3463. case AFE_SLIMBUS_SLAVE_CONFIG:
  3464. ret = afe_send_slimbus_slave_cfg(config_data);
  3465. if (!ret)
  3466. ret = afe_init_cdc_reg_config();
  3467. else
  3468. pr_err("%s: Sending slimbus slave config failed %d\n",
  3469. __func__, ret);
  3470. break;
  3471. case AFE_CDC_REGISTERS_CONFIG:
  3472. ret = afe_send_codec_reg_config(config_data);
  3473. break;
  3474. case AFE_SLIMBUS_SLAVE_PORT_CONFIG:
  3475. ret = afe_send_slimbus_slave_port_cfg(config_data, arg);
  3476. break;
  3477. case AFE_AANC_VERSION:
  3478. ret = afe_send_aanc_version(config_data);
  3479. break;
  3480. case AFE_CLIP_BANK_SEL:
  3481. ret = afe_send_bank_selection_clip(config_data);
  3482. break;
  3483. case AFE_CDC_CLIP_REGISTERS_CONFIG:
  3484. ret = afe_send_codec_reg_config(config_data);
  3485. break;
  3486. case AFE_CDC_REGISTER_PAGE_CONFIG:
  3487. ret = afe_send_codec_reg_page_config(config_data);
  3488. break;
  3489. default:
  3490. pr_err("%s: unknown configuration type %d",
  3491. __func__, config_type);
  3492. ret = -EINVAL;
  3493. }
  3494. if (!ret)
  3495. set_bit(config_type, &afe_configured_cmd);
  3496. return ret;
  3497. }
  3498. EXPORT_SYMBOL(afe_set_config);
  3499. /*
  3500. * afe_clear_config - If SSR happens ADSP loses AFE configs, let AFE driver know
  3501. * about the state so client driver can wait until AFE is
  3502. * reconfigured.
  3503. */
  3504. void afe_clear_config(enum afe_config_type config)
  3505. {
  3506. clear_bit(config, &afe_configured_cmd);
  3507. }
  3508. EXPORT_SYMBOL(afe_clear_config);
  3509. bool afe_has_config(enum afe_config_type config)
  3510. {
  3511. return !!test_bit(config, &afe_configured_cmd);
  3512. }
  3513. int afe_send_spdif_clk_cfg(struct afe_param_id_spdif_clk_cfg *cfg,
  3514. u16 port_id)
  3515. {
  3516. struct afe_param_id_spdif_clk_cfg clk_cfg;
  3517. struct param_hdr_v3 param_hdr;
  3518. int ret = 0;
  3519. if (!cfg) {
  3520. pr_err("%s: Error, no configuration data\n", __func__);
  3521. return -EINVAL;
  3522. }
  3523. memset(&clk_cfg, 0, sizeof(clk_cfg));
  3524. memset(&param_hdr, 0, sizeof(param_hdr));
  3525. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3526. param_hdr.instance_id = INSTANCE_ID_0;
  3527. param_hdr.param_id = AFE_PARAM_ID_SPDIF_CLK_CONFIG;
  3528. param_hdr.param_size = sizeof(struct afe_param_id_spdif_clk_cfg);
  3529. pr_debug("%s: Minor version = 0x%x clk val = %d clk root = 0x%x port id = 0x%x\n",
  3530. __func__, clk_cfg.clk_cfg_minor_version, clk_cfg.clk_value,
  3531. clk_cfg.clk_root, q6audio_get_port_id(port_id));
  3532. ret = q6afe_pack_and_set_param_in_band(port_id,
  3533. q6audio_get_port_index(port_id),
  3534. param_hdr, (u8 *) &clk_cfg);
  3535. if (ret < 0)
  3536. pr_err("%s: AFE send clock config for port 0x%x failed ret = %d\n",
  3537. __func__, port_id, ret);
  3538. return ret;
  3539. }
  3540. /**
  3541. * afe_send_spdif_ch_status_cfg -
  3542. * to configure AFE session with
  3543. * specified channel status configuration
  3544. *
  3545. * @ch_status_cfg: channel status configutation
  3546. * @port_id: AFE port id number
  3547. *
  3548. * Returns 0 on success or error value on port start failure.
  3549. */
  3550. int afe_send_spdif_ch_status_cfg(struct afe_param_id_spdif_ch_status_cfg
  3551. *ch_status_cfg, u16 port_id)
  3552. {
  3553. struct param_hdr_v3 param_hdr;
  3554. int ret = 0;
  3555. if (!ch_status_cfg) {
  3556. pr_err("%s: Error, no configuration data\n", __func__);
  3557. return -EINVAL;
  3558. }
  3559. memset(&param_hdr, 0, sizeof(param_hdr));
  3560. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3561. param_hdr.instance_id = INSTANCE_ID_0;
  3562. param_hdr.param_id = AFE_PARAM_ID_SPDIF_CLK_CONFIG;
  3563. param_hdr.param_size = sizeof(struct afe_param_id_spdif_ch_status_cfg);
  3564. ret = q6afe_pack_and_set_param_in_band(port_id,
  3565. q6audio_get_port_index(port_id),
  3566. param_hdr, (u8 *) ch_status_cfg);
  3567. if (ret < 0)
  3568. pr_err("%s: AFE send channel status for port 0x%x failed ret = %d\n",
  3569. __func__, port_id, ret);
  3570. return ret;
  3571. }
  3572. EXPORT_SYMBOL(afe_send_spdif_ch_status_cfg);
  3573. int afe_send_cmd_wakeup_register(void *handle, bool enable)
  3574. {
  3575. struct afe_svc_cmd_evt_cfg_payload wakeup_irq;
  3576. int ret = 0;
  3577. pr_debug("%s: enter\n", __func__);
  3578. wakeup_irq.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3579. APR_HDR_LEN(APR_HDR_SIZE),
  3580. APR_PKT_VER);
  3581. wakeup_irq.hdr.pkt_size = sizeof(wakeup_irq);
  3582. wakeup_irq.hdr.src_port = 0;
  3583. wakeup_irq.hdr.dest_port = 0;
  3584. wakeup_irq.hdr.token = 0x0;
  3585. wakeup_irq.hdr.opcode = AFE_SVC_CMD_EVENT_CFG;
  3586. wakeup_irq.event_id = AFE_EVENT_ID_MBHC_DETECTION_SW_WA;
  3587. wakeup_irq.reg_flag = enable;
  3588. pr_debug("%s: cmd wakeup register opcode[0x%x] register:%d\n",
  3589. __func__, wakeup_irq.hdr.opcode, wakeup_irq.reg_flag);
  3590. ret = afe_apr_send_pkt(&wakeup_irq, &this_afe.wait_wakeup);
  3591. if (ret)
  3592. pr_err("%s: AFE wakeup command register %d failed %d\n",
  3593. __func__, enable, ret);
  3594. return ret;
  3595. }
  3596. EXPORT_SYMBOL(afe_send_cmd_wakeup_register);
  3597. static int afe_send_cmd_port_start(u16 port_id)
  3598. {
  3599. struct afe_port_cmd_device_start start;
  3600. int ret, index;
  3601. pr_debug("%s: enter\n", __func__);
  3602. index = q6audio_get_port_index(port_id);
  3603. if (index < 0 || index >= AFE_MAX_PORTS) {
  3604. pr_err("%s: AFE port index[%d] invalid!\n",
  3605. __func__, index);
  3606. return -EINVAL;
  3607. }
  3608. ret = q6audio_validate_port(port_id);
  3609. if (ret < 0) {
  3610. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  3611. return -EINVAL;
  3612. }
  3613. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3614. APR_HDR_LEN(APR_HDR_SIZE),
  3615. APR_PKT_VER);
  3616. start.hdr.pkt_size = sizeof(start);
  3617. start.hdr.src_port = 0;
  3618. start.hdr.dest_port = 0;
  3619. start.hdr.token = index;
  3620. start.hdr.opcode = AFE_PORT_CMD_DEVICE_START;
  3621. start.port_id = q6audio_get_port_id(port_id);
  3622. pr_debug("%s: cmd device start opcode[0x%x] port id[0x%x]\n",
  3623. __func__, start.hdr.opcode, start.port_id);
  3624. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  3625. if (ret)
  3626. pr_err("%s: AFE enable for port 0x%x failed %d\n", __func__,
  3627. port_id, ret);
  3628. return ret;
  3629. }
  3630. static int afe_aanc_start(uint16_t tx_port_id, uint16_t rx_port_id)
  3631. {
  3632. int ret;
  3633. pr_debug("%s: Tx port is 0x%x, Rx port is 0x%x\n",
  3634. __func__, tx_port_id, rx_port_id);
  3635. ret = afe_aanc_port_cfg(this_afe.apr, tx_port_id, rx_port_id);
  3636. if (ret) {
  3637. pr_err("%s: Send AANC Port Config failed %d\n",
  3638. __func__, ret);
  3639. goto fail_cmd;
  3640. }
  3641. send_afe_cal_type(AFE_AANC_CAL, tx_port_id);
  3642. fail_cmd:
  3643. return ret;
  3644. }
  3645. /**
  3646. * afe_spdif_port_start - to configure AFE session with
  3647. * specified port configuration
  3648. *
  3649. * @port_id: AFE port id number
  3650. * @spdif_port: spdif port configutation
  3651. * @rate: sampling rate of port
  3652. *
  3653. * Returns 0 on success or error value on port start failure.
  3654. */
  3655. int afe_spdif_port_start(u16 port_id, struct afe_spdif_port_config *spdif_port,
  3656. u32 rate)
  3657. {
  3658. struct param_hdr_v3 param_hdr;
  3659. uint16_t port_index;
  3660. int ret = 0;
  3661. if (!spdif_port) {
  3662. pr_err("%s: Error, no configuration data\n", __func__);
  3663. ret = -EINVAL;
  3664. return ret;
  3665. }
  3666. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3667. memset(&param_hdr, 0, sizeof(param_hdr));
  3668. ret = q6audio_validate_port(port_id);
  3669. if (ret < 0) {
  3670. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  3671. return -EINVAL;
  3672. }
  3673. afe_send_cal(port_id);
  3674. afe_send_hw_delay(port_id, rate);
  3675. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3676. param_hdr.instance_id = INSTANCE_ID_0;
  3677. param_hdr.param_id = AFE_PARAM_ID_SPDIF_CONFIG;
  3678. param_hdr.param_size = sizeof(struct afe_spdif_port_config);
  3679. ret = q6afe_pack_and_set_param_in_band(port_id,
  3680. q6audio_get_port_index(port_id),
  3681. param_hdr, (u8 *) spdif_port);
  3682. if (ret) {
  3683. pr_err("%s: AFE enable for port 0x%x failed ret = %d\n",
  3684. __func__, port_id, ret);
  3685. goto fail_cmd;
  3686. }
  3687. port_index = afe_get_port_index(port_id);
  3688. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  3689. this_afe.afe_sample_rates[port_index] = rate;
  3690. } else {
  3691. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  3692. ret = -EINVAL;
  3693. goto fail_cmd;
  3694. }
  3695. if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX) {
  3696. ret = afe_send_spdif_ch_status_cfg(&spdif_port->ch_status,
  3697. port_id);
  3698. if (ret < 0) {
  3699. pr_err("%s: afe send failed %d\n", __func__, ret);
  3700. goto fail_cmd;
  3701. }
  3702. }
  3703. return afe_send_cmd_port_start(port_id);
  3704. fail_cmd:
  3705. return ret;
  3706. }
  3707. EXPORT_SYMBOL(afe_spdif_port_start);
  3708. /**
  3709. * afe_spdif_reg_event_cfg -
  3710. * register for event from AFE spdif port
  3711. *
  3712. * @port_id: Port ID to register event
  3713. * @reg_flag: register or unregister
  3714. * @cb: callback function to invoke for events from module
  3715. * @private_data: private data to sent back in callback fn
  3716. *
  3717. * Returns 0 on success or error on failure
  3718. */
  3719. int afe_spdif_reg_event_cfg(u16 port_id, u16 reg_flag,
  3720. void (*cb)(uint32_t opcode,
  3721. uint32_t token, uint32_t *payload, void *priv),
  3722. void *private_data)
  3723. {
  3724. struct afe_port_cmd_event_cfg *config;
  3725. struct afe_port_cmd_mod_evt_cfg_payload pl;
  3726. int index;
  3727. int ret;
  3728. int num_events = 1;
  3729. int cmd_size = sizeof(struct afe_port_cmd_event_cfg) +
  3730. (num_events * sizeof(struct afe_port_cmd_mod_evt_cfg_payload));
  3731. config = kzalloc(cmd_size, GFP_KERNEL);
  3732. if (!config)
  3733. return -ENOMEM;
  3734. if (port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX) {
  3735. this_afe.pri_spdif_tx_cb = cb;
  3736. this_afe.pri_spdif_tx_private_data = private_data;
  3737. } else if (port_id == AFE_PORT_ID_SECONDARY_SPDIF_TX) {
  3738. this_afe.sec_spdif_tx_cb = cb;
  3739. this_afe.sec_spdif_tx_private_data = private_data;
  3740. } else {
  3741. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  3742. ret = -EINVAL;
  3743. goto fail_idx;
  3744. }
  3745. index = q6audio_get_port_index(port_id);
  3746. if (index < 0) {
  3747. pr_err("%s: Invalid index number: %d\n", __func__, index);
  3748. ret = -EINVAL;
  3749. goto fail_idx;
  3750. }
  3751. memset(&pl, 0, sizeof(pl));
  3752. pl.module_id = AFE_MODULE_CUSTOM_EVENTS;
  3753. pl.event_id = AFE_PORT_FMT_UPDATE_EVENT;
  3754. pl.reg_flag = reg_flag;
  3755. config->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3756. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3757. config->hdr.pkt_size = cmd_size;
  3758. config->hdr.src_port = 1;
  3759. config->hdr.dest_port = 1;
  3760. config->hdr.token = index;
  3761. config->hdr.opcode = AFE_PORT_CMD_MOD_EVENT_CFG;
  3762. config->port_id = q6audio_get_port_id(port_id);
  3763. config->num_events = num_events;
  3764. config->version = 1;
  3765. memcpy(config->payload, &pl, sizeof(pl));
  3766. ret = afe_apr_send_pkt((uint32_t *) config, &this_afe.wait[index]);
  3767. fail_idx:
  3768. kfree(config);
  3769. return ret;
  3770. }
  3771. EXPORT_SYMBOL(afe_spdif_reg_event_cfg);
  3772. int afe_send_slot_mapping_cfg(
  3773. struct afe_param_id_slot_mapping_cfg *slot_mapping_cfg,
  3774. u16 port_id)
  3775. {
  3776. struct param_hdr_v3 param_hdr;
  3777. int ret = 0;
  3778. if (!slot_mapping_cfg) {
  3779. pr_err("%s: Error, no configuration data\n", __func__);
  3780. return -EINVAL;
  3781. }
  3782. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3783. memset(&param_hdr, 0, sizeof(param_hdr));
  3784. param_hdr.module_id = AFE_MODULE_TDM;
  3785. param_hdr.instance_id = INSTANCE_ID_0;
  3786. param_hdr.param_id = AFE_PARAM_ID_PORT_SLOT_MAPPING_CONFIG;
  3787. param_hdr.param_size = sizeof(struct afe_param_id_slot_mapping_cfg);
  3788. ret = q6afe_pack_and_set_param_in_band(port_id,
  3789. q6audio_get_port_index(port_id),
  3790. param_hdr,
  3791. (u8 *) slot_mapping_cfg);
  3792. if (ret < 0)
  3793. pr_err("%s: AFE send slot mapping for port 0x%x failed ret = %d\n",
  3794. __func__, port_id, ret);
  3795. return ret;
  3796. }
  3797. int afe_send_slot_mapping_cfg_v2(
  3798. struct afe_param_id_slot_mapping_cfg_v2 *slot_mapping_cfg,
  3799. u16 port_id)
  3800. {
  3801. struct param_hdr_v3 param_hdr;
  3802. int ret = 0;
  3803. if (!slot_mapping_cfg) {
  3804. pr_err("%s: Error, no configuration data\n", __func__);
  3805. return -EINVAL;
  3806. }
  3807. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3808. memset(&param_hdr, 0, sizeof(param_hdr));
  3809. param_hdr.module_id = AFE_MODULE_TDM;
  3810. param_hdr.instance_id = INSTANCE_ID_0;
  3811. param_hdr.param_id = AFE_PARAM_ID_PORT_SLOT_MAPPING_CONFIG;
  3812. param_hdr.param_size = sizeof(struct afe_param_id_slot_mapping_cfg_v2);
  3813. ret = q6afe_pack_and_set_param_in_band(port_id,
  3814. q6audio_get_port_index(port_id),
  3815. param_hdr,
  3816. (u8 *) slot_mapping_cfg);
  3817. if (ret < 0)
  3818. pr_err("%s: AFE send slot mapping for port 0x%x failed ret = %d\n",
  3819. __func__, port_id, ret);
  3820. return ret;
  3821. }
  3822. int afe_send_custom_tdm_header_cfg(
  3823. struct afe_param_id_custom_tdm_header_cfg *custom_tdm_header_cfg,
  3824. u16 port_id)
  3825. {
  3826. struct param_hdr_v3 param_hdr;
  3827. int ret = 0;
  3828. if (!custom_tdm_header_cfg) {
  3829. pr_err("%s: Error, no configuration data\n", __func__);
  3830. return -EINVAL;
  3831. }
  3832. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3833. memset(&param_hdr, 0, sizeof(param_hdr));
  3834. param_hdr.module_id = AFE_MODULE_TDM;
  3835. param_hdr.instance_id = INSTANCE_ID_0;
  3836. param_hdr.param_id = AFE_PARAM_ID_CUSTOM_TDM_HEADER_CONFIG;
  3837. param_hdr.param_size =
  3838. sizeof(struct afe_param_id_custom_tdm_header_cfg);
  3839. ret = q6afe_pack_and_set_param_in_band(port_id,
  3840. q6audio_get_port_index(port_id),
  3841. param_hdr,
  3842. (u8 *) custom_tdm_header_cfg);
  3843. if (ret < 0)
  3844. pr_err("%s: AFE send custom tdm header for port 0x%x failed ret = %d\n",
  3845. __func__, port_id, ret);
  3846. return ret;
  3847. }
  3848. /**
  3849. * afe_tdm_port_start - to configure AFE session with
  3850. * specified port configuration
  3851. *
  3852. * @port_id: AFE port id number
  3853. * @tdm_port: TDM port configutation
  3854. * @rate: sampling rate of port
  3855. * @num_groups: number of TDM groups
  3856. *
  3857. * Returns 0 on success or error value on port start failure.
  3858. */
  3859. int afe_tdm_port_start(u16 port_id, struct afe_tdm_port_config *tdm_port,
  3860. u32 rate, u16 num_groups)
  3861. {
  3862. struct param_hdr_v3 param_hdr;
  3863. int index = 0;
  3864. uint16_t port_index = 0;
  3865. enum afe_mad_type mad_type = MAD_HW_NONE;
  3866. int ret = 0;
  3867. if (!tdm_port) {
  3868. pr_err("%s: Error, no configuration data\n", __func__);
  3869. return -EINVAL;
  3870. }
  3871. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3872. memset(&param_hdr, 0, sizeof(param_hdr));
  3873. index = q6audio_get_port_index(port_id);
  3874. if (index < 0 || index >= AFE_MAX_PORTS) {
  3875. pr_err("%s: AFE port index[%d] invalid!\n",
  3876. __func__, index);
  3877. return -EINVAL;
  3878. }
  3879. ret = q6audio_validate_port(port_id);
  3880. if (ret < 0) {
  3881. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  3882. return -EINVAL;
  3883. }
  3884. ret = afe_q6_interface_prepare();
  3885. if (ret != 0) {
  3886. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3887. return ret;
  3888. }
  3889. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  3890. this_afe.afe_sample_rates[index] = rate;
  3891. if (this_afe.rt_cb)
  3892. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  3893. }
  3894. port_index = afe_get_port_index(port_id);
  3895. /* Also send the topology id here: */
  3896. if (!(this_afe.afe_cal_mode[port_index] == AFE_CAL_MODE_NONE)) {
  3897. /* One time call: only for first time */
  3898. afe_send_custom_topology();
  3899. afe_send_port_topology_id(port_id);
  3900. afe_send_cal(port_id);
  3901. afe_send_hw_delay(port_id, rate);
  3902. }
  3903. /* Start SW MAD module */
  3904. mad_type = afe_port_get_mad_type(port_id);
  3905. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  3906. mad_type);
  3907. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  3908. if (!afe_has_config(AFE_CDC_REGISTERS_CONFIG) ||
  3909. !afe_has_config(AFE_SLIMBUS_SLAVE_CONFIG)) {
  3910. pr_err("%s: AFE isn't configured yet for\n"
  3911. "HW MAD try Again\n", __func__);
  3912. ret = -EAGAIN;
  3913. goto fail_cmd;
  3914. }
  3915. ret = afe_turn_onoff_hw_mad(mad_type, true);
  3916. if (ret) {
  3917. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  3918. __func__, ret);
  3919. goto fail_cmd;
  3920. }
  3921. }
  3922. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3923. param_hdr.instance_id = INSTANCE_ID_0;
  3924. param_hdr.param_id = AFE_PARAM_ID_TDM_CONFIG;
  3925. param_hdr.param_size = sizeof(struct afe_param_id_tdm_cfg);
  3926. ret = q6afe_pack_and_set_param_in_band(port_id,
  3927. q6audio_get_port_index(port_id),
  3928. param_hdr,
  3929. (u8 *) &tdm_port->tdm);
  3930. if (ret) {
  3931. pr_err("%s: AFE enable for port 0x%x failed ret = %d\n",
  3932. __func__, port_id, ret);
  3933. goto fail_cmd;
  3934. }
  3935. port_index = afe_get_port_index(port_id);
  3936. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  3937. this_afe.afe_sample_rates[port_index] = rate;
  3938. } else {
  3939. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  3940. ret = -EINVAL;
  3941. goto fail_cmd;
  3942. }
  3943. if (q6core_get_avcs_api_version_per_service(
  3944. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V3)
  3945. ret = afe_send_slot_mapping_cfg_v2(
  3946. &tdm_port->slot_mapping_v2, port_id);
  3947. else
  3948. ret = afe_send_slot_mapping_cfg(
  3949. &tdm_port->slot_mapping,
  3950. port_id);
  3951. if (ret < 0) {
  3952. pr_err("%s: afe send failed %d\n", __func__, ret);
  3953. goto fail_cmd;
  3954. }
  3955. if (tdm_port->custom_tdm_header.header_type) {
  3956. ret = afe_send_custom_tdm_header_cfg(
  3957. &tdm_port->custom_tdm_header, port_id);
  3958. if (ret < 0) {
  3959. pr_err("%s: afe send failed %d\n", __func__, ret);
  3960. goto fail_cmd;
  3961. }
  3962. }
  3963. ret = afe_send_cmd_port_start(port_id);
  3964. fail_cmd:
  3965. return ret;
  3966. }
  3967. EXPORT_SYMBOL(afe_tdm_port_start);
  3968. /**
  3969. * afe_set_cal_mode -
  3970. * set cal mode for AFE calibration
  3971. *
  3972. * @port_id: AFE port id number
  3973. * @afe_cal_mode: AFE calib mode
  3974. *
  3975. */
  3976. void afe_set_cal_mode(u16 port_id, enum afe_cal_mode afe_cal_mode)
  3977. {
  3978. uint16_t port_index;
  3979. port_index = afe_get_port_index(port_id);
  3980. this_afe.afe_cal_mode[port_index] = afe_cal_mode;
  3981. }
  3982. EXPORT_SYMBOL(afe_set_cal_mode);
  3983. /**
  3984. * afe_set_vad_cfg -
  3985. * set configuration for VAD
  3986. *
  3987. * @port_id: AFE port id number
  3988. * @vad_enable: enable/disable vad
  3989. * @preroll_config: Preroll configuration
  3990. *
  3991. */
  3992. void afe_set_vad_cfg(u32 vad_enable, u32 preroll_config,
  3993. u32 port_id)
  3994. {
  3995. uint16_t port_index;
  3996. port_index = afe_get_port_index(port_id);
  3997. this_afe.vad_cfg[port_index].is_enable = vad_enable;
  3998. this_afe.vad_cfg[port_index].pre_roll = preroll_config;
  3999. }
  4000. EXPORT_SYMBOL(afe_set_vad_cfg);
  4001. /**
  4002. * afe_get_island_mode_cfg -
  4003. * get island mode configuration
  4004. *
  4005. * @port_id: AFE port id number
  4006. * @enable_flag: Enable or Disable
  4007. *
  4008. */
  4009. void afe_get_island_mode_cfg(u16 port_id, u32 *enable_flag)
  4010. {
  4011. uint16_t port_index;
  4012. if (enable_flag) {
  4013. port_index = afe_get_port_index(port_id);
  4014. *enable_flag = this_afe.island_mode[port_index];
  4015. }
  4016. }
  4017. EXPORT_SYMBOL(afe_get_island_mode_cfg);
  4018. /**
  4019. * afe_set_island_mode_cfg -
  4020. * set island mode configuration
  4021. *
  4022. * @port_id: AFE port id number
  4023. * @enable_flag: Enable or Disable
  4024. *
  4025. */
  4026. void afe_set_island_mode_cfg(u16 port_id, u32 enable_flag)
  4027. {
  4028. uint16_t port_index;
  4029. port_index = afe_get_port_index(port_id);
  4030. this_afe.island_mode[port_index] = enable_flag;
  4031. trace_printk("%s: set island mode cfg 0x%x for port 0x%x\n",
  4032. __func__, this_afe.island_mode[port_index], port_id);
  4033. }
  4034. EXPORT_SYMBOL(afe_set_island_mode_cfg);
  4035. /**
  4036. * afe_get_power_mode_cfg -
  4037. * get power mode configuration
  4038. * @port_id: AFE port id number
  4039. * @enable_flag: Enable or Disable
  4040. */
  4041. int afe_get_power_mode_cfg(u16 port_id, u32 *enable_flag)
  4042. {
  4043. uint16_t port_index;
  4044. int ret = 0;
  4045. if (enable_flag) {
  4046. port_index = afe_get_port_index(port_id);
  4047. if (port_index < 0 || port_index >= AFE_MAX_PORTS) {
  4048. pr_err("%s: AFE port index[%d] invalid!\n",
  4049. __func__, port_index);
  4050. return -EINVAL;
  4051. }
  4052. *enable_flag = this_afe.power_mode[port_index];
  4053. }
  4054. return ret;
  4055. }
  4056. EXPORT_SYMBOL(afe_get_power_mode_cfg);
  4057. /**
  4058. * afe_set_power_mode_cfg -
  4059. * set power mode configuration
  4060. * @port_id: AFE port id number
  4061. * @enable_flag: Enable or Disable
  4062. */
  4063. int afe_set_power_mode_cfg(u16 port_id, u32 enable_flag)
  4064. {
  4065. uint16_t port_index;
  4066. int ret= 0;
  4067. port_index = afe_get_port_index(port_id);
  4068. if (port_index < 0 || port_index >= AFE_MAX_PORTS) {
  4069. pr_err("%s: AFE port index[%d] invalid!\n",
  4070. __func__, port_index);
  4071. return -EINVAL;
  4072. }
  4073. this_afe.power_mode[port_index] = enable_flag;
  4074. trace_printk("%s: set power mode cfg 0x%x for port 0x%x\n",
  4075. __func__, this_afe.power_mode[port_index], port_id);
  4076. return ret;
  4077. }
  4078. EXPORT_SYMBOL(afe_set_power_mode_cfg);
  4079. /**
  4080. * afe_set_routing_callback -
  4081. * Update callback function for routing
  4082. *
  4083. * @cb: callback function to update with
  4084. *
  4085. */
  4086. void afe_set_routing_callback(routing_cb cb)
  4087. {
  4088. this_afe.rt_cb = cb;
  4089. }
  4090. EXPORT_SYMBOL(afe_set_routing_callback);
  4091. int afe_port_send_usb_dev_param(u16 port_id, union afe_port_config *afe_config)
  4092. {
  4093. struct afe_param_id_usb_audio_dev_params usb_dev;
  4094. struct afe_param_id_usb_audio_dev_lpcm_fmt lpcm_fmt;
  4095. struct afe_param_id_usb_audio_svc_interval svc_int;
  4096. struct param_hdr_v3 param_hdr;
  4097. int ret = 0, index = 0;
  4098. if (!afe_config) {
  4099. pr_err("%s: Error, no configuration data\n", __func__);
  4100. ret = -EINVAL;
  4101. goto exit;
  4102. }
  4103. index = q6audio_get_port_index(port_id);
  4104. if (index < 0 || index >= AFE_MAX_PORTS) {
  4105. pr_err("%s: AFE port index[%d] invalid!\n",
  4106. __func__, index);
  4107. return -EINVAL;
  4108. }
  4109. memset(&usb_dev, 0, sizeof(usb_dev));
  4110. memset(&lpcm_fmt, 0, sizeof(lpcm_fmt));
  4111. memset(&param_hdr, 0, sizeof(param_hdr));
  4112. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  4113. param_hdr.instance_id = INSTANCE_ID_0;
  4114. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_DEV_PARAMS;
  4115. param_hdr.param_size = sizeof(usb_dev);
  4116. usb_dev.cfg_minor_version = AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  4117. usb_dev.dev_token = afe_config->usb_audio.dev_token;
  4118. ret = q6afe_pack_and_set_param_in_band(port_id,
  4119. q6audio_get_port_index(port_id),
  4120. param_hdr, (u8 *) &usb_dev);
  4121. if (ret) {
  4122. pr_err("%s: AFE device param cmd failed %d\n",
  4123. __func__, ret);
  4124. goto exit;
  4125. }
  4126. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_DEV_LPCM_FMT;
  4127. param_hdr.param_size = sizeof(lpcm_fmt);
  4128. lpcm_fmt.cfg_minor_version = AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  4129. lpcm_fmt.endian = afe_config->usb_audio.endian;
  4130. ret = q6afe_pack_and_set_param_in_band(port_id,
  4131. q6audio_get_port_index(port_id),
  4132. param_hdr, (u8 *) &lpcm_fmt);
  4133. if (ret) {
  4134. pr_err("%s: AFE device param cmd LPCM_FMT failed %d\n",
  4135. __func__, ret);
  4136. goto exit;
  4137. }
  4138. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_SVC_INTERVAL;
  4139. param_hdr.param_size = sizeof(svc_int);
  4140. svc_int.cfg_minor_version =
  4141. AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  4142. svc_int.svc_interval = afe_config->usb_audio.service_interval;
  4143. pr_debug("%s: AFE device param cmd sending SVC_INTERVAL %d\n",
  4144. __func__, svc_int.svc_interval);
  4145. ret = q6afe_pack_and_set_param_in_band(port_id,
  4146. q6audio_get_port_index(port_id),
  4147. param_hdr, (u8 *) &svc_int);
  4148. if (ret) {
  4149. pr_err("%s: AFE device param cmd svc_interval failed %d\n",
  4150. __func__, ret);
  4151. ret = -EINVAL;
  4152. goto exit;
  4153. }
  4154. exit:
  4155. return ret;
  4156. }
  4157. static int q6afe_send_ttp_config(u16 port_id,
  4158. union afe_port_config afe_config,
  4159. struct afe_ttp_config *ttp_cfg)
  4160. {
  4161. struct afe_ttp_gen_enable_t ttp_gen_enable;
  4162. struct afe_ttp_gen_cfg_t ttp_gen_cfg;
  4163. struct param_hdr_v3 param_hdr;
  4164. int ret;
  4165. memset(&ttp_gen_enable, 0, sizeof(ttp_gen_enable));
  4166. memset(&ttp_gen_cfg, 0, sizeof(ttp_gen_cfg));
  4167. memset(&param_hdr, 0, sizeof(param_hdr));
  4168. param_hdr.module_id = AFE_MODULE_ID_DECODER;
  4169. param_hdr.instance_id = INSTANCE_ID_0;
  4170. pr_debug("%s: Enable TTP generator\n", __func__);
  4171. ttp_gen_enable = ttp_cfg->ttp_gen_enable;
  4172. param_hdr.param_id = AVS_DEPACKETIZER_PARAM_ID_TTP_GEN_STATE;
  4173. param_hdr.param_size = sizeof(struct afe_ttp_gen_enable_t);
  4174. ret = q6afe_pack_and_set_param_in_band(port_id,
  4175. q6audio_get_port_index(port_id),
  4176. param_hdr,
  4177. (u8 *) &ttp_gen_enable);
  4178. if (ret) {
  4179. pr_err("%s: AVS_DEPACKETIZER_PARAM_ID_TTP_GEN_STATE for port 0x%x failed %d\n",
  4180. __func__, port_id, ret);
  4181. goto exit;
  4182. }
  4183. pr_debug("%s: sending TTP generator config\n", __func__);
  4184. ttp_gen_cfg = ttp_cfg->ttp_gen_cfg;
  4185. param_hdr.param_id = AVS_DEPACKETIZER_PARAM_ID_TTP_GEN_CFG;
  4186. param_hdr.param_size = sizeof(struct afe_ttp_gen_cfg_t);
  4187. ret = q6afe_pack_and_set_param_in_band(port_id,
  4188. q6audio_get_port_index(port_id),
  4189. param_hdr,
  4190. (u8 *) &ttp_gen_cfg);
  4191. if (ret)
  4192. pr_err("%s: AVS_DEPACKETIZER_PARAM_ID_TTP_GEN_CFG for port 0x%x failed %d\n",
  4193. __func__, port_id, ret);
  4194. exit:
  4195. return ret;
  4196. }
  4197. static int q6afe_send_dec_config(u16 port_id,
  4198. union afe_port_config afe_config,
  4199. struct afe_dec_config *cfg,
  4200. u32 format,
  4201. u16 afe_in_channels, u16 afe_in_bit_width)
  4202. {
  4203. struct afe_dec_media_fmt_t dec_media_fmt;
  4204. struct avs_dec_depacketizer_id_param_t dec_depkt_id_param;
  4205. struct avs_dec_congestion_buffer_param_t dec_buffer_id_param;
  4206. struct afe_enc_dec_imc_info_param_t imc_info_param;
  4207. struct afe_port_media_type_t media_type;
  4208. struct afe_matched_port_t matched_port_param;
  4209. struct asm_aptx_ad_speech_mode_cfg_t speech_codec_init_param;
  4210. struct param_hdr_v3 param_hdr;
  4211. int ret;
  4212. u32 dec_fmt;
  4213. memset(&dec_depkt_id_param, 0, sizeof(dec_depkt_id_param));
  4214. memset(&dec_media_fmt, 0, sizeof(dec_media_fmt));
  4215. memset(&imc_info_param, 0, sizeof(imc_info_param));
  4216. memset(&media_type, 0, sizeof(media_type));
  4217. memset(&matched_port_param, 0, sizeof(matched_port_param));
  4218. memset(&speech_codec_init_param, 0, sizeof(speech_codec_init_param));
  4219. memset(&param_hdr, 0, sizeof(param_hdr));
  4220. param_hdr.module_id = AFE_MODULE_ID_DECODER;
  4221. param_hdr.instance_id = INSTANCE_ID_0;
  4222. pr_debug("%s: sending AFE_DECODER_PARAM_ID_DEPACKETIZER to DSP payload\n",
  4223. __func__);
  4224. param_hdr.param_id = AFE_DECODER_PARAM_ID_DEPACKETIZER_ID;
  4225. param_hdr.param_size = sizeof(struct avs_dec_depacketizer_id_param_t);
  4226. dec_depkt_id_param.dec_depacketizer_id =
  4227. AFE_MODULE_ID_DEPACKETIZER_COP_V1;
  4228. if (cfg->format == ENC_CODEC_TYPE_LDAC)
  4229. dec_depkt_id_param.dec_depacketizer_id =
  4230. AFE_MODULE_ID_DEPACKETIZER_COP;
  4231. ret = q6afe_pack_and_set_param_in_band(port_id,
  4232. q6audio_get_port_index(port_id),
  4233. param_hdr,
  4234. (u8 *) &dec_depkt_id_param);
  4235. if (ret) {
  4236. pr_err("%s: AFE_DECODER_PARAM_ID_DEPACKETIZER for port 0x%x failed %d\n",
  4237. __func__, port_id, ret);
  4238. goto exit;
  4239. }
  4240. switch (cfg->format) {
  4241. case ASM_MEDIA_FMT_SBC:
  4242. case ASM_MEDIA_FMT_AAC_V2:
  4243. case ASM_MEDIA_FMT_MP3:
  4244. if (port_id == SLIMBUS_9_TX) {
  4245. dec_buffer_id_param.max_nr_buffers = 200;
  4246. dec_buffer_id_param.pre_buffer_size = 200;
  4247. } else {
  4248. dec_buffer_id_param.max_nr_buffers = 0;
  4249. dec_buffer_id_param.pre_buffer_size = 0;
  4250. }
  4251. pr_debug("%s: sending AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE to DSP payload\n",
  4252. __func__);
  4253. param_hdr.param_id =
  4254. AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE;
  4255. param_hdr.param_size =
  4256. sizeof(struct avs_dec_congestion_buffer_param_t);
  4257. dec_buffer_id_param.version = 0;
  4258. ret = q6afe_pack_and_set_param_in_band(port_id,
  4259. q6audio_get_port_index(port_id),
  4260. param_hdr,
  4261. (u8 *) &dec_buffer_id_param);
  4262. if (ret) {
  4263. pr_err("%s: AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE for port 0x%x failed %d\n",
  4264. __func__, port_id, ret);
  4265. goto exit;
  4266. }
  4267. break;
  4268. case ASM_MEDIA_FMT_APTX_ADAPTIVE:
  4269. if (!cfg->abr_dec_cfg.is_abr_enabled) {
  4270. pr_debug("%s: sending aptx adaptive congestion buffer size to dsp\n",
  4271. __func__);
  4272. param_hdr.param_id =
  4273. AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE;
  4274. param_hdr.param_size =
  4275. sizeof(struct avs_dec_congestion_buffer_param_t);
  4276. dec_buffer_id_param.version = 0;
  4277. dec_buffer_id_param.max_nr_buffers = 226;
  4278. dec_buffer_id_param.pre_buffer_size = 226;
  4279. ret = q6afe_pack_and_set_param_in_band(port_id,
  4280. q6audio_get_port_index(port_id),
  4281. param_hdr,
  4282. (u8 *) &dec_buffer_id_param);
  4283. if (ret) {
  4284. pr_err("%s: aptx adaptive congestion buffer size for port 0x%x failed %d\n",
  4285. __func__, port_id, ret);
  4286. goto exit;
  4287. }
  4288. break;
  4289. }
  4290. /* fall through for abr enabled case */
  4291. default:
  4292. pr_debug("%s:sending AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION to DSP payload\n",
  4293. __func__);
  4294. param_hdr.param_id =
  4295. AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION;
  4296. param_hdr.param_size =
  4297. sizeof(struct afe_enc_dec_imc_info_param_t);
  4298. imc_info_param.imc_info = cfg->abr_dec_cfg.imc_info;
  4299. ret = q6afe_pack_and_set_param_in_band(port_id,
  4300. q6audio_get_port_index(port_id),
  4301. param_hdr,
  4302. (u8 *) &imc_info_param);
  4303. if (ret) {
  4304. pr_err("%s: AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION for port 0x%x failed %d\n",
  4305. __func__, port_id, ret);
  4306. goto exit;
  4307. }
  4308. break;
  4309. }
  4310. pr_debug("%s: Send AFE_API_VERSION_PORT_MEDIA_TYPE to DSP\n", __func__);
  4311. param_hdr.module_id = AFE_MODULE_PORT;
  4312. param_hdr.param_id = AFE_PARAM_ID_PORT_MEDIA_TYPE;
  4313. param_hdr.param_size = sizeof(struct afe_port_media_type_t);
  4314. media_type.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  4315. switch (cfg->format) {
  4316. case ASM_MEDIA_FMT_AAC_V2:
  4317. media_type.sample_rate =
  4318. cfg->data.aac_config.sample_rate;
  4319. break;
  4320. case ASM_MEDIA_FMT_SBC:
  4321. media_type.sample_rate =
  4322. cfg->data.sbc_config.sample_rate;
  4323. break;
  4324. case ASM_MEDIA_FMT_APTX_ADAPTIVE:
  4325. if (!cfg->abr_dec_cfg.is_abr_enabled) {
  4326. media_type.sample_rate =
  4327. (cfg->data.aptx_ad_config.sample_rate == APTX_AD_44_1) ?
  4328. AFE_PORT_SAMPLE_RATE_44_1K :
  4329. AFE_PORT_SAMPLE_RATE_48K;
  4330. break;
  4331. }
  4332. /* fall through for abr enabled case */
  4333. case ASM_MEDIA_FMT_APTX_AD_SPEECH:
  4334. media_type.sample_rate = AFE_PORT_SAMPLE_RATE_32K;
  4335. break;
  4336. default:
  4337. media_type.sample_rate =
  4338. afe_config.slim_sch.sample_rate;
  4339. }
  4340. if (afe_in_bit_width)
  4341. media_type.bit_width = afe_in_bit_width;
  4342. else
  4343. media_type.bit_width = afe_config.slim_sch.bit_width;
  4344. if (afe_in_channels)
  4345. media_type.num_channels = afe_in_channels;
  4346. else
  4347. media_type.num_channels = afe_config.slim_sch.num_channels;
  4348. media_type.data_format = AFE_PORT_DATA_FORMAT_PCM;
  4349. media_type.reserved = 0;
  4350. ret = q6afe_pack_and_set_param_in_band(port_id,
  4351. q6audio_get_port_index(port_id),
  4352. param_hdr, (u8 *) &media_type);
  4353. if (ret) {
  4354. pr_err("%s: AFE_API_VERSION_PORT_MEDIA_TYPE for port 0x%x failed %d\n",
  4355. __func__, port_id, ret);
  4356. goto exit;
  4357. }
  4358. if (format != ASM_MEDIA_FMT_SBC && format != ASM_MEDIA_FMT_AAC_V2 &&
  4359. format != ASM_MEDIA_FMT_APTX_ADAPTIVE &&
  4360. format != ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4361. pr_debug("%s:Unsuppported dec format. Ignore AFE config %u\n",
  4362. __func__, format);
  4363. goto exit;
  4364. }
  4365. if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE &&
  4366. cfg->abr_dec_cfg.is_abr_enabled) {
  4367. pr_debug("%s: Ignore AFE config for abr case\n", __func__);
  4368. goto exit;
  4369. }
  4370. if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4371. pr_debug("%s: sending AFE_PARAM_ID_RATE_MATCHED_PORT to DSP payload\n",
  4372. __func__);
  4373. param_hdr.param_id = AFE_PARAM_ID_RATE_MATCHED_PORT;
  4374. param_hdr.param_size =
  4375. sizeof(struct afe_matched_port_t);
  4376. matched_port_param.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  4377. matched_port_param.enable = AFE_MATCHED_PORT_ENABLE;
  4378. ret = q6afe_pack_and_set_param_in_band(port_id,
  4379. q6audio_get_port_index(port_id),
  4380. param_hdr,
  4381. (u8 *) &matched_port_param);
  4382. if (ret) {
  4383. pr_err("%s: AFE_PARAM_ID_RATE_MATCHED_PORT for port 0x%x failed %d\n",
  4384. __func__, port_id, ret);
  4385. goto exit;
  4386. }
  4387. }
  4388. pr_debug("%s: sending AFE_DECODER_PARAM_ID_DEC_MEDIA_FMT to DSP payload\n",
  4389. __func__);
  4390. param_hdr.module_id = AFE_MODULE_ID_DECODER;
  4391. param_hdr.instance_id = INSTANCE_ID_0;
  4392. param_hdr.param_id = AFE_DECODER_PARAM_ID_DEC_FMT_ID;
  4393. param_hdr.param_size = sizeof(dec_fmt);
  4394. dec_fmt = format;
  4395. ret = q6afe_pack_and_set_param_in_band(port_id,
  4396. q6audio_get_port_index(port_id),
  4397. param_hdr, (u8 *) &dec_fmt);
  4398. if (ret) {
  4399. pr_err("%s: AFE_DECODER_PARAM_ID_DEC_MEDIA_FMT for port 0x%x failed %d\n",
  4400. __func__, port_id, ret);
  4401. goto exit;
  4402. }
  4403. switch (cfg->format) {
  4404. case ASM_MEDIA_FMT_AAC_V2:
  4405. case ASM_MEDIA_FMT_APTX_ADAPTIVE:
  4406. param_hdr.param_size = sizeof(struct afe_dec_media_fmt_t);
  4407. pr_debug("%s:send AVS_DECODER_PARAM_ID DEC_MEDIA_FMT to DSP payload\n",
  4408. __func__);
  4409. param_hdr.param_id = AVS_DECODER_PARAM_ID_DEC_MEDIA_FMT;
  4410. dec_media_fmt.dec_media_config = cfg->data;
  4411. ret = q6afe_pack_and_set_param_in_band(port_id,
  4412. q6audio_get_port_index(port_id),
  4413. param_hdr,
  4414. (u8 *) &dec_media_fmt);
  4415. if (ret) {
  4416. pr_err("%s: AVS_DECODER_PARAM_ID DEC_MEDIA_FMT for port 0x%x failed %d\n",
  4417. __func__, port_id, ret);
  4418. goto exit;
  4419. }
  4420. break;
  4421. case ASM_MEDIA_FMT_APTX_AD_SPEECH:
  4422. param_hdr.param_size =
  4423. sizeof(struct asm_aptx_ad_speech_dec_cfg_t);
  4424. pr_debug("%s: send AVS_DECODER_PARAM_ID_APTX_AD_SPEECH_DEC_INIT to DSP payload\n",
  4425. __func__);
  4426. param_hdr.param_id =
  4427. AVS_DECODER_PARAM_ID_APTX_AD_SPEECH_DEC_INIT;
  4428. speech_codec_init_param =
  4429. cfg->data.aptx_ad_speech_config.speech_mode;
  4430. ret = q6afe_pack_and_set_param_in_band(port_id,
  4431. q6audio_get_port_index(port_id),
  4432. param_hdr,
  4433. (u8 *) &speech_codec_init_param);
  4434. if (ret) {
  4435. pr_err("%s: AVS_DECODER_PARAM_ID_APTX_ADAPTIVE_SPEECH_DEC_INIT for port 0x%x failed %d\n",
  4436. __func__, port_id, ret);
  4437. goto exit;
  4438. }
  4439. break;
  4440. default:
  4441. pr_debug("%s:No need to send DEC_MEDIA_FMT to DSP payload\n",
  4442. __func__);
  4443. }
  4444. exit:
  4445. return ret;
  4446. }
  4447. static int q6afe_send_enc_config(u16 port_id,
  4448. union afe_enc_config_data *cfg, u32 format,
  4449. union afe_port_config afe_config,
  4450. u16 afe_in_channels, u16 afe_in_bit_width,
  4451. u32 scrambler_mode, u32 mono_mode)
  4452. {
  4453. u32 enc_fmt;
  4454. struct afe_enc_cfg_blk_param_t enc_blk_param;
  4455. struct afe_param_id_aptx_sync_mode sync_mode_param;
  4456. struct afe_id_aptx_adaptive_enc_init aptx_adaptive_enc_init;
  4457. struct avs_enc_packetizer_id_param_t enc_pkt_id_param;
  4458. struct avs_enc_set_scrambler_param_t enc_set_scrambler_param;
  4459. struct afe_enc_level_to_bitrate_map_param_t map_param;
  4460. struct afe_enc_dec_imc_info_param_t imc_info_param;
  4461. struct asm_aac_frame_size_control_t frame_ctl_param;
  4462. struct afe_port_media_type_t media_type;
  4463. struct aptx_channel_mode_param_t channel_mode_param;
  4464. struct afe_matched_port_t matched_port_param;
  4465. struct asm_aptx_ad_speech_mode_cfg_t speech_codec_init_param;
  4466. struct param_hdr_v3 param_hdr;
  4467. int ret;
  4468. uint32_t frame_size_ctl_value_v2;
  4469. pr_debug("%s:update DSP for enc format = %d\n", __func__, format);
  4470. memset(&enc_blk_param, 0, sizeof(enc_blk_param));
  4471. memset(&sync_mode_param, 0, sizeof(sync_mode_param));
  4472. memset(&aptx_adaptive_enc_init, 0, sizeof(aptx_adaptive_enc_init));
  4473. memset(&enc_pkt_id_param, 0, sizeof(enc_pkt_id_param));
  4474. memset(&enc_set_scrambler_param, 0, sizeof(enc_set_scrambler_param));
  4475. memset(&map_param, 0, sizeof(map_param));
  4476. memset(&imc_info_param, 0, sizeof(imc_info_param));
  4477. memset(&frame_ctl_param, 0, sizeof(frame_ctl_param));
  4478. memset(&media_type, 0, sizeof(media_type));
  4479. memset(&matched_port_param, 0, sizeof(matched_port_param));
  4480. memset(&speech_codec_init_param, 0, sizeof(speech_codec_init_param));
  4481. memset(&param_hdr, 0, sizeof(param_hdr));
  4482. if (format != ASM_MEDIA_FMT_SBC && format != ASM_MEDIA_FMT_AAC_V2 &&
  4483. format != ASM_MEDIA_FMT_APTX && format != ASM_MEDIA_FMT_APTX_HD &&
  4484. format != ASM_MEDIA_FMT_CELT && format != ASM_MEDIA_FMT_LDAC &&
  4485. format != ASM_MEDIA_FMT_APTX_ADAPTIVE &&
  4486. format != ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4487. pr_err("%s:Unsuppported enc format. Ignore AFE config\n",
  4488. __func__);
  4489. return 0;
  4490. }
  4491. param_hdr.module_id = AFE_MODULE_ID_ENCODER;
  4492. param_hdr.instance_id = INSTANCE_ID_0;
  4493. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENC_FMT_ID;
  4494. param_hdr.param_size = sizeof(enc_fmt);
  4495. enc_fmt = format;
  4496. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_ENC_FMT_ID payload\n",
  4497. __func__);
  4498. ret = q6afe_pack_and_set_param_in_band(port_id,
  4499. q6audio_get_port_index(port_id),
  4500. param_hdr, (u8 *) &enc_fmt);
  4501. if (ret) {
  4502. pr_err("%s:unable to send AFE_ENCODER_PARAM_ID_ENC_FMT_ID",
  4503. __func__);
  4504. goto exit;
  4505. }
  4506. if (format == ASM_MEDIA_FMT_LDAC) {
  4507. param_hdr.param_size = sizeof(struct afe_enc_cfg_blk_param_t)
  4508. - sizeof(struct afe_abr_enc_cfg_t);
  4509. enc_blk_param.enc_cfg_blk_size =
  4510. sizeof(union afe_enc_config_data)
  4511. - sizeof(struct afe_abr_enc_cfg_t);
  4512. } else if (format == ASM_MEDIA_FMT_AAC_V2) {
  4513. param_hdr.param_size = sizeof(enc_blk_param)
  4514. - sizeof(struct asm_aac_frame_size_control_t);
  4515. enc_blk_param.enc_cfg_blk_size =
  4516. sizeof(enc_blk_param.enc_blk_config)
  4517. - sizeof(struct asm_aac_frame_size_control_t);
  4518. } else if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4519. param_hdr.param_size = sizeof(struct afe_enc_aptx_ad_speech_cfg_blk_param_t);
  4520. enc_blk_param.enc_cfg_blk_size = sizeof(struct asm_custom_enc_cfg_t);
  4521. } else {
  4522. param_hdr.param_size = sizeof(struct afe_enc_cfg_blk_param_t);
  4523. enc_blk_param.enc_cfg_blk_size =
  4524. sizeof(union afe_enc_config_data);
  4525. }
  4526. pr_debug("%s:send AFE_ENCODER_PARAM_ID_ENC_CFG_BLK to DSP payload\n",
  4527. __func__);
  4528. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENC_CFG_BLK;
  4529. enc_blk_param.enc_blk_config = *cfg;
  4530. ret = q6afe_pack_and_set_param_in_band(port_id,
  4531. q6audio_get_port_index(port_id),
  4532. param_hdr,
  4533. (u8 *) &enc_blk_param);
  4534. if (ret) {
  4535. pr_err("%s: AFE_ENCODER_PARAM_ID_ENC_CFG_BLK for port 0x%x failed %d\n",
  4536. __func__, port_id, ret);
  4537. goto exit;
  4538. }
  4539. if (format == ASM_MEDIA_FMT_AAC_V2) {
  4540. uint32_t frame_size_ctl_value = enc_blk_param.enc_blk_config.
  4541. aac_config.frame_ctl.ctl_value;
  4542. if (frame_size_ctl_value > 0) {
  4543. param_hdr.param_id =
  4544. AFE_PARAM_ID_AAC_FRM_SIZE_CONTROL;
  4545. param_hdr.param_size = sizeof(frame_ctl_param);
  4546. frame_ctl_param.ctl_type = enc_blk_param.
  4547. enc_blk_config.aac_config.frame_ctl.ctl_type;
  4548. frame_ctl_param.ctl_value = frame_size_ctl_value;
  4549. pr_debug("%s: send AFE_PARAM_ID_AAC_FRM_SIZE_CONTROL\n",
  4550. __func__);
  4551. ret = q6afe_pack_and_set_param_in_band(port_id,
  4552. q6audio_get_port_index(port_id),
  4553. param_hdr,
  4554. (u8 *) &frame_ctl_param);
  4555. if (ret) {
  4556. pr_err("%s: AAC_FRM_SIZE_CONTROL failed %d\n",
  4557. __func__, ret);
  4558. goto exit;
  4559. }
  4560. }
  4561. frame_size_ctl_value_v2 = enc_blk_param.enc_blk_config.
  4562. aac_config.frame_ctl_v2.ctl_value;
  4563. if (frame_size_ctl_value_v2 > 0) {
  4564. param_hdr.param_id =
  4565. AFE_PARAM_ID_AAC_FRM_SIZE_CONTROL;
  4566. param_hdr.param_size = sizeof(frame_ctl_param);
  4567. frame_ctl_param.ctl_type = enc_blk_param.
  4568. enc_blk_config.aac_config.frame_ctl_v2.ctl_type;
  4569. frame_ctl_param.ctl_value = enc_blk_param.
  4570. enc_blk_config.aac_config.frame_ctl_v2.ctl_value;
  4571. pr_debug("%s: send AFE_PARAM_ID_AAC_FRM_SIZE_CONTROL V2\n",
  4572. __func__);
  4573. ret = q6afe_pack_and_set_param_in_band(port_id,
  4574. q6audio_get_port_index(port_id),
  4575. param_hdr,
  4576. (u8 *) &frame_ctl_param);
  4577. if (ret) {
  4578. pr_err("%s: AAC_FRM_SIZE_CONTROL with VBR support failed %d\n",
  4579. __func__, ret);
  4580. goto exit;
  4581. }
  4582. }
  4583. }
  4584. if (format == ASM_MEDIA_FMT_APTX) {
  4585. pr_debug("%s: sending AFE_PARAM_ID_APTX_SYNC_MODE to DSP",
  4586. __func__);
  4587. param_hdr.param_id = AFE_PARAM_ID_APTX_SYNC_MODE;
  4588. param_hdr.param_size =
  4589. sizeof(struct afe_param_id_aptx_sync_mode);
  4590. sync_mode_param.sync_mode =
  4591. enc_blk_param.enc_blk_config.aptx_config.
  4592. aptx_v2_cfg.sync_mode;
  4593. ret = q6afe_pack_and_set_param_in_band(port_id,
  4594. q6audio_get_port_index(port_id),
  4595. param_hdr,
  4596. (u8 *) &sync_mode_param);
  4597. if (ret) {
  4598. pr_err("%s: AFE_PARAM_ID_APTX_SYNC_MODE for port 0x%x failed %d\n",
  4599. __func__, port_id, ret);
  4600. goto exit;
  4601. }
  4602. }
  4603. if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE) {
  4604. pr_debug("%s: sending AFE_ID_APTX_ADAPTIVE_ENC_INIT to DSP\n",
  4605. __func__);
  4606. param_hdr.param_id = AFE_ID_APTX_ADAPTIVE_ENC_INIT;
  4607. param_hdr.param_size =
  4608. sizeof(struct afe_id_aptx_adaptive_enc_init);
  4609. aptx_adaptive_enc_init =
  4610. enc_blk_param.enc_blk_config.aptx_ad_config.
  4611. aptx_ad_cfg;
  4612. ret = q6afe_pack_and_set_param_in_band(port_id,
  4613. q6audio_get_port_index(port_id),
  4614. param_hdr,
  4615. (u8 *) &aptx_adaptive_enc_init);
  4616. if (ret) {
  4617. pr_err("%s: AFE_ID_APTX_ADAPTIVE_ENC_INIT for port 0x%x failed %d\n",
  4618. __func__, port_id, ret);
  4619. goto exit;
  4620. }
  4621. }
  4622. if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4623. pr_debug("%s: sending AVS_DECODER_PARAM_ID_APTX_AD_SPEECH_ENC_INIT to DSP\n",
  4624. __func__);
  4625. param_hdr.param_id = AVS_DECODER_PARAM_ID_APTX_AD_SPEECH_ENC_INIT;
  4626. param_hdr.param_size =
  4627. sizeof(struct asm_aptx_ad_speech_dec_cfg_t);
  4628. speech_codec_init_param = cfg->aptx_ad_speech_config.speech_mode;
  4629. ret = q6afe_pack_and_set_param_in_band(port_id,
  4630. q6audio_get_port_index(port_id),
  4631. param_hdr,
  4632. (u8 *) &speech_codec_init_param);
  4633. if (ret) {
  4634. pr_err("%s: AFE_ID_APTX_ADAPTIVE_ENC_INIT for port 0x%x failed %d\n",
  4635. __func__, port_id, ret);
  4636. goto exit;
  4637. }
  4638. }
  4639. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_PACKETIZER to DSP\n",
  4640. __func__);
  4641. param_hdr.param_id = AFE_ENCODER_PARAM_ID_PACKETIZER_ID;
  4642. param_hdr.param_size = sizeof(struct avs_enc_packetizer_id_param_t);
  4643. enc_pkt_id_param.enc_packetizer_id = AFE_MODULE_ID_PACKETIZER_COP;
  4644. ret = q6afe_pack_and_set_param_in_band(port_id,
  4645. q6audio_get_port_index(port_id),
  4646. param_hdr,
  4647. (u8 *) &enc_pkt_id_param);
  4648. if (ret) {
  4649. pr_err("%s: AFE_ENCODER_PARAM_ID_PACKETIZER for port 0x%x failed %d\n",
  4650. __func__, port_id, ret);
  4651. goto exit;
  4652. }
  4653. if (format != ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4654. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING mode= %d to DSP payload\n",
  4655. __func__, scrambler_mode);
  4656. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING;
  4657. param_hdr.param_size = sizeof(struct avs_enc_set_scrambler_param_t);
  4658. enc_set_scrambler_param.enable_scrambler = scrambler_mode;
  4659. ret = q6afe_pack_and_set_param_in_band(port_id,
  4660. q6audio_get_port_index(port_id),
  4661. param_hdr,
  4662. (u8 *) &enc_set_scrambler_param);
  4663. if (ret) {
  4664. pr_err("%s: AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING for port 0x%x failed %d\n",
  4665. __func__, port_id, ret);
  4666. goto exit;
  4667. }
  4668. }
  4669. if (format == ASM_MEDIA_FMT_APTX) {
  4670. pr_debug("%s:sending CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO mode= %d to DSP payload\n",
  4671. __func__, mono_mode);
  4672. param_hdr.param_id = CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO;
  4673. param_hdr.param_size = sizeof(channel_mode_param);
  4674. channel_mode_param.channel_mode = mono_mode;
  4675. ret = q6afe_pack_and_set_param_in_band(port_id,
  4676. q6audio_get_port_index(port_id),
  4677. param_hdr,
  4678. (u8 *) &channel_mode_param);
  4679. if (ret) {
  4680. pr_err("%s: CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO for port 0x%x failed %d\n",
  4681. __func__, port_id, ret);
  4682. }
  4683. }
  4684. if ((format == ASM_MEDIA_FMT_LDAC &&
  4685. cfg->ldac_config.abr_config.is_abr_enabled) ||
  4686. format == ASM_MEDIA_FMT_APTX_ADAPTIVE ||
  4687. format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4688. if (format != ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4689. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP to DSP payload",
  4690. __func__);
  4691. param_hdr.param_id = AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP;
  4692. param_hdr.param_size =
  4693. sizeof(struct afe_enc_level_to_bitrate_map_param_t);
  4694. map_param.mapping_table =
  4695. cfg->ldac_config.abr_config.mapping_info;
  4696. ret = q6afe_pack_and_set_param_in_band(port_id,
  4697. q6audio_get_port_index(port_id),
  4698. param_hdr,
  4699. (u8 *) &map_param);
  4700. if (ret) {
  4701. pr_err("%s: AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP for port 0x%x failed %d\n",
  4702. __func__, port_id, ret);
  4703. goto exit;
  4704. }
  4705. }
  4706. pr_debug("%s: sending AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION to DSP payload",
  4707. __func__);
  4708. param_hdr.param_id =
  4709. AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION;
  4710. param_hdr.param_size =
  4711. sizeof(struct afe_enc_dec_imc_info_param_t);
  4712. if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE)
  4713. imc_info_param.imc_info =
  4714. cfg->aptx_ad_config.abr_cfg.imc_info;
  4715. else if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH)
  4716. imc_info_param.imc_info =
  4717. cfg->aptx_ad_speech_config.imc_info;
  4718. else
  4719. imc_info_param.imc_info =
  4720. cfg->ldac_config.abr_config.imc_info;
  4721. ret = q6afe_pack_and_set_param_in_band(port_id,
  4722. q6audio_get_port_index(port_id),
  4723. param_hdr,
  4724. (u8 *) &imc_info_param);
  4725. if (ret) {
  4726. pr_err("%s: AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION for port 0x%x failed %d\n",
  4727. __func__, port_id, ret);
  4728. goto exit;
  4729. }
  4730. }
  4731. pr_debug("%s:Sending AFE_API_VERSION_PORT_MEDIA_TYPE to DSP", __func__);
  4732. param_hdr.module_id = AFE_MODULE_PORT;
  4733. param_hdr.param_id = AFE_PARAM_ID_PORT_MEDIA_TYPE;
  4734. param_hdr.param_size = sizeof(struct afe_port_media_type_t);
  4735. media_type.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  4736. if (format == ASM_MEDIA_FMT_LDAC)
  4737. media_type.sample_rate =
  4738. cfg->ldac_config.custom_config.sample_rate;
  4739. else if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE)
  4740. media_type.sample_rate =
  4741. cfg->aptx_ad_config.custom_cfg.sample_rate;
  4742. else if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH)
  4743. media_type.sample_rate =
  4744. cfg->aptx_ad_speech_config.custom_cfg.sample_rate;
  4745. else
  4746. media_type.sample_rate =
  4747. afe_config.slim_sch.sample_rate;
  4748. if (afe_in_bit_width)
  4749. media_type.bit_width = afe_in_bit_width;
  4750. else
  4751. media_type.bit_width = afe_config.slim_sch.bit_width;
  4752. if (afe_in_channels)
  4753. media_type.num_channels = afe_in_channels;
  4754. else
  4755. media_type.num_channels = afe_config.slim_sch.num_channels;
  4756. media_type.data_format = AFE_PORT_DATA_FORMAT_PCM;
  4757. media_type.reserved = 0;
  4758. ret = q6afe_pack_and_set_param_in_band(port_id,
  4759. q6audio_get_port_index(port_id),
  4760. param_hdr, (u8 *) &media_type);
  4761. if (ret) {
  4762. pr_err("%s: AFE_API_VERSION_PORT_MEDIA_TYPE for port 0x%x failed %d\n",
  4763. __func__, port_id, ret);
  4764. goto exit;
  4765. }
  4766. if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4767. pr_debug("%s: sending AFE_PARAM_ID_RATE_MATCHED_PORT to DSP payload",
  4768. __func__);
  4769. param_hdr.param_id = AFE_PARAM_ID_RATE_MATCHED_PORT;
  4770. param_hdr.param_size =
  4771. sizeof(struct afe_matched_port_t);
  4772. matched_port_param.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  4773. matched_port_param.enable = AFE_MATCHED_PORT_ENABLE;
  4774. ret = q6afe_pack_and_set_param_in_band(port_id,
  4775. q6audio_get_port_index(port_id),
  4776. param_hdr,
  4777. (u8 *) &matched_port_param);
  4778. if (ret) {
  4779. pr_err("%s: AFE_PARAM_ID_RATE_MATCHED_PORT for port 0x%x failed %d\n",
  4780. __func__, port_id, ret);
  4781. goto exit;
  4782. }
  4783. }
  4784. exit:
  4785. return ret;
  4786. }
  4787. int afe_set_tws_channel_mode(u32 format, u16 port_id, u32 channel_mode)
  4788. {
  4789. struct aptx_channel_mode_param_t channel_mode_param;
  4790. struct param_hdr_v3 param_info;
  4791. int ret = 0;
  4792. u32 param_id = 0;
  4793. if (format == ASM_MEDIA_FMT_APTX) {
  4794. param_id = CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO;
  4795. } else if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE) {
  4796. param_id = CAPI_V2_PARAM_ID_APTX_AD_ENC_SWITCH_TO_MONO;
  4797. } else {
  4798. pr_err("%s: Not supported format 0x%x\n", __func__, format);
  4799. return -EINVAL;
  4800. }
  4801. memset(&param_info, 0, sizeof(param_info));
  4802. memset(&channel_mode_param, 0, sizeof(channel_mode_param));
  4803. param_info.module_id = AFE_MODULE_ID_ENCODER;
  4804. param_info.instance_id = INSTANCE_ID_0;
  4805. param_info.param_id = param_id;
  4806. param_info.param_size = sizeof(channel_mode_param);
  4807. channel_mode_param.channel_mode = channel_mode;
  4808. ret = q6afe_pack_and_set_param_in_band(port_id,
  4809. q6audio_get_port_index(port_id),
  4810. param_info,
  4811. (u8 *) &channel_mode_param);
  4812. if (ret)
  4813. pr_err("%s: AFE set channel mode cfg for port 0x%x failed %d\n",
  4814. __func__, port_id, ret);
  4815. return ret;
  4816. }
  4817. EXPORT_SYMBOL(afe_set_tws_channel_mode);
  4818. static int __afe_port_start(u16 port_id, union afe_port_config *afe_config,
  4819. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  4820. union afe_enc_config_data *enc_cfg,
  4821. u32 codec_format, u32 scrambler_mode, u32 mono_mode,
  4822. struct afe_dec_config *dec_cfg,
  4823. struct afe_ttp_config *ttp_cfg)
  4824. {
  4825. union afe_port_config port_cfg;
  4826. struct param_hdr_v3 param_hdr;
  4827. int ret = 0;
  4828. int cfg_type;
  4829. int index = 0;
  4830. enum afe_mad_type mad_type;
  4831. uint16_t port_index;
  4832. memset(&param_hdr, 0, sizeof(param_hdr));
  4833. memset(&port_cfg, 0, sizeof(port_cfg));
  4834. if (!afe_config) {
  4835. pr_err("%s: Error, no configuration data\n", __func__);
  4836. ret = -EINVAL;
  4837. return ret;
  4838. }
  4839. if (port_id == RT_PROXY_PORT_002_RX) {
  4840. if (proxy_afe_started) {
  4841. pr_debug("%s: afe port already started, port id 0x%x\n",
  4842. __func__, RT_PROXY_PORT_002_RX);
  4843. return 0;
  4844. } else {
  4845. proxy_afe_started = true;
  4846. }
  4847. }
  4848. if (port_id == RT_PROXY_DAI_003_TX) {
  4849. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4850. if (proxy_afe_started) {
  4851. pr_debug("%s: reconfigure afe port again\n", __func__);
  4852. afe_close(port_id);
  4853. }
  4854. proxy_afe_started = true;
  4855. }
  4856. if ((port_id == RT_PROXY_DAI_001_RX) ||
  4857. (port_id == RT_PROXY_DAI_002_TX)) {
  4858. pr_debug("%s: before incrementing pcm_afe_instance %d port_id 0x%x\n",
  4859. __func__,
  4860. pcm_afe_instance[port_id & 0x1], port_id);
  4861. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4862. pcm_afe_instance[port_id & 0x1]++;
  4863. return 0;
  4864. }
  4865. if ((port_id == RT_PROXY_DAI_002_RX) ||
  4866. (port_id == RT_PROXY_DAI_001_TX)) {
  4867. pr_debug("%s: before incrementing proxy_afe_instance %d port_id 0x%x\n",
  4868. __func__,
  4869. proxy_afe_instance[port_id & 0x1], port_id);
  4870. if (!afe_close_done[port_id & 0x1]) {
  4871. /*close pcm dai corresponding to the proxy dai*/
  4872. afe_close(port_id - 0x10);
  4873. pcm_afe_instance[port_id & 0x1]++;
  4874. pr_debug("%s: reconfigure afe port again\n", __func__);
  4875. }
  4876. proxy_afe_instance[port_id & 0x1]++;
  4877. afe_close_done[port_id & 0x1] = false;
  4878. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4879. }
  4880. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  4881. index = q6audio_get_port_index(port_id);
  4882. if (index < 0 || index >= AFE_MAX_PORTS) {
  4883. pr_err("%s: AFE port index[%d] invalid!\n",
  4884. __func__, index);
  4885. return -EINVAL;
  4886. }
  4887. ret = q6audio_validate_port(port_id);
  4888. if (ret < 0) {
  4889. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  4890. return -EINVAL;
  4891. }
  4892. ret = afe_q6_interface_prepare();
  4893. if (ret != 0) {
  4894. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  4895. return ret;
  4896. }
  4897. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  4898. this_afe.afe_sample_rates[index] = rate;
  4899. if (this_afe.rt_cb)
  4900. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  4901. }
  4902. mutex_lock(&this_afe.afe_cmd_lock);
  4903. port_index = afe_get_port_index(port_id);
  4904. /* Also send the topology id here: */
  4905. if (!(this_afe.afe_cal_mode[port_index] == AFE_CAL_MODE_NONE)) {
  4906. /* One time call: only for first time */
  4907. afe_send_custom_topology();
  4908. afe_send_port_topology_id(port_id);
  4909. afe_send_cal(port_id);
  4910. afe_send_hw_delay(port_id, rate);
  4911. }
  4912. /* Start SW MAD module */
  4913. mad_type = afe_port_get_mad_type(port_id);
  4914. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  4915. mad_type);
  4916. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  4917. if (!afe_has_config(AFE_CDC_REGISTERS_CONFIG) ||
  4918. !afe_has_config(AFE_SLIMBUS_SLAVE_CONFIG)) {
  4919. pr_err("%s: AFE isn't configured yet for\n"
  4920. "HW MAD try Again\n", __func__);
  4921. ret = -EAGAIN;
  4922. goto fail_cmd;
  4923. }
  4924. ret = afe_turn_onoff_hw_mad(mad_type, true);
  4925. if (ret) {
  4926. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  4927. __func__, ret);
  4928. goto fail_cmd;
  4929. }
  4930. }
  4931. if ((this_afe.aanc_info.aanc_active) &&
  4932. (this_afe.aanc_info.aanc_tx_port == port_id)) {
  4933. this_afe.aanc_info.aanc_tx_port_sample_rate = rate;
  4934. port_index =
  4935. afe_get_port_index(this_afe.aanc_info.aanc_rx_port);
  4936. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  4937. this_afe.aanc_info.aanc_rx_port_sample_rate =
  4938. this_afe.afe_sample_rates[port_index];
  4939. } else {
  4940. pr_err("%s: Invalid port index %d\n",
  4941. __func__, port_index);
  4942. ret = -EINVAL;
  4943. goto fail_cmd;
  4944. }
  4945. ret = afe_aanc_start(this_afe.aanc_info.aanc_tx_port,
  4946. this_afe.aanc_info.aanc_rx_port);
  4947. pr_debug("%s: afe_aanc_start ret %d\n", __func__, ret);
  4948. }
  4949. if ((port_id == AFE_PORT_ID_USB_RX) ||
  4950. (port_id == AFE_PORT_ID_USB_TX)) {
  4951. ret = afe_port_send_usb_dev_param(port_id, afe_config);
  4952. if (ret) {
  4953. pr_err("%s: AFE device param for port 0x%x failed %d\n",
  4954. __func__, port_id, ret);
  4955. ret = -EINVAL;
  4956. goto fail_cmd;
  4957. }
  4958. }
  4959. switch (port_id) {
  4960. case AFE_PORT_ID_PRIMARY_PCM_RX:
  4961. case AFE_PORT_ID_PRIMARY_PCM_TX:
  4962. case AFE_PORT_ID_SECONDARY_PCM_RX:
  4963. case AFE_PORT_ID_SECONDARY_PCM_TX:
  4964. case AFE_PORT_ID_TERTIARY_PCM_RX:
  4965. case AFE_PORT_ID_TERTIARY_PCM_TX:
  4966. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  4967. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  4968. case AFE_PORT_ID_QUINARY_PCM_RX:
  4969. case AFE_PORT_ID_QUINARY_PCM_TX:
  4970. case AFE_PORT_ID_SENARY_PCM_RX:
  4971. case AFE_PORT_ID_SENARY_PCM_TX:
  4972. cfg_type = AFE_PARAM_ID_PCM_CONFIG;
  4973. break;
  4974. case PRIMARY_I2S_RX:
  4975. case PRIMARY_I2S_TX:
  4976. case SECONDARY_I2S_RX:
  4977. case SECONDARY_I2S_TX:
  4978. case MI2S_RX:
  4979. case MI2S_TX:
  4980. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  4981. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  4982. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  4983. case AFE_PORT_ID_SECONDARY_MI2S_RX_SD1:
  4984. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  4985. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  4986. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  4987. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  4988. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  4989. case AFE_PORT_ID_QUINARY_MI2S_RX:
  4990. case AFE_PORT_ID_QUINARY_MI2S_TX:
  4991. case AFE_PORT_ID_SENARY_MI2S_RX:
  4992. case AFE_PORT_ID_SENARY_MI2S_TX:
  4993. case AFE_PORT_ID_INT0_MI2S_RX:
  4994. case AFE_PORT_ID_INT0_MI2S_TX:
  4995. case AFE_PORT_ID_INT1_MI2S_RX:
  4996. case AFE_PORT_ID_INT1_MI2S_TX:
  4997. case AFE_PORT_ID_INT2_MI2S_RX:
  4998. case AFE_PORT_ID_INT2_MI2S_TX:
  4999. case AFE_PORT_ID_INT3_MI2S_RX:
  5000. case AFE_PORT_ID_INT3_MI2S_TX:
  5001. case AFE_PORT_ID_INT4_MI2S_RX:
  5002. case AFE_PORT_ID_INT4_MI2S_TX:
  5003. case AFE_PORT_ID_INT5_MI2S_RX:
  5004. case AFE_PORT_ID_INT5_MI2S_TX:
  5005. case AFE_PORT_ID_INT6_MI2S_RX:
  5006. case AFE_PORT_ID_INT6_MI2S_TX:
  5007. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  5008. break;
  5009. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  5010. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  5011. cfg_type = AFE_PARAM_ID_META_I2S_CONFIG;
  5012. break;
  5013. case HDMI_RX:
  5014. case HDMI_RX_MS:
  5015. case DISPLAY_PORT_RX:
  5016. cfg_type = AFE_PARAM_ID_HDMI_CONFIG;
  5017. break;
  5018. case VOICE_PLAYBACK_TX:
  5019. case VOICE2_PLAYBACK_TX:
  5020. case VOICE_RECORD_RX:
  5021. case VOICE_RECORD_TX:
  5022. cfg_type = AFE_PARAM_ID_PSEUDO_PORT_CONFIG;
  5023. break;
  5024. case SLIMBUS_0_RX:
  5025. case SLIMBUS_0_TX:
  5026. case SLIMBUS_1_RX:
  5027. case SLIMBUS_1_TX:
  5028. case SLIMBUS_2_RX:
  5029. case SLIMBUS_2_TX:
  5030. case SLIMBUS_3_RX:
  5031. case SLIMBUS_3_TX:
  5032. case SLIMBUS_4_RX:
  5033. case SLIMBUS_4_TX:
  5034. case SLIMBUS_5_RX:
  5035. case SLIMBUS_5_TX:
  5036. case SLIMBUS_6_RX:
  5037. case SLIMBUS_6_TX:
  5038. case SLIMBUS_7_RX:
  5039. case SLIMBUS_7_TX:
  5040. case SLIMBUS_8_RX:
  5041. case SLIMBUS_8_TX:
  5042. case SLIMBUS_9_RX:
  5043. case SLIMBUS_9_TX:
  5044. cfg_type = AFE_PARAM_ID_SLIMBUS_CONFIG;
  5045. break;
  5046. case AFE_PORT_ID_USB_RX:
  5047. case AFE_PORT_ID_USB_TX:
  5048. cfg_type = AFE_PARAM_ID_USB_AUDIO_CONFIG;
  5049. break;
  5050. case RT_PROXY_PORT_001_RX:
  5051. case RT_PROXY_PORT_001_TX:
  5052. case RT_PROXY_PORT_002_RX:
  5053. case RT_PROXY_PORT_002_TX:
  5054. cfg_type = AFE_PARAM_ID_RT_PROXY_CONFIG;
  5055. break;
  5056. case INT_BT_SCO_RX:
  5057. case INT_BT_A2DP_RX:
  5058. case INT_BT_SCO_TX:
  5059. case INT_FM_RX:
  5060. case INT_FM_TX:
  5061. cfg_type = AFE_PARAM_ID_INTERNAL_BT_FM_CONFIG;
  5062. break;
  5063. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  5064. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  5065. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  5066. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  5067. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  5068. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  5069. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  5070. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  5071. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  5072. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  5073. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  5074. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  5075. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  5076. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  5077. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  5078. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  5079. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  5080. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  5081. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  5082. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  5083. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  5084. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  5085. cfg_type = AFE_PARAM_ID_CODEC_DMA_CONFIG;
  5086. break;
  5087. default:
  5088. pr_err("%s: Invalid port id 0x%x\n", __func__, port_id);
  5089. ret = -EINVAL;
  5090. goto fail_cmd;
  5091. }
  5092. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5093. param_hdr.instance_id = INSTANCE_ID_0;
  5094. param_hdr.param_id = cfg_type;
  5095. param_hdr.param_size = sizeof(union afe_port_config);
  5096. port_cfg = *afe_config;
  5097. if (((enc_cfg != NULL) || (dec_cfg != NULL)) &&
  5098. (codec_format != ASM_MEDIA_FMT_NONE) &&
  5099. (cfg_type == AFE_PARAM_ID_SLIMBUS_CONFIG)) {
  5100. port_cfg.slim_sch.data_format =
  5101. AFE_SB_DATA_FORMAT_GENERIC_COMPRESSED;
  5102. }
  5103. ret = q6afe_pack_and_set_param_in_band(port_id,
  5104. q6audio_get_port_index(port_id),
  5105. param_hdr, (u8 *) &port_cfg);
  5106. if (ret) {
  5107. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  5108. __func__, port_id, ret);
  5109. goto fail_cmd;
  5110. }
  5111. if ((codec_format != ASM_MEDIA_FMT_NONE) &&
  5112. (cfg_type == AFE_PARAM_ID_SLIMBUS_CONFIG)) {
  5113. if (enc_cfg != NULL) {
  5114. pr_debug("%s: Found AFE encoder support for SLIMBUS format = %d\n",
  5115. __func__, codec_format);
  5116. if ((q6core_get_avcs_api_version_per_service(
  5117. APRV2_IDS_SERVICE_ID_ADSP_CORE_V) >=
  5118. AVCS_API_VERSION_V5)) {
  5119. ret = q6afe_load_avcs_modules(2, port_id,
  5120. ENCODER_CASE, codec_format);
  5121. if (ret < 0) {
  5122. pr_err("%s:encoder load for port 0x%x failed %d\n",
  5123. __func__, port_id, ret);
  5124. goto fail_cmd;
  5125. }
  5126. }
  5127. ret = q6afe_send_enc_config(port_id, enc_cfg,
  5128. codec_format, *afe_config,
  5129. afe_in_channels,
  5130. afe_in_bit_width,
  5131. scrambler_mode, mono_mode);
  5132. if (ret) {
  5133. pr_err("%s: AFE encoder config for port 0x%x failed %d\n",
  5134. __func__, port_id, ret);
  5135. goto fail_cmd;
  5136. }
  5137. }
  5138. if (dec_cfg != NULL) {
  5139. pr_debug("%s: Found AFE decoder support for SLIMBUS format = %d\n",
  5140. __func__, codec_format);
  5141. if ((q6core_get_avcs_api_version_per_service(
  5142. APRV2_IDS_SERVICE_ID_ADSP_CORE_V) >=
  5143. AVCS_API_VERSION_V5)) {
  5144. /*
  5145. * LDAC and APTX_ADAPTIVE don't require loading decoder module
  5146. * Only loading de-packetizer module.
  5147. */
  5148. if (codec_format == ENC_CODEC_TYPE_LDAC ||
  5149. codec_format == ASM_MEDIA_FMT_APTX_ADAPTIVE)
  5150. ret = q6afe_load_avcs_modules(1, port_id,
  5151. DECODER_CASE, codec_format);
  5152. else
  5153. ret = q6afe_load_avcs_modules(2, port_id,
  5154. DECODER_CASE, codec_format);
  5155. if (ret < 0) {
  5156. pr_err("%s:decoder load for port 0x%x failed %d\n",
  5157. __func__, port_id, ret);
  5158. goto fail_cmd;
  5159. }
  5160. }
  5161. ret = q6afe_send_dec_config(port_id, *afe_config,
  5162. dec_cfg, codec_format,
  5163. afe_in_channels,
  5164. afe_in_bit_width);
  5165. if (ret) {
  5166. pr_err("%s: AFE decoder config for port 0x%x failed %d\n",
  5167. __func__, port_id, ret);
  5168. goto fail_cmd;
  5169. }
  5170. }
  5171. if (ttp_cfg != NULL) {
  5172. ret = q6afe_send_ttp_config(port_id, *afe_config,
  5173. ttp_cfg);
  5174. if (ret) {
  5175. pr_err("%s: AFE TTP config for port 0x%x failed %d\n",
  5176. __func__, port_id, ret);
  5177. goto fail_cmd;
  5178. }
  5179. }
  5180. }
  5181. port_index = afe_get_port_index(port_id);
  5182. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  5183. /*
  5184. * If afe_port_start() for tx port called before
  5185. * rx port, then aanc rx sample rate is zero. So,
  5186. * AANC state machine in AFE will not get triggered.
  5187. * Make sure to check whether aanc is active during
  5188. * afe_port_start() for rx port and if aanc rx
  5189. * sample rate is zero, call afe_aanc_start to configure
  5190. * aanc with valid sample rates.
  5191. */
  5192. if (this_afe.aanc_info.aanc_active &&
  5193. !this_afe.aanc_info.aanc_rx_port_sample_rate) {
  5194. this_afe.aanc_info.aanc_rx_port_sample_rate =
  5195. this_afe.afe_sample_rates[port_index];
  5196. ret = afe_aanc_start(this_afe.aanc_info.aanc_tx_port,
  5197. this_afe.aanc_info.aanc_rx_port);
  5198. pr_debug("%s: afe_aanc_start ret %d\n", __func__, ret);
  5199. }
  5200. } else {
  5201. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  5202. ret = -EINVAL;
  5203. goto fail_cmd;
  5204. }
  5205. ret = afe_send_cmd_port_start(port_id);
  5206. fail_cmd:
  5207. mutex_unlock(&this_afe.afe_cmd_lock);
  5208. return ret;
  5209. }
  5210. /**
  5211. * afe_port_start - to configure AFE session with
  5212. * specified port configuration
  5213. *
  5214. * @port_id: AFE port id number
  5215. * @afe_config: port configutation
  5216. * @rate: sampling rate of port
  5217. *
  5218. * Returns 0 on success or error value on port start failure.
  5219. */
  5220. int afe_port_start(u16 port_id, union afe_port_config *afe_config,
  5221. u32 rate)
  5222. {
  5223. return __afe_port_start(port_id, afe_config, rate, 0, 0, NULL,
  5224. ASM_MEDIA_FMT_NONE, 0, 0, NULL, NULL);
  5225. }
  5226. EXPORT_SYMBOL(afe_port_start);
  5227. /**
  5228. * afe_port_start_v2 - to configure AFE session with
  5229. * specified port configuration and encoder /decoder params
  5230. *
  5231. * @port_id: AFE port id number
  5232. * @afe_config: port configutation
  5233. * @rate: sampling rate of port
  5234. * @enc_cfg: AFE enc configuration information to setup encoder
  5235. * @afe_in_channels: AFE input channel configuration, this needs
  5236. * update only if input channel is differ from AFE output
  5237. * @dec_cfg: AFE dec configuration information to set up decoder
  5238. *
  5239. * Returns 0 on success or error value on port start failure.
  5240. */
  5241. int afe_port_start_v2(u16 port_id, union afe_port_config *afe_config,
  5242. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  5243. struct afe_enc_config *enc_cfg,
  5244. struct afe_dec_config *dec_cfg)
  5245. {
  5246. int ret = 0;
  5247. if (enc_cfg != NULL)
  5248. ret = __afe_port_start(port_id, afe_config, rate,
  5249. afe_in_channels, afe_in_bit_width,
  5250. &enc_cfg->data, enc_cfg->format,
  5251. enc_cfg->scrambler_mode,
  5252. enc_cfg->mono_mode, dec_cfg, NULL);
  5253. else if (dec_cfg != NULL)
  5254. ret = __afe_port_start(port_id, afe_config, rate,
  5255. afe_in_channels, afe_in_bit_width,
  5256. NULL, dec_cfg->format, 0, 0,
  5257. dec_cfg, NULL);
  5258. return ret;
  5259. }
  5260. EXPORT_SYMBOL(afe_port_start_v2);
  5261. /**
  5262. * afe_port_start_v3 - to configure AFE session with
  5263. * specified port configuration and encoder /decoder params
  5264. *
  5265. * @port_id: AFE port id number
  5266. * @afe_config: port configuration
  5267. * @rate: sampling rate of port
  5268. * @enc_cfg: AFE enc configuration information to setup encoder
  5269. * @afe_in_channels: AFE input channel configuration, this needs
  5270. * update only if input channel is differ from AFE output
  5271. * @dec_cfg: AFE dec configuration information to set up decoder
  5272. * @ttp_cfg: TTP generator configuration to enable TTP in AFE
  5273. *
  5274. * Returns 0 on success or error value on port start failure.
  5275. */
  5276. int afe_port_start_v3(u16 port_id, union afe_port_config *afe_config,
  5277. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  5278. struct afe_enc_config *enc_cfg,
  5279. struct afe_dec_config *dec_cfg,
  5280. struct afe_ttp_config *ttp_cfg)
  5281. {
  5282. int ret = 0;
  5283. if (dec_cfg != NULL && ttp_cfg != NULL)
  5284. ret = __afe_port_start(port_id, afe_config, rate,
  5285. afe_in_channels, afe_in_bit_width,
  5286. NULL, dec_cfg->format, 0, 0,
  5287. dec_cfg, ttp_cfg);
  5288. return ret;
  5289. }
  5290. EXPORT_SYMBOL(afe_port_start_v3);
  5291. int afe_get_port_index(u16 port_id)
  5292. {
  5293. switch (port_id) {
  5294. case PRIMARY_I2S_RX: return IDX_PRIMARY_I2S_RX;
  5295. case PRIMARY_I2S_TX: return IDX_PRIMARY_I2S_TX;
  5296. case AFE_PORT_ID_PRIMARY_PCM_RX:
  5297. return IDX_AFE_PORT_ID_PRIMARY_PCM_RX;
  5298. case AFE_PORT_ID_PRIMARY_PCM_TX:
  5299. return IDX_AFE_PORT_ID_PRIMARY_PCM_TX;
  5300. case AFE_PORT_ID_SECONDARY_PCM_RX:
  5301. return IDX_AFE_PORT_ID_SECONDARY_PCM_RX;
  5302. case AFE_PORT_ID_SECONDARY_PCM_TX:
  5303. return IDX_AFE_PORT_ID_SECONDARY_PCM_TX;
  5304. case AFE_PORT_ID_TERTIARY_PCM_RX:
  5305. return IDX_AFE_PORT_ID_TERTIARY_PCM_RX;
  5306. case AFE_PORT_ID_TERTIARY_PCM_TX:
  5307. return IDX_AFE_PORT_ID_TERTIARY_PCM_TX;
  5308. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  5309. return IDX_AFE_PORT_ID_QUATERNARY_PCM_RX;
  5310. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  5311. return IDX_AFE_PORT_ID_QUATERNARY_PCM_TX;
  5312. case AFE_PORT_ID_QUINARY_PCM_RX:
  5313. return IDX_AFE_PORT_ID_QUINARY_PCM_RX;
  5314. case AFE_PORT_ID_QUINARY_PCM_TX:
  5315. return IDX_AFE_PORT_ID_QUINARY_PCM_TX;
  5316. case AFE_PORT_ID_SENARY_PCM_RX:
  5317. return IDX_AFE_PORT_ID_SENARY_PCM_RX;
  5318. case AFE_PORT_ID_SENARY_PCM_TX:
  5319. return IDX_AFE_PORT_ID_SENARY_PCM_TX;
  5320. case SECONDARY_I2S_RX: return IDX_SECONDARY_I2S_RX;
  5321. case SECONDARY_I2S_TX: return IDX_SECONDARY_I2S_TX;
  5322. case MI2S_RX: return IDX_MI2S_RX;
  5323. case MI2S_TX: return IDX_MI2S_TX;
  5324. case HDMI_RX: return IDX_HDMI_RX;
  5325. case HDMI_RX_MS: return IDX_HDMI_RX_MS;
  5326. case DISPLAY_PORT_RX: return IDX_DISPLAY_PORT_RX;
  5327. case AFE_PORT_ID_PRIMARY_SPDIF_RX: return IDX_PRIMARY_SPDIF_RX;
  5328. case AFE_PORT_ID_PRIMARY_SPDIF_TX: return IDX_PRIMARY_SPDIF_TX;
  5329. case AFE_PORT_ID_SECONDARY_SPDIF_RX: return IDX_SECONDARY_SPDIF_RX;
  5330. case AFE_PORT_ID_SECONDARY_SPDIF_TX: return IDX_SECONDARY_SPDIF_TX;
  5331. case RSVD_2: return IDX_RSVD_2;
  5332. case RSVD_3: return IDX_RSVD_3;
  5333. case DIGI_MIC_TX: return IDX_DIGI_MIC_TX;
  5334. case VOICE_RECORD_RX: return IDX_VOICE_RECORD_RX;
  5335. case VOICE_RECORD_TX: return IDX_VOICE_RECORD_TX;
  5336. case VOICE_PLAYBACK_TX: return IDX_VOICE_PLAYBACK_TX;
  5337. case VOICE2_PLAYBACK_TX: return IDX_VOICE2_PLAYBACK_TX;
  5338. case SLIMBUS_0_RX: return IDX_SLIMBUS_0_RX;
  5339. case SLIMBUS_0_TX: return IDX_SLIMBUS_0_TX;
  5340. case SLIMBUS_1_RX: return IDX_SLIMBUS_1_RX;
  5341. case SLIMBUS_1_TX: return IDX_SLIMBUS_1_TX;
  5342. case SLIMBUS_2_RX: return IDX_SLIMBUS_2_RX;
  5343. case SLIMBUS_2_TX: return IDX_SLIMBUS_2_TX;
  5344. case SLIMBUS_3_RX: return IDX_SLIMBUS_3_RX;
  5345. case SLIMBUS_3_TX: return IDX_SLIMBUS_3_TX;
  5346. case INT_BT_SCO_RX: return IDX_INT_BT_SCO_RX;
  5347. case INT_BT_SCO_TX: return IDX_INT_BT_SCO_TX;
  5348. case INT_BT_A2DP_RX: return IDX_INT_BT_A2DP_RX;
  5349. case INT_FM_RX: return IDX_INT_FM_RX;
  5350. case INT_FM_TX: return IDX_INT_FM_TX;
  5351. case RT_PROXY_PORT_001_RX: return IDX_RT_PROXY_PORT_001_RX;
  5352. case RT_PROXY_PORT_001_TX: return IDX_RT_PROXY_PORT_001_TX;
  5353. case SLIMBUS_4_RX: return IDX_SLIMBUS_4_RX;
  5354. case SLIMBUS_4_TX: return IDX_SLIMBUS_4_TX;
  5355. case SLIMBUS_5_RX: return IDX_SLIMBUS_5_RX;
  5356. case SLIMBUS_5_TX: return IDX_SLIMBUS_5_TX;
  5357. case SLIMBUS_6_RX: return IDX_SLIMBUS_6_RX;
  5358. case SLIMBUS_6_TX: return IDX_SLIMBUS_6_TX;
  5359. case SLIMBUS_7_RX: return IDX_SLIMBUS_7_RX;
  5360. case SLIMBUS_7_TX: return IDX_SLIMBUS_7_TX;
  5361. case SLIMBUS_8_RX: return IDX_SLIMBUS_8_RX;
  5362. case SLIMBUS_8_TX: return IDX_SLIMBUS_8_TX;
  5363. case SLIMBUS_9_RX: return IDX_SLIMBUS_9_RX;
  5364. case SLIMBUS_9_TX: return IDX_SLIMBUS_9_TX;
  5365. case AFE_PORT_ID_USB_RX: return IDX_AFE_PORT_ID_USB_RX;
  5366. case AFE_PORT_ID_USB_TX: return IDX_AFE_PORT_ID_USB_TX;
  5367. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  5368. return IDX_AFE_PORT_ID_PRIMARY_MI2S_RX;
  5369. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  5370. return IDX_AFE_PORT_ID_PRIMARY_MI2S_TX;
  5371. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  5372. return IDX_AFE_PORT_ID_QUATERNARY_MI2S_RX;
  5373. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  5374. return IDX_AFE_PORT_ID_QUATERNARY_MI2S_TX;
  5375. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  5376. return IDX_AFE_PORT_ID_SECONDARY_MI2S_RX;
  5377. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  5378. return IDX_AFE_PORT_ID_SECONDARY_MI2S_TX;
  5379. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  5380. return IDX_AFE_PORT_ID_TERTIARY_MI2S_RX;
  5381. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  5382. return IDX_AFE_PORT_ID_TERTIARY_MI2S_TX;
  5383. case AFE_PORT_ID_SECONDARY_MI2S_RX_SD1:
  5384. return IDX_AFE_PORT_ID_SECONDARY_MI2S_RX_SD1;
  5385. case AFE_PORT_ID_QUINARY_MI2S_RX:
  5386. return IDX_AFE_PORT_ID_QUINARY_MI2S_RX;
  5387. case AFE_PORT_ID_QUINARY_MI2S_TX:
  5388. return IDX_AFE_PORT_ID_QUINARY_MI2S_TX;
  5389. case AFE_PORT_ID_SENARY_MI2S_RX:
  5390. return IDX_AFE_PORT_ID_SENARY_MI2S_RX;
  5391. case AFE_PORT_ID_SENARY_MI2S_TX:
  5392. return IDX_AFE_PORT_ID_SENARY_MI2S_TX;
  5393. case AFE_PORT_ID_PRIMARY_TDM_RX:
  5394. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_0;
  5395. case AFE_PORT_ID_PRIMARY_TDM_TX:
  5396. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_0;
  5397. case AFE_PORT_ID_PRIMARY_TDM_RX_1:
  5398. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_1;
  5399. case AFE_PORT_ID_PRIMARY_TDM_TX_1:
  5400. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_1;
  5401. case AFE_PORT_ID_PRIMARY_TDM_RX_2:
  5402. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_2;
  5403. case AFE_PORT_ID_PRIMARY_TDM_TX_2:
  5404. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_2;
  5405. case AFE_PORT_ID_PRIMARY_TDM_RX_3:
  5406. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_3;
  5407. case AFE_PORT_ID_PRIMARY_TDM_TX_3:
  5408. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_3;
  5409. case AFE_PORT_ID_PRIMARY_TDM_RX_4:
  5410. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_4;
  5411. case AFE_PORT_ID_PRIMARY_TDM_TX_4:
  5412. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_4;
  5413. case AFE_PORT_ID_PRIMARY_TDM_RX_5:
  5414. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_5;
  5415. case AFE_PORT_ID_PRIMARY_TDM_TX_5:
  5416. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_5;
  5417. case AFE_PORT_ID_PRIMARY_TDM_RX_6:
  5418. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_6;
  5419. case AFE_PORT_ID_PRIMARY_TDM_TX_6:
  5420. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_6;
  5421. case AFE_PORT_ID_PRIMARY_TDM_RX_7:
  5422. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_7;
  5423. case AFE_PORT_ID_PRIMARY_TDM_TX_7:
  5424. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_7;
  5425. case AFE_PORT_ID_SECONDARY_TDM_RX:
  5426. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_0;
  5427. case AFE_PORT_ID_SECONDARY_TDM_TX:
  5428. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_0;
  5429. case AFE_PORT_ID_SECONDARY_TDM_RX_1:
  5430. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_1;
  5431. case AFE_PORT_ID_SECONDARY_TDM_TX_1:
  5432. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_1;
  5433. case AFE_PORT_ID_SECONDARY_TDM_RX_2:
  5434. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_2;
  5435. case AFE_PORT_ID_SECONDARY_TDM_TX_2:
  5436. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_2;
  5437. case AFE_PORT_ID_SECONDARY_TDM_RX_3:
  5438. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_3;
  5439. case AFE_PORT_ID_SECONDARY_TDM_TX_3:
  5440. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_3;
  5441. case AFE_PORT_ID_SECONDARY_TDM_RX_4:
  5442. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_4;
  5443. case AFE_PORT_ID_SECONDARY_TDM_TX_4:
  5444. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_4;
  5445. case AFE_PORT_ID_SECONDARY_TDM_RX_5:
  5446. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_5;
  5447. case AFE_PORT_ID_SECONDARY_TDM_TX_5:
  5448. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_5;
  5449. case AFE_PORT_ID_SECONDARY_TDM_RX_6:
  5450. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_6;
  5451. case AFE_PORT_ID_SECONDARY_TDM_TX_6:
  5452. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_6;
  5453. case AFE_PORT_ID_SECONDARY_TDM_RX_7:
  5454. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_7;
  5455. case AFE_PORT_ID_SECONDARY_TDM_TX_7:
  5456. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_7;
  5457. case AFE_PORT_ID_TERTIARY_TDM_RX:
  5458. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_0;
  5459. case AFE_PORT_ID_TERTIARY_TDM_TX:
  5460. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_0;
  5461. case AFE_PORT_ID_TERTIARY_TDM_RX_1:
  5462. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_1;
  5463. case AFE_PORT_ID_TERTIARY_TDM_TX_1:
  5464. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_1;
  5465. case AFE_PORT_ID_TERTIARY_TDM_RX_2:
  5466. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_2;
  5467. case AFE_PORT_ID_TERTIARY_TDM_TX_2:
  5468. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_2;
  5469. case AFE_PORT_ID_TERTIARY_TDM_RX_3:
  5470. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_3;
  5471. case AFE_PORT_ID_TERTIARY_TDM_TX_3:
  5472. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_3;
  5473. case AFE_PORT_ID_TERTIARY_TDM_RX_4:
  5474. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_4;
  5475. case AFE_PORT_ID_TERTIARY_TDM_TX_4:
  5476. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_4;
  5477. case AFE_PORT_ID_TERTIARY_TDM_RX_5:
  5478. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_5;
  5479. case AFE_PORT_ID_TERTIARY_TDM_TX_5:
  5480. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_5;
  5481. case AFE_PORT_ID_TERTIARY_TDM_RX_6:
  5482. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_6;
  5483. case AFE_PORT_ID_TERTIARY_TDM_TX_6:
  5484. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_6;
  5485. case AFE_PORT_ID_TERTIARY_TDM_RX_7:
  5486. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_7;
  5487. case AFE_PORT_ID_TERTIARY_TDM_TX_7:
  5488. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_7;
  5489. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  5490. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_0;
  5491. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  5492. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_0;
  5493. case AFE_PORT_ID_QUATERNARY_TDM_RX_1:
  5494. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_1;
  5495. case AFE_PORT_ID_QUATERNARY_TDM_TX_1:
  5496. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_1;
  5497. case AFE_PORT_ID_QUATERNARY_TDM_RX_2:
  5498. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_2;
  5499. case AFE_PORT_ID_QUATERNARY_TDM_TX_2:
  5500. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_2;
  5501. case AFE_PORT_ID_QUATERNARY_TDM_RX_3:
  5502. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_3;
  5503. case AFE_PORT_ID_QUATERNARY_TDM_TX_3:
  5504. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_3;
  5505. case AFE_PORT_ID_QUATERNARY_TDM_RX_4:
  5506. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_4;
  5507. case AFE_PORT_ID_QUATERNARY_TDM_TX_4:
  5508. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_4;
  5509. case AFE_PORT_ID_QUATERNARY_TDM_RX_5:
  5510. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_5;
  5511. case AFE_PORT_ID_QUATERNARY_TDM_TX_5:
  5512. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_5;
  5513. case AFE_PORT_ID_QUATERNARY_TDM_RX_6:
  5514. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_6;
  5515. case AFE_PORT_ID_QUATERNARY_TDM_TX_6:
  5516. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_6;
  5517. case AFE_PORT_ID_QUATERNARY_TDM_RX_7:
  5518. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_7;
  5519. case AFE_PORT_ID_QUATERNARY_TDM_TX_7:
  5520. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_7;
  5521. case AFE_PORT_ID_QUINARY_TDM_RX:
  5522. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_0;
  5523. case AFE_PORT_ID_QUINARY_TDM_TX:
  5524. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_0;
  5525. case AFE_PORT_ID_QUINARY_TDM_RX_1:
  5526. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_1;
  5527. case AFE_PORT_ID_QUINARY_TDM_TX_1:
  5528. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_1;
  5529. case AFE_PORT_ID_QUINARY_TDM_RX_2:
  5530. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_2;
  5531. case AFE_PORT_ID_QUINARY_TDM_TX_2:
  5532. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_2;
  5533. case AFE_PORT_ID_QUINARY_TDM_RX_3:
  5534. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_3;
  5535. case AFE_PORT_ID_QUINARY_TDM_TX_3:
  5536. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_3;
  5537. case AFE_PORT_ID_QUINARY_TDM_RX_4:
  5538. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_4;
  5539. case AFE_PORT_ID_QUINARY_TDM_TX_4:
  5540. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_4;
  5541. case AFE_PORT_ID_QUINARY_TDM_RX_5:
  5542. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_5;
  5543. case AFE_PORT_ID_QUINARY_TDM_TX_5:
  5544. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_5;
  5545. case AFE_PORT_ID_QUINARY_TDM_RX_6:
  5546. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_6;
  5547. case AFE_PORT_ID_QUINARY_TDM_TX_6:
  5548. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_6;
  5549. case AFE_PORT_ID_QUINARY_TDM_RX_7:
  5550. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_7;
  5551. case AFE_PORT_ID_QUINARY_TDM_TX_7:
  5552. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_7;
  5553. case AFE_PORT_ID_SENARY_TDM_RX:
  5554. return IDX_AFE_PORT_ID_SENARY_TDM_RX_0;
  5555. case AFE_PORT_ID_SENARY_TDM_TX:
  5556. return IDX_AFE_PORT_ID_SENARY_TDM_TX_0;
  5557. case AFE_PORT_ID_SENARY_TDM_RX_1:
  5558. return IDX_AFE_PORT_ID_SENARY_TDM_RX_1;
  5559. case AFE_PORT_ID_SENARY_TDM_TX_1:
  5560. return IDX_AFE_PORT_ID_SENARY_TDM_TX_1;
  5561. case AFE_PORT_ID_SENARY_TDM_RX_2:
  5562. return IDX_AFE_PORT_ID_SENARY_TDM_RX_2;
  5563. case AFE_PORT_ID_SENARY_TDM_TX_2:
  5564. return IDX_AFE_PORT_ID_SENARY_TDM_TX_2;
  5565. case AFE_PORT_ID_SENARY_TDM_RX_3:
  5566. return IDX_AFE_PORT_ID_SENARY_TDM_RX_3;
  5567. case AFE_PORT_ID_SENARY_TDM_TX_3:
  5568. return IDX_AFE_PORT_ID_SENARY_TDM_TX_3;
  5569. case AFE_PORT_ID_SENARY_TDM_RX_4:
  5570. return IDX_AFE_PORT_ID_SENARY_TDM_RX_4;
  5571. case AFE_PORT_ID_SENARY_TDM_TX_4:
  5572. return IDX_AFE_PORT_ID_SENARY_TDM_TX_4;
  5573. case AFE_PORT_ID_SENARY_TDM_RX_5:
  5574. return IDX_AFE_PORT_ID_SENARY_TDM_RX_5;
  5575. case AFE_PORT_ID_SENARY_TDM_TX_5:
  5576. return IDX_AFE_PORT_ID_SENARY_TDM_TX_5;
  5577. case AFE_PORT_ID_SENARY_TDM_RX_6:
  5578. return IDX_AFE_PORT_ID_SENARY_TDM_RX_6;
  5579. case AFE_PORT_ID_SENARY_TDM_TX_6:
  5580. return IDX_AFE_PORT_ID_SENARY_TDM_TX_6;
  5581. case AFE_PORT_ID_SENARY_TDM_RX_7:
  5582. return IDX_AFE_PORT_ID_SENARY_TDM_RX_7;
  5583. case AFE_PORT_ID_SENARY_TDM_TX_7:
  5584. return IDX_AFE_PORT_ID_SENARY_TDM_TX_7;
  5585. case AFE_PORT_ID_INT0_MI2S_RX:
  5586. return IDX_AFE_PORT_ID_INT0_MI2S_RX;
  5587. case AFE_PORT_ID_INT0_MI2S_TX:
  5588. return IDX_AFE_PORT_ID_INT0_MI2S_TX;
  5589. case AFE_PORT_ID_INT1_MI2S_RX:
  5590. return IDX_AFE_PORT_ID_INT1_MI2S_RX;
  5591. case AFE_PORT_ID_INT1_MI2S_TX:
  5592. return IDX_AFE_PORT_ID_INT1_MI2S_TX;
  5593. case AFE_PORT_ID_INT2_MI2S_RX:
  5594. return IDX_AFE_PORT_ID_INT2_MI2S_RX;
  5595. case AFE_PORT_ID_INT2_MI2S_TX:
  5596. return IDX_AFE_PORT_ID_INT2_MI2S_TX;
  5597. case AFE_PORT_ID_INT3_MI2S_RX:
  5598. return IDX_AFE_PORT_ID_INT3_MI2S_RX;
  5599. case AFE_PORT_ID_INT3_MI2S_TX:
  5600. return IDX_AFE_PORT_ID_INT3_MI2S_TX;
  5601. case AFE_PORT_ID_INT4_MI2S_RX:
  5602. return IDX_AFE_PORT_ID_INT4_MI2S_RX;
  5603. case AFE_PORT_ID_INT4_MI2S_TX:
  5604. return IDX_AFE_PORT_ID_INT4_MI2S_TX;
  5605. case AFE_PORT_ID_INT5_MI2S_RX:
  5606. return IDX_AFE_PORT_ID_INT5_MI2S_RX;
  5607. case AFE_PORT_ID_INT5_MI2S_TX:
  5608. return IDX_AFE_PORT_ID_INT5_MI2S_TX;
  5609. case AFE_PORT_ID_INT6_MI2S_RX:
  5610. return IDX_AFE_PORT_ID_INT6_MI2S_RX;
  5611. case AFE_PORT_ID_INT6_MI2S_TX:
  5612. return IDX_AFE_PORT_ID_INT6_MI2S_TX;
  5613. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  5614. return IDX_AFE_PORT_ID_PRIMARY_META_MI2S_RX;
  5615. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  5616. return IDX_AFE_PORT_ID_SECONDARY_META_MI2S_RX;
  5617. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  5618. return IDX_AFE_PORT_ID_VA_CODEC_DMA_TX_0;
  5619. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  5620. return IDX_AFE_PORT_ID_VA_CODEC_DMA_TX_1;
  5621. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  5622. return IDX_AFE_PORT_ID_VA_CODEC_DMA_TX_2;
  5623. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  5624. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_RX_0;
  5625. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  5626. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_0;
  5627. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  5628. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_RX_1;
  5629. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  5630. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_1;
  5631. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  5632. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_2;
  5633. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  5634. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_0;
  5635. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  5636. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_0;
  5637. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  5638. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_1;
  5639. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  5640. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_1;
  5641. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  5642. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_2;
  5643. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  5644. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_2;
  5645. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  5646. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_3;
  5647. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  5648. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_3;
  5649. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  5650. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_4;
  5651. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  5652. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_4;
  5653. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  5654. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_5;
  5655. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  5656. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_5;
  5657. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  5658. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_6;
  5659. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  5660. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_7;
  5661. case AFE_LOOPBACK_TX:
  5662. return IDX_AFE_LOOPBACK_TX;
  5663. case RT_PROXY_PORT_002_RX:
  5664. return IDX_RT_PROXY_PORT_002_RX;
  5665. case RT_PROXY_PORT_002_TX:
  5666. return IDX_RT_PROXY_PORT_002_TX;
  5667. default:
  5668. pr_err("%s: port 0x%x\n", __func__, port_id);
  5669. return -EINVAL;
  5670. }
  5671. }
  5672. /**
  5673. * afe_open -
  5674. * command to open AFE port
  5675. *
  5676. * @port_id: AFE port id
  5677. * @afe_config: AFE port config to pass
  5678. * @rate: sample rate
  5679. *
  5680. * Returns 0 on success or error on failure
  5681. */
  5682. int afe_open(u16 port_id,
  5683. union afe_port_config *afe_config, int rate)
  5684. {
  5685. struct afe_port_cmd_device_start start;
  5686. union afe_port_config port_cfg;
  5687. struct param_hdr_v3 param_hdr;
  5688. int ret = 0;
  5689. int cfg_type;
  5690. int index = 0;
  5691. memset(&param_hdr, 0, sizeof(param_hdr));
  5692. memset(&start, 0, sizeof(start));
  5693. memset(&port_cfg, 0, sizeof(port_cfg));
  5694. if (!afe_config) {
  5695. pr_err("%s: Error, no configuration data\n", __func__);
  5696. ret = -EINVAL;
  5697. return ret;
  5698. }
  5699. pr_err("%s: port_id 0x%x rate %d\n", __func__, port_id, rate);
  5700. index = q6audio_get_port_index(port_id);
  5701. if (index < 0 || index >= AFE_MAX_PORTS) {
  5702. pr_err("%s: AFE port index[%d] invalid!\n",
  5703. __func__, index);
  5704. return -EINVAL;
  5705. }
  5706. ret = q6audio_validate_port(port_id);
  5707. if (ret < 0) {
  5708. pr_err("%s: Invalid port 0x%x ret %d", __func__, port_id, ret);
  5709. return -EINVAL;
  5710. }
  5711. if ((port_id == RT_PROXY_DAI_001_RX) ||
  5712. (port_id == RT_PROXY_DAI_002_TX)) {
  5713. pr_err("%s: wrong port 0x%x\n", __func__, port_id);
  5714. return -EINVAL;
  5715. }
  5716. if ((port_id == RT_PROXY_DAI_002_RX) ||
  5717. (port_id == RT_PROXY_DAI_001_TX))
  5718. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  5719. ret = afe_q6_interface_prepare();
  5720. if (ret != 0) {
  5721. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5722. return -EINVAL;
  5723. }
  5724. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  5725. this_afe.afe_sample_rates[index] = rate;
  5726. if (this_afe.rt_cb)
  5727. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  5728. }
  5729. /* Also send the topology id here: */
  5730. afe_send_custom_topology(); /* One time call: only for first time */
  5731. afe_send_port_topology_id(port_id);
  5732. ret = q6audio_validate_port(port_id);
  5733. if (ret < 0) {
  5734. pr_err("%s: Failed : Invalid Port id = 0x%x ret %d\n",
  5735. __func__, port_id, ret);
  5736. return -EINVAL;
  5737. }
  5738. mutex_lock(&this_afe.afe_cmd_lock);
  5739. switch (port_id) {
  5740. case PRIMARY_I2S_RX:
  5741. case PRIMARY_I2S_TX:
  5742. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  5743. break;
  5744. case AFE_PORT_ID_PRIMARY_PCM_RX:
  5745. case AFE_PORT_ID_PRIMARY_PCM_TX:
  5746. case AFE_PORT_ID_SECONDARY_PCM_RX:
  5747. case AFE_PORT_ID_SECONDARY_PCM_TX:
  5748. case AFE_PORT_ID_TERTIARY_PCM_RX:
  5749. case AFE_PORT_ID_TERTIARY_PCM_TX:
  5750. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  5751. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  5752. case AFE_PORT_ID_QUINARY_PCM_RX:
  5753. case AFE_PORT_ID_QUINARY_PCM_TX:
  5754. case AFE_PORT_ID_SENARY_PCM_RX:
  5755. case AFE_PORT_ID_SENARY_PCM_TX:
  5756. cfg_type = AFE_PARAM_ID_PCM_CONFIG;
  5757. break;
  5758. case SECONDARY_I2S_RX:
  5759. case SECONDARY_I2S_TX:
  5760. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  5761. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  5762. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  5763. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  5764. case MI2S_RX:
  5765. case MI2S_TX:
  5766. case AFE_PORT_ID_QUINARY_MI2S_RX:
  5767. case AFE_PORT_ID_QUINARY_MI2S_TX:
  5768. case AFE_PORT_ID_SENARY_MI2S_RX:
  5769. case AFE_PORT_ID_SENARY_MI2S_TX:
  5770. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  5771. break;
  5772. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  5773. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  5774. cfg_type = AFE_PARAM_ID_META_I2S_CONFIG;
  5775. break;
  5776. case HDMI_RX:
  5777. case HDMI_RX_MS:
  5778. case DISPLAY_PORT_RX:
  5779. cfg_type = AFE_PARAM_ID_HDMI_CONFIG;
  5780. break;
  5781. case AFE_PORT_ID_PRIMARY_SPDIF_RX:
  5782. case AFE_PORT_ID_PRIMARY_SPDIF_TX:
  5783. case AFE_PORT_ID_SECONDARY_SPDIF_RX:
  5784. case AFE_PORT_ID_SECONDARY_SPDIF_TX:
  5785. cfg_type = AFE_PARAM_ID_SPDIF_CONFIG;
  5786. break;
  5787. case SLIMBUS_0_RX:
  5788. case SLIMBUS_0_TX:
  5789. case SLIMBUS_1_RX:
  5790. case SLIMBUS_1_TX:
  5791. case SLIMBUS_2_RX:
  5792. case SLIMBUS_2_TX:
  5793. case SLIMBUS_3_RX:
  5794. case SLIMBUS_3_TX:
  5795. case SLIMBUS_4_RX:
  5796. case SLIMBUS_4_TX:
  5797. case SLIMBUS_5_RX:
  5798. case SLIMBUS_6_RX:
  5799. case SLIMBUS_6_TX:
  5800. case SLIMBUS_7_RX:
  5801. case SLIMBUS_7_TX:
  5802. case SLIMBUS_8_RX:
  5803. case SLIMBUS_8_TX:
  5804. case SLIMBUS_9_RX:
  5805. case SLIMBUS_9_TX:
  5806. cfg_type = AFE_PARAM_ID_SLIMBUS_CONFIG;
  5807. break;
  5808. case AFE_PORT_ID_USB_RX:
  5809. case AFE_PORT_ID_USB_TX:
  5810. cfg_type = AFE_PARAM_ID_USB_AUDIO_CONFIG;
  5811. break;
  5812. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  5813. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  5814. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  5815. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  5816. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  5817. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  5818. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  5819. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  5820. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  5821. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  5822. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  5823. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  5824. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  5825. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  5826. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  5827. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  5828. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  5829. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  5830. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  5831. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  5832. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  5833. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  5834. cfg_type = AFE_PARAM_ID_CODEC_DMA_CONFIG;
  5835. break;
  5836. default:
  5837. pr_err("%s: Invalid port id 0x%x\n",
  5838. __func__, port_id);
  5839. ret = -EINVAL;
  5840. goto fail_cmd;
  5841. }
  5842. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5843. param_hdr.instance_id = INSTANCE_ID_0;
  5844. param_hdr.param_id = cfg_type;
  5845. param_hdr.param_size = sizeof(union afe_port_config);
  5846. port_cfg = *afe_config;
  5847. ret = q6afe_pack_and_set_param_in_band(port_id,
  5848. q6audio_get_port_index(port_id),
  5849. param_hdr, (u8 *) &port_cfg);
  5850. if (ret) {
  5851. pr_err("%s: AFE enable for port 0x%x opcode[0x%x]failed %d\n",
  5852. __func__, port_id, cfg_type, ret);
  5853. goto fail_cmd;
  5854. }
  5855. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5856. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5857. start.hdr.pkt_size = sizeof(start);
  5858. start.hdr.src_port = 0;
  5859. start.hdr.dest_port = 0;
  5860. start.hdr.token = index;
  5861. start.hdr.opcode = AFE_PORT_CMD_DEVICE_START;
  5862. start.port_id = q6audio_get_port_id(port_id);
  5863. pr_debug("%s: cmd device start opcode[0x%x] port id[0x%x]\n",
  5864. __func__, start.hdr.opcode, start.port_id);
  5865. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  5866. if (ret) {
  5867. pr_err("%s: AFE enable for port 0x%x failed %d\n", __func__,
  5868. port_id, ret);
  5869. goto fail_cmd;
  5870. }
  5871. fail_cmd:
  5872. mutex_unlock(&this_afe.afe_cmd_lock);
  5873. return ret;
  5874. }
  5875. EXPORT_SYMBOL(afe_open);
  5876. /**
  5877. * afe_loopback -
  5878. * command to set loopback between AFE ports
  5879. *
  5880. * @enable: enable or disable loopback
  5881. * @rx_port: AFE RX port ID
  5882. * @tx_port: AFE TX port ID
  5883. *
  5884. * Returns 0 on success or error on failure
  5885. */
  5886. int afe_loopback(u16 enable, u16 rx_port, u16 tx_port)
  5887. {
  5888. struct afe_loopback_cfg_v1 lb_param;
  5889. struct param_hdr_v3 param_hdr;
  5890. int ret = 0;
  5891. memset(&lb_param, 0, sizeof(lb_param));
  5892. memset(&param_hdr, 0, sizeof(param_hdr));
  5893. if (rx_port == MI2S_RX)
  5894. rx_port = AFE_PORT_ID_PRIMARY_MI2S_RX;
  5895. if (tx_port == MI2S_TX)
  5896. tx_port = AFE_PORT_ID_PRIMARY_MI2S_TX;
  5897. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  5898. param_hdr.instance_id = INSTANCE_ID_0;
  5899. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_CONFIG;
  5900. param_hdr.param_size = sizeof(struct afe_loopback_cfg_v1);
  5901. lb_param.dst_port_id = rx_port;
  5902. lb_param.routing_mode = LB_MODE_DEFAULT;
  5903. lb_param.enable = (enable ? 1 : 0);
  5904. lb_param.loopback_cfg_minor_version = AFE_API_VERSION_LOOPBACK_CONFIG;
  5905. ret = q6afe_pack_and_set_param_in_band(tx_port,
  5906. q6audio_get_port_index(tx_port),
  5907. param_hdr, (u8 *) &lb_param);
  5908. if (ret)
  5909. pr_err("%s: AFE loopback failed %d\n", __func__, ret);
  5910. return ret;
  5911. }
  5912. EXPORT_SYMBOL(afe_loopback);
  5913. /**
  5914. * afe_loopback_gain -
  5915. * command to set gain for AFE loopback
  5916. *
  5917. * @port_id: AFE port id
  5918. * @volume: gain value to set
  5919. *
  5920. * Returns 0 on success or error on failure
  5921. */
  5922. int afe_loopback_gain(u16 port_id, u16 volume)
  5923. {
  5924. struct afe_loopback_gain_per_path_param set_param;
  5925. struct param_hdr_v3 param_hdr;
  5926. int ret = 0;
  5927. memset(&set_param, 0, sizeof(set_param));
  5928. memset(&param_hdr, 0, sizeof(param_hdr));
  5929. if (this_afe.apr == NULL) {
  5930. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  5931. 0xFFFFFFFF, &this_afe);
  5932. pr_debug("%s: Register AFE\n", __func__);
  5933. if (this_afe.apr == NULL) {
  5934. pr_err("%s: Unable to register AFE\n", __func__);
  5935. ret = -ENODEV;
  5936. return ret;
  5937. }
  5938. rtac_set_afe_handle(this_afe.apr);
  5939. }
  5940. ret = q6audio_validate_port(port_id);
  5941. if (ret < 0) {
  5942. pr_err("%s: Failed : Invalid Port id = 0x%x ret %d\n",
  5943. __func__, port_id, ret);
  5944. ret = -EINVAL;
  5945. goto fail_cmd;
  5946. }
  5947. /* RX ports numbers are even .TX ports numbers are odd. */
  5948. if (port_id % 2 == 0) {
  5949. pr_err("%s: Failed : afe loopback gain only for TX ports. port_id %d\n",
  5950. __func__, port_id);
  5951. ret = -EINVAL;
  5952. goto fail_cmd;
  5953. }
  5954. pr_debug("%s: port 0x%x volume %d\n", __func__, port_id, volume);
  5955. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  5956. param_hdr.instance_id = INSTANCE_ID_0;
  5957. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_GAIN_PER_PATH;
  5958. param_hdr.param_size = sizeof(struct afe_loopback_gain_per_path_param);
  5959. set_param.rx_port_id = port_id;
  5960. set_param.gain = volume;
  5961. ret = q6afe_pack_and_set_param_in_band(port_id,
  5962. q6audio_get_port_index(port_id),
  5963. param_hdr, (u8 *) &set_param);
  5964. if (ret)
  5965. pr_err("%s: AFE param set failed for port 0x%x ret %d\n",
  5966. __func__, port_id, ret);
  5967. fail_cmd:
  5968. return ret;
  5969. }
  5970. EXPORT_SYMBOL(afe_loopback_gain);
  5971. int afe_pseudo_port_start_nowait(u16 port_id)
  5972. {
  5973. struct afe_pseudoport_start_command start;
  5974. int ret = 0;
  5975. pr_debug("%s: port_id=0x%x\n", __func__, port_id);
  5976. if (this_afe.apr == NULL) {
  5977. pr_err("%s: AFE APR is not registered\n", __func__);
  5978. return -ENODEV;
  5979. }
  5980. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5981. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5982. start.hdr.pkt_size = sizeof(start);
  5983. start.hdr.src_port = 0;
  5984. start.hdr.dest_port = 0;
  5985. start.hdr.token = 0;
  5986. start.hdr.opcode = AFE_PSEUDOPORT_CMD_START;
  5987. start.port_id = port_id;
  5988. start.timing = 1;
  5989. ret = afe_apr_send_pkt(&start, NULL);
  5990. if (ret) {
  5991. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  5992. __func__, port_id, ret);
  5993. return ret;
  5994. }
  5995. return 0;
  5996. }
  5997. int afe_start_pseudo_port(u16 port_id)
  5998. {
  5999. int ret = 0;
  6000. struct afe_pseudoport_start_command start;
  6001. int index = 0;
  6002. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  6003. ret = afe_q6_interface_prepare();
  6004. if (ret != 0) {
  6005. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  6006. return ret;
  6007. }
  6008. index = q6audio_get_port_index(port_id);
  6009. if (index < 0 || index >= AFE_MAX_PORTS) {
  6010. pr_err("%s: AFE port index[%d] invalid!\n",
  6011. __func__, index);
  6012. return -EINVAL;
  6013. }
  6014. ret = q6audio_validate_port(port_id);
  6015. if (ret < 0) {
  6016. pr_err("%s: Invalid port 0x%x ret %d",
  6017. __func__, port_id, ret);
  6018. return -EINVAL;
  6019. }
  6020. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6021. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6022. start.hdr.pkt_size = sizeof(start);
  6023. start.hdr.src_port = 0;
  6024. start.hdr.dest_port = 0;
  6025. start.hdr.token = 0;
  6026. start.hdr.opcode = AFE_PSEUDOPORT_CMD_START;
  6027. start.port_id = port_id;
  6028. start.timing = 1;
  6029. start.hdr.token = index;
  6030. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  6031. if (ret)
  6032. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  6033. __func__, port_id, ret);
  6034. return ret;
  6035. }
  6036. int afe_pseudo_port_stop_nowait(u16 port_id)
  6037. {
  6038. int ret = 0;
  6039. struct afe_pseudoport_stop_command stop;
  6040. int index = 0;
  6041. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  6042. if (this_afe.apr == NULL) {
  6043. pr_err("%s: AFE is already closed\n", __func__);
  6044. return -EINVAL;
  6045. }
  6046. index = q6audio_get_port_index(port_id);
  6047. if (index < 0 || index >= AFE_MAX_PORTS) {
  6048. pr_err("%s: AFE port index[%d] invalid!\n",
  6049. __func__, index);
  6050. return -EINVAL;
  6051. }
  6052. ret = q6audio_validate_port(port_id);
  6053. if (ret < 0) {
  6054. pr_err("%s: Invalid port 0x%x ret %d",
  6055. __func__, port_id, ret);
  6056. return -EINVAL;
  6057. }
  6058. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6059. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6060. stop.hdr.pkt_size = sizeof(stop);
  6061. stop.hdr.src_port = 0;
  6062. stop.hdr.dest_port = 0;
  6063. stop.hdr.token = 0;
  6064. stop.hdr.opcode = AFE_PSEUDOPORT_CMD_STOP;
  6065. stop.port_id = port_id;
  6066. stop.reserved = 0;
  6067. stop.hdr.token = index;
  6068. ret = afe_apr_send_pkt(&stop, NULL);
  6069. if (ret)
  6070. pr_err("%s: AFE close failed %d\n", __func__, ret);
  6071. return ret;
  6072. }
  6073. int afe_port_group_set_param(u16 group_id,
  6074. union afe_port_group_config *afe_group_config)
  6075. {
  6076. struct param_hdr_v3 param_hdr;
  6077. int cfg_type;
  6078. int ret;
  6079. if (!afe_group_config) {
  6080. pr_err("%s: Error, no configuration data\n", __func__);
  6081. return -EINVAL;
  6082. }
  6083. pr_debug("%s: group id: 0x%x\n", __func__, group_id);
  6084. memset(&param_hdr, 0, sizeof(param_hdr));
  6085. ret = afe_q6_interface_prepare();
  6086. if (ret != 0) {
  6087. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  6088. return ret;
  6089. }
  6090. switch (group_id) {
  6091. case AFE_GROUP_DEVICE_ID_PRIMARY_TDM_RX:
  6092. case AFE_GROUP_DEVICE_ID_PRIMARY_TDM_TX:
  6093. case AFE_GROUP_DEVICE_ID_SECONDARY_TDM_RX:
  6094. case AFE_GROUP_DEVICE_ID_SECONDARY_TDM_TX:
  6095. case AFE_GROUP_DEVICE_ID_TERTIARY_TDM_RX:
  6096. case AFE_GROUP_DEVICE_ID_TERTIARY_TDM_TX:
  6097. case AFE_GROUP_DEVICE_ID_QUATERNARY_TDM_RX:
  6098. case AFE_GROUP_DEVICE_ID_QUATERNARY_TDM_TX:
  6099. case AFE_GROUP_DEVICE_ID_QUINARY_TDM_RX:
  6100. case AFE_GROUP_DEVICE_ID_QUINARY_TDM_TX:
  6101. case AFE_GROUP_DEVICE_ID_SENARY_TDM_RX:
  6102. case AFE_GROUP_DEVICE_ID_SENARY_TDM_TX:
  6103. cfg_type = AFE_PARAM_ID_GROUP_DEVICE_TDM_CONFIG;
  6104. break;
  6105. default:
  6106. pr_err("%s: Invalid group id 0x%x\n", __func__, group_id);
  6107. return -EINVAL;
  6108. }
  6109. param_hdr.module_id = AFE_MODULE_GROUP_DEVICE;
  6110. param_hdr.instance_id = INSTANCE_ID_0;
  6111. param_hdr.param_id = cfg_type;
  6112. param_hdr.param_size = sizeof(union afe_port_group_config);
  6113. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  6114. (u8 *) afe_group_config);
  6115. if (ret)
  6116. pr_err("%s: AFE_PARAM_ID_GROUP_DEVICE_CFG failed %d\n",
  6117. __func__, ret);
  6118. return ret;
  6119. }
  6120. /**
  6121. * afe_port_tdm_lane_config -
  6122. * to configure group TDM lane mask with specified configuration
  6123. *
  6124. * @group_id: AFE group id number
  6125. * @lane_cfg: TDM lane mask configutation
  6126. *
  6127. * Returns 0 on success or error value on failure.
  6128. */
  6129. static int afe_port_tdm_lane_config(u16 group_id,
  6130. struct afe_param_id_tdm_lane_cfg *lane_cfg)
  6131. {
  6132. struct param_hdr_v3 param_hdr;
  6133. int ret = 0;
  6134. if (lane_cfg == NULL ||
  6135. lane_cfg->lane_mask == AFE_LANE_MASK_INVALID) {
  6136. pr_debug("%s: lane cfg not supported for group id: 0x%x\n",
  6137. __func__, group_id);
  6138. return ret;
  6139. }
  6140. pr_debug("%s: group id: 0x%x lane mask 0x%x\n", __func__,
  6141. group_id, lane_cfg->lane_mask);
  6142. memset(&param_hdr, 0, sizeof(param_hdr));
  6143. ret = afe_q6_interface_prepare();
  6144. if (ret != 0) {
  6145. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  6146. return ret;
  6147. }
  6148. param_hdr.module_id = AFE_MODULE_GROUP_DEVICE;
  6149. param_hdr.instance_id = INSTANCE_ID_0;
  6150. param_hdr.param_id = AFE_PARAM_ID_TDM_LANE_CONFIG;
  6151. param_hdr.param_size = sizeof(struct afe_param_id_tdm_lane_cfg);
  6152. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  6153. (u8 *)lane_cfg);
  6154. if (ret)
  6155. pr_err("%s: AFE_PARAM_ID_TDM_LANE_CONFIG failed %d\n",
  6156. __func__, ret);
  6157. return ret;
  6158. }
  6159. /**
  6160. * afe_port_group_enable -
  6161. * command to enable AFE port group
  6162. *
  6163. * @group_id: group ID for AFE port group
  6164. * @afe_group_config: config for AFE group
  6165. * @enable: flag to indicate enable or disable
  6166. * @lane_cfg: TDM lane mask configutation
  6167. *
  6168. * Returns 0 on success or error on failure
  6169. */
  6170. int afe_port_group_enable(u16 group_id,
  6171. union afe_port_group_config *afe_group_config,
  6172. u16 enable,
  6173. struct afe_param_id_tdm_lane_cfg *lane_cfg)
  6174. {
  6175. struct afe_group_device_enable group_enable;
  6176. struct param_hdr_v3 param_hdr;
  6177. int ret;
  6178. pr_debug("%s: group id: 0x%x enable: %d\n", __func__,
  6179. group_id, enable);
  6180. memset(&group_enable, 0, sizeof(group_enable));
  6181. memset(&param_hdr, 0, sizeof(param_hdr));
  6182. ret = afe_q6_interface_prepare();
  6183. if (ret != 0) {
  6184. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  6185. return ret;
  6186. }
  6187. if (enable) {
  6188. ret = afe_port_group_set_param(group_id, afe_group_config);
  6189. if (ret < 0) {
  6190. pr_err("%s: afe send failed %d\n", __func__, ret);
  6191. return ret;
  6192. }
  6193. ret = afe_port_tdm_lane_config(group_id, lane_cfg);
  6194. if (ret < 0) {
  6195. pr_err("%s: afe send lane config failed %d\n",
  6196. __func__, ret);
  6197. return ret;
  6198. }
  6199. }
  6200. param_hdr.module_id = AFE_MODULE_GROUP_DEVICE;
  6201. param_hdr.instance_id = INSTANCE_ID_0;
  6202. param_hdr.param_id = AFE_PARAM_ID_GROUP_DEVICE_ENABLE;
  6203. param_hdr.param_size = sizeof(struct afe_group_device_enable);
  6204. group_enable.group_id = group_id;
  6205. group_enable.enable = enable;
  6206. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  6207. (u8 *) &group_enable);
  6208. if (ret)
  6209. pr_err("%s: AFE_PARAM_ID_GROUP_DEVICE_ENABLE failed %d\n",
  6210. __func__, ret);
  6211. return ret;
  6212. }
  6213. EXPORT_SYMBOL(afe_port_group_enable);
  6214. int afe_stop_pseudo_port(u16 port_id)
  6215. {
  6216. int ret = 0;
  6217. struct afe_pseudoport_stop_command stop;
  6218. int index = 0;
  6219. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  6220. if (this_afe.apr == NULL) {
  6221. pr_err("%s: AFE is already closed\n", __func__);
  6222. return -EINVAL;
  6223. }
  6224. index = q6audio_get_port_index(port_id);
  6225. if (index < 0 || index >= AFE_MAX_PORTS) {
  6226. pr_err("%s: AFE port index[%d] invalid!\n",
  6227. __func__, index);
  6228. return -EINVAL;
  6229. }
  6230. ret = q6audio_validate_port(port_id);
  6231. if (ret < 0) {
  6232. pr_err("%s: Invalid port 0x%x ret %d\n",
  6233. __func__, port_id, ret);
  6234. return -EINVAL;
  6235. }
  6236. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6237. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6238. stop.hdr.pkt_size = sizeof(stop);
  6239. stop.hdr.src_port = 0;
  6240. stop.hdr.dest_port = 0;
  6241. stop.hdr.token = 0;
  6242. stop.hdr.opcode = AFE_PSEUDOPORT_CMD_STOP;
  6243. stop.port_id = port_id;
  6244. stop.reserved = 0;
  6245. stop.hdr.token = index;
  6246. ret = afe_apr_send_pkt(&stop, &this_afe.wait[index]);
  6247. if (ret)
  6248. pr_err("%s: AFE close failed %d\n", __func__, ret);
  6249. return ret;
  6250. }
  6251. /**
  6252. * afe_req_mmap_handle -
  6253. * Retrieve AFE memory map handle
  6254. *
  6255. * @ac: AFE audio client
  6256. *
  6257. * Returns memory map handle
  6258. */
  6259. uint32_t afe_req_mmap_handle(struct afe_audio_client *ac)
  6260. {
  6261. return ac->mem_map_handle;
  6262. }
  6263. EXPORT_SYMBOL(afe_req_mmap_handle);
  6264. /**
  6265. * q6afe_audio_client_alloc -
  6266. * Assign new AFE audio client
  6267. *
  6268. * @priv: privata data to hold for audio client
  6269. *
  6270. * Returns ac pointer on success or NULL on failure
  6271. */
  6272. struct afe_audio_client *q6afe_audio_client_alloc(void *priv)
  6273. {
  6274. struct afe_audio_client *ac;
  6275. int lcnt = 0;
  6276. ac = kzalloc(sizeof(struct afe_audio_client), GFP_KERNEL);
  6277. if (!ac)
  6278. return NULL;
  6279. ac->priv = priv;
  6280. init_waitqueue_head(&ac->cmd_wait);
  6281. INIT_LIST_HEAD(&ac->port[0].mem_map_handle);
  6282. INIT_LIST_HEAD(&ac->port[1].mem_map_handle);
  6283. pr_debug("%s: mem_map_handle list init'ed\n", __func__);
  6284. mutex_init(&ac->cmd_lock);
  6285. for (lcnt = 0; lcnt <= OUT; lcnt++) {
  6286. mutex_init(&ac->port[lcnt].lock);
  6287. spin_lock_init(&ac->port[lcnt].dsp_lock);
  6288. }
  6289. atomic_set(&ac->cmd_state, 0);
  6290. return ac;
  6291. }
  6292. EXPORT_SYMBOL(q6afe_audio_client_alloc);
  6293. /**
  6294. * q6afe_audio_client_buf_alloc_contiguous -
  6295. * Allocate contiguous shared buffers
  6296. *
  6297. * @dir: RX or TX direction of AFE port
  6298. * @ac: AFE audio client handle
  6299. * @bufsz: size of each shared buffer
  6300. * @bufcnt: number of buffers
  6301. *
  6302. * Returns 0 on success or error on failure
  6303. */
  6304. int q6afe_audio_client_buf_alloc_contiguous(unsigned int dir,
  6305. struct afe_audio_client *ac,
  6306. unsigned int bufsz,
  6307. unsigned int bufcnt)
  6308. {
  6309. int cnt = 0;
  6310. int rc = 0;
  6311. struct afe_audio_buffer *buf;
  6312. size_t len;
  6313. if (!(ac) || ((dir != IN) && (dir != OUT))) {
  6314. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  6315. return -EINVAL;
  6316. }
  6317. pr_debug("%s: bufsz[%d]bufcnt[%d]\n",
  6318. __func__,
  6319. bufsz, bufcnt);
  6320. if (ac->port[dir].buf) {
  6321. pr_debug("%s: buffer already allocated\n", __func__);
  6322. return 0;
  6323. }
  6324. mutex_lock(&ac->cmd_lock);
  6325. buf = kzalloc(((sizeof(struct afe_audio_buffer))*bufcnt),
  6326. GFP_KERNEL);
  6327. if (!buf) {
  6328. pr_err("%s: null buf\n", __func__);
  6329. mutex_unlock(&ac->cmd_lock);
  6330. goto fail;
  6331. }
  6332. ac->port[dir].buf = buf;
  6333. rc = msm_audio_ion_alloc(&buf[0].dma_buf,
  6334. bufsz * bufcnt,
  6335. &buf[0].phys, &len,
  6336. &buf[0].data);
  6337. if (rc) {
  6338. pr_err("%s: audio ION alloc failed, rc = %d\n",
  6339. __func__, rc);
  6340. mutex_unlock(&ac->cmd_lock);
  6341. goto fail;
  6342. }
  6343. buf[0].used = dir ^ 1;
  6344. buf[0].size = bufsz;
  6345. buf[0].actual_size = bufsz;
  6346. cnt = 1;
  6347. while (cnt < bufcnt) {
  6348. if (bufsz > 0) {
  6349. buf[cnt].data = buf[0].data + (cnt * bufsz);
  6350. buf[cnt].phys = buf[0].phys + (cnt * bufsz);
  6351. if (!buf[cnt].data) {
  6352. pr_err("%s: Buf alloc failed\n",
  6353. __func__);
  6354. mutex_unlock(&ac->cmd_lock);
  6355. goto fail;
  6356. }
  6357. buf[cnt].used = dir ^ 1;
  6358. buf[cnt].size = bufsz;
  6359. buf[cnt].actual_size = bufsz;
  6360. pr_debug("%s: data[%pK]phys[%pK][%pK]\n", __func__,
  6361. buf[cnt].data,
  6362. &buf[cnt].phys,
  6363. &buf[cnt].phys);
  6364. }
  6365. cnt++;
  6366. }
  6367. ac->port[dir].max_buf_cnt = cnt;
  6368. mutex_unlock(&ac->cmd_lock);
  6369. return 0;
  6370. fail:
  6371. pr_err("%s: jump fail\n", __func__);
  6372. q6afe_audio_client_buf_free_contiguous(dir, ac);
  6373. return -EINVAL;
  6374. }
  6375. EXPORT_SYMBOL(q6afe_audio_client_buf_alloc_contiguous);
  6376. /**
  6377. * afe_memory_map -
  6378. * command to map shared buffers to AFE
  6379. *
  6380. * @dma_addr_p: DMA physical address
  6381. * @dma_buf_sz: shared DMA buffer size
  6382. * @ac: AFE audio client handle
  6383. *
  6384. * Returns 0 on success or error on failure
  6385. */
  6386. int afe_memory_map(phys_addr_t dma_addr_p, u32 dma_buf_sz,
  6387. struct afe_audio_client *ac)
  6388. {
  6389. int ret = 0;
  6390. mutex_lock(&this_afe.afe_cmd_lock);
  6391. ac->mem_map_handle = 0;
  6392. ret = afe_cmd_memory_map(dma_addr_p, dma_buf_sz);
  6393. if (ret < 0) {
  6394. pr_err("%s: afe_cmd_memory_map failed %d\n",
  6395. __func__, ret);
  6396. mutex_unlock(&this_afe.afe_cmd_lock);
  6397. return ret;
  6398. }
  6399. ac->mem_map_handle = this_afe.mmap_handle;
  6400. mutex_unlock(&this_afe.afe_cmd_lock);
  6401. return ret;
  6402. }
  6403. EXPORT_SYMBOL(afe_memory_map);
  6404. int afe_cmd_memory_map(phys_addr_t dma_addr_p, u32 dma_buf_sz)
  6405. {
  6406. int ret = 0;
  6407. int cmd_size = 0;
  6408. void *payload = NULL;
  6409. void *mmap_region_cmd = NULL;
  6410. struct afe_service_cmd_shared_mem_map_regions *mregion = NULL;
  6411. struct afe_service_shared_map_region_payload *mregion_pl = NULL;
  6412. int index = 0;
  6413. pr_debug("%s:\n", __func__);
  6414. if (this_afe.apr == NULL) {
  6415. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6416. 0xFFFFFFFF, &this_afe);
  6417. pr_debug("%s: Register AFE\n", __func__);
  6418. if (this_afe.apr == NULL) {
  6419. pr_err("%s: Unable to register AFE\n", __func__);
  6420. ret = -ENODEV;
  6421. return ret;
  6422. }
  6423. rtac_set_afe_handle(this_afe.apr);
  6424. }
  6425. if (dma_buf_sz % SZ_4K != 0) {
  6426. /*
  6427. * The memory allocated by msm_audio_ion_alloc is always 4kB
  6428. * aligned, ADSP expects the size to be 4kB aligned as well
  6429. * so re-adjusts the buffer size before passing to ADSP.
  6430. */
  6431. dma_buf_sz = PAGE_ALIGN(dma_buf_sz);
  6432. }
  6433. cmd_size = sizeof(struct afe_service_cmd_shared_mem_map_regions)
  6434. + sizeof(struct afe_service_shared_map_region_payload);
  6435. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  6436. if (!mmap_region_cmd)
  6437. return -ENOMEM;
  6438. mregion = (struct afe_service_cmd_shared_mem_map_regions *)
  6439. mmap_region_cmd;
  6440. mregion->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6441. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6442. mregion->hdr.pkt_size = cmd_size;
  6443. mregion->hdr.src_port = 0;
  6444. mregion->hdr.dest_port = 0;
  6445. mregion->hdr.token = 0;
  6446. mregion->hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS;
  6447. mregion->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  6448. mregion->num_regions = 1;
  6449. mregion->property_flag = 0x00;
  6450. /* Todo */
  6451. index = mregion->hdr.token = IDX_RSVD_2;
  6452. payload = ((u8 *) mmap_region_cmd +
  6453. sizeof(struct afe_service_cmd_shared_mem_map_regions));
  6454. mregion_pl = (struct afe_service_shared_map_region_payload *)payload;
  6455. mregion_pl->shm_addr_lsw = lower_32_bits(dma_addr_p);
  6456. mregion_pl->shm_addr_msw = msm_audio_populate_upper_32_bits(dma_addr_p);
  6457. mregion_pl->mem_size_bytes = dma_buf_sz;
  6458. pr_debug("%s: dma_addr_p 0x%pK , size %d\n", __func__,
  6459. &dma_addr_p, dma_buf_sz);
  6460. this_afe.mmap_handle = 0;
  6461. ret = afe_apr_send_pkt((uint32_t *) mmap_region_cmd,
  6462. &this_afe.wait[index]);
  6463. kfree(mmap_region_cmd);
  6464. return ret;
  6465. }
  6466. int afe_cmd_memory_map_nowait(int port_id, phys_addr_t dma_addr_p,
  6467. u32 dma_buf_sz)
  6468. {
  6469. int ret = 0;
  6470. int cmd_size = 0;
  6471. void *payload = NULL;
  6472. void *mmap_region_cmd = NULL;
  6473. struct afe_service_cmd_shared_mem_map_regions *mregion = NULL;
  6474. struct afe_service_shared_map_region_payload *mregion_pl = NULL;
  6475. int index = 0;
  6476. pr_debug("%s:\n", __func__);
  6477. if (this_afe.apr == NULL) {
  6478. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6479. 0xFFFFFFFF, &this_afe);
  6480. pr_debug("%s: Register AFE\n", __func__);
  6481. if (this_afe.apr == NULL) {
  6482. pr_err("%s: Unable to register AFE\n", __func__);
  6483. ret = -ENODEV;
  6484. return ret;
  6485. }
  6486. rtac_set_afe_handle(this_afe.apr);
  6487. }
  6488. index = q6audio_get_port_index(port_id);
  6489. if (index < 0 || index >= AFE_MAX_PORTS) {
  6490. pr_err("%s: AFE port index[%d] invalid!\n",
  6491. __func__, index);
  6492. return -EINVAL;
  6493. }
  6494. ret = q6audio_validate_port(port_id);
  6495. if (ret < 0) {
  6496. pr_err("%s: Invalid port 0x%x ret %d",
  6497. __func__, port_id, ret);
  6498. return -EINVAL;
  6499. }
  6500. cmd_size = sizeof(struct afe_service_cmd_shared_mem_map_regions)
  6501. + sizeof(struct afe_service_shared_map_region_payload);
  6502. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  6503. if (!mmap_region_cmd)
  6504. return -ENOMEM;
  6505. mregion = (struct afe_service_cmd_shared_mem_map_regions *)
  6506. mmap_region_cmd;
  6507. mregion->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6508. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6509. mregion->hdr.pkt_size = sizeof(mregion);
  6510. mregion->hdr.src_port = 0;
  6511. mregion->hdr.dest_port = 0;
  6512. mregion->hdr.token = 0;
  6513. mregion->hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS;
  6514. mregion->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  6515. mregion->num_regions = 1;
  6516. mregion->property_flag = 0x00;
  6517. payload = ((u8 *) mmap_region_cmd +
  6518. sizeof(struct afe_service_cmd_shared_mem_map_regions));
  6519. mregion_pl = (struct afe_service_shared_map_region_payload *)payload;
  6520. mregion_pl->shm_addr_lsw = lower_32_bits(dma_addr_p);
  6521. mregion_pl->shm_addr_msw = msm_audio_populate_upper_32_bits(dma_addr_p);
  6522. mregion_pl->mem_size_bytes = dma_buf_sz;
  6523. ret = afe_apr_send_pkt(mmap_region_cmd, NULL);
  6524. if (ret)
  6525. pr_err("%s: AFE memory map cmd failed %d\n",
  6526. __func__, ret);
  6527. kfree(mmap_region_cmd);
  6528. return ret;
  6529. }
  6530. /**
  6531. * q6afe_audio_client_buf_free_contiguous -
  6532. * frees the shared contiguous memory
  6533. *
  6534. * @dir: RX or TX direction of port
  6535. * @ac: AFE audio client handle
  6536. *
  6537. */
  6538. int q6afe_audio_client_buf_free_contiguous(unsigned int dir,
  6539. struct afe_audio_client *ac)
  6540. {
  6541. struct afe_audio_port_data *port;
  6542. int cnt = 0;
  6543. mutex_lock(&ac->cmd_lock);
  6544. port = &ac->port[dir];
  6545. if (!port->buf) {
  6546. pr_err("%s: buf is null\n", __func__);
  6547. mutex_unlock(&ac->cmd_lock);
  6548. return 0;
  6549. }
  6550. cnt = port->max_buf_cnt - 1;
  6551. if (port->buf[0].data) {
  6552. pr_debug("%s: data[%pK], phys[%pK], dma_buf[%pK]\n",
  6553. __func__,
  6554. port->buf[0].data,
  6555. &port->buf[0].phys,
  6556. port->buf[0].dma_buf);
  6557. msm_audio_ion_free(port->buf[0].dma_buf);
  6558. port->buf[0].dma_buf = NULL;
  6559. }
  6560. while (cnt >= 0) {
  6561. port->buf[cnt].data = NULL;
  6562. port->buf[cnt].phys = 0;
  6563. cnt--;
  6564. }
  6565. port->max_buf_cnt = 0;
  6566. kfree(port->buf);
  6567. port->buf = NULL;
  6568. mutex_unlock(&ac->cmd_lock);
  6569. return 0;
  6570. }
  6571. EXPORT_SYMBOL(q6afe_audio_client_buf_free_contiguous);
  6572. /**
  6573. * q6afe_audio_client_free -
  6574. * frees the audio client from AFE
  6575. *
  6576. * @ac: AFE audio client handle
  6577. *
  6578. */
  6579. void q6afe_audio_client_free(struct afe_audio_client *ac)
  6580. {
  6581. int loopcnt;
  6582. struct afe_audio_port_data *port;
  6583. if (!ac) {
  6584. pr_err("%s: audio client is NULL\n", __func__);
  6585. return;
  6586. }
  6587. for (loopcnt = 0; loopcnt <= OUT; loopcnt++) {
  6588. port = &ac->port[loopcnt];
  6589. if (!port->buf)
  6590. continue;
  6591. pr_debug("%s: loopcnt = %d\n", __func__, loopcnt);
  6592. q6afe_audio_client_buf_free_contiguous(loopcnt, ac);
  6593. }
  6594. kfree(ac);
  6595. }
  6596. EXPORT_SYMBOL(q6afe_audio_client_free);
  6597. /**
  6598. * afe_cmd_memory_unmap -
  6599. * command to unmap memory for AFE shared buffer
  6600. *
  6601. * @mem_map_handle: memory map handle to be unmapped
  6602. *
  6603. * Returns 0 on success or error on failure
  6604. */
  6605. int afe_cmd_memory_unmap(u32 mem_map_handle)
  6606. {
  6607. int ret = 0;
  6608. struct afe_service_cmd_shared_mem_unmap_regions mregion;
  6609. int index = 0;
  6610. pr_debug("%s: handle 0x%x\n", __func__, mem_map_handle);
  6611. if (this_afe.apr == NULL) {
  6612. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6613. 0xFFFFFFFF, &this_afe);
  6614. pr_debug("%s: Register AFE\n", __func__);
  6615. if (this_afe.apr == NULL) {
  6616. pr_err("%s: Unable to register AFE\n", __func__);
  6617. ret = -ENODEV;
  6618. return ret;
  6619. }
  6620. rtac_set_afe_handle(this_afe.apr);
  6621. }
  6622. mregion.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6623. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6624. mregion.hdr.pkt_size = sizeof(mregion);
  6625. mregion.hdr.src_port = 0;
  6626. mregion.hdr.dest_port = 0;
  6627. mregion.hdr.token = 0;
  6628. mregion.hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS;
  6629. mregion.mem_map_handle = mem_map_handle;
  6630. /* Todo */
  6631. index = mregion.hdr.token = IDX_RSVD_2;
  6632. atomic_set(&this_afe.status, 0);
  6633. ret = afe_apr_send_pkt(&mregion, &this_afe.wait[index]);
  6634. if (ret)
  6635. pr_err("%s: AFE memory unmap cmd failed %d\n",
  6636. __func__, ret);
  6637. return ret;
  6638. }
  6639. EXPORT_SYMBOL(afe_cmd_memory_unmap);
  6640. int afe_cmd_memory_unmap_nowait(u32 mem_map_handle)
  6641. {
  6642. int ret = 0;
  6643. struct afe_service_cmd_shared_mem_unmap_regions mregion;
  6644. pr_debug("%s: handle 0x%x\n", __func__, mem_map_handle);
  6645. if (this_afe.apr == NULL) {
  6646. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6647. 0xFFFFFFFF, &this_afe);
  6648. pr_debug("%s: Register AFE\n", __func__);
  6649. if (this_afe.apr == NULL) {
  6650. pr_err("%s: Unable to register AFE\n", __func__);
  6651. ret = -ENODEV;
  6652. return ret;
  6653. }
  6654. rtac_set_afe_handle(this_afe.apr);
  6655. }
  6656. mregion.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6657. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6658. mregion.hdr.pkt_size = sizeof(mregion);
  6659. mregion.hdr.src_port = 0;
  6660. mregion.hdr.dest_port = 0;
  6661. mregion.hdr.token = 0;
  6662. mregion.hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS;
  6663. mregion.mem_map_handle = mem_map_handle;
  6664. ret = afe_apr_send_pkt(&mregion, NULL);
  6665. if (ret)
  6666. pr_err("%s: AFE memory unmap cmd failed %d\n",
  6667. __func__, ret);
  6668. return ret;
  6669. }
  6670. /**
  6671. * afe_register_get_events -
  6672. * register for events from proxy port
  6673. *
  6674. * @port_id: Port ID to register events
  6675. * @cb: callback function to invoke for events from proxy port
  6676. * @private_data: private data to sent back in callback fn
  6677. *
  6678. * Returns 0 on success or error on failure
  6679. */
  6680. int afe_register_get_events(u16 port_id,
  6681. void (*cb)(uint32_t opcode,
  6682. uint32_t token, uint32_t *payload, void *priv),
  6683. void *private_data)
  6684. {
  6685. int ret = 0;
  6686. struct afe_service_cmd_register_rt_port_driver rtproxy;
  6687. pr_debug("%s: port_id: 0x%x\n", __func__, port_id);
  6688. if (this_afe.apr == NULL) {
  6689. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6690. 0xFFFFFFFF, &this_afe);
  6691. pr_debug("%s: Register AFE\n", __func__);
  6692. if (this_afe.apr == NULL) {
  6693. pr_err("%s: Unable to register AFE\n", __func__);
  6694. ret = -ENODEV;
  6695. return ret;
  6696. }
  6697. rtac_set_afe_handle(this_afe.apr);
  6698. }
  6699. if ((port_id == RT_PROXY_DAI_002_RX) ||
  6700. (port_id == RT_PROXY_DAI_001_TX) ||
  6701. (port_id == RT_PROXY_DAI_003_TX)) {
  6702. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  6703. } else {
  6704. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  6705. return -EINVAL;
  6706. }
  6707. if (port_id == RT_PROXY_PORT_001_TX) {
  6708. this_afe.tx_cb = cb;
  6709. this_afe.tx_private_data = private_data;
  6710. } else if (port_id == RT_PROXY_PORT_001_RX ||
  6711. port_id == RT_PROXY_PORT_002_RX) {
  6712. this_afe.rx_cb = cb;
  6713. this_afe.rx_private_data[PORTID_TO_IDX(port_id)] = private_data;
  6714. }
  6715. rtproxy.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6716. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6717. rtproxy.hdr.pkt_size = sizeof(rtproxy);
  6718. rtproxy.hdr.src_port = 1;
  6719. rtproxy.hdr.dest_port = 1;
  6720. rtproxy.hdr.opcode = AFE_SERVICE_CMD_REGISTER_RT_PORT_DRIVER;
  6721. rtproxy.port_id = port_id;
  6722. rtproxy.reserved = 0;
  6723. ret = afe_apr_send_pkt(&rtproxy, NULL);
  6724. if (ret)
  6725. pr_err("%s: AFE reg. rtproxy_event failed %d\n",
  6726. __func__, ret);
  6727. return ret;
  6728. }
  6729. EXPORT_SYMBOL(afe_register_get_events);
  6730. /**
  6731. * afe_unregister_get_events -
  6732. * unregister for events from proxy port
  6733. *
  6734. * @port_id: Port ID to unregister events
  6735. *
  6736. * Returns 0 on success or error on failure
  6737. */
  6738. int afe_unregister_get_events(u16 port_id)
  6739. {
  6740. int ret = 0;
  6741. struct afe_service_cmd_unregister_rt_port_driver rtproxy;
  6742. int index = 0;
  6743. uint16_t i = 0;
  6744. pr_debug("%s:\n", __func__);
  6745. if (this_afe.apr == NULL) {
  6746. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6747. 0xFFFFFFFF, &this_afe);
  6748. pr_debug("%s: Register AFE\n", __func__);
  6749. if (this_afe.apr == NULL) {
  6750. pr_err("%s: Unable to register AFE\n", __func__);
  6751. ret = -ENODEV;
  6752. return ret;
  6753. }
  6754. rtac_set_afe_handle(this_afe.apr);
  6755. }
  6756. if ((port_id == RT_PROXY_DAI_002_RX) ||
  6757. (port_id == RT_PROXY_DAI_001_TX) ||
  6758. (port_id == RT_PROXY_DAI_003_TX)) {
  6759. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  6760. } else {
  6761. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  6762. return -EINVAL;
  6763. }
  6764. index = q6audio_get_port_index(port_id);
  6765. if (index < 0 || index >= AFE_MAX_PORTS) {
  6766. pr_err("%s: AFE port index[%d] invalid!\n",
  6767. __func__, index);
  6768. return -EINVAL;
  6769. }
  6770. ret = q6audio_validate_port(port_id);
  6771. if (ret < 0) {
  6772. pr_err("%s: Invalid port 0x%x ret %d", __func__, port_id, ret);
  6773. return -EINVAL;
  6774. }
  6775. rtproxy.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6776. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6777. rtproxy.hdr.pkt_size = sizeof(rtproxy);
  6778. rtproxy.hdr.src_port = 0;
  6779. rtproxy.hdr.dest_port = 0;
  6780. rtproxy.hdr.token = 0;
  6781. rtproxy.hdr.opcode = AFE_SERVICE_CMD_UNREGISTER_RT_PORT_DRIVER;
  6782. rtproxy.port_id = port_id;
  6783. rtproxy.reserved = 0;
  6784. rtproxy.hdr.token = index;
  6785. if (port_id == RT_PROXY_PORT_001_TX) {
  6786. this_afe.tx_cb = NULL;
  6787. this_afe.tx_private_data = NULL;
  6788. } else if (port_id == RT_PROXY_PORT_001_RX ||
  6789. port_id == RT_PROXY_PORT_002_RX) {
  6790. this_afe.rx_private_data[PORTID_TO_IDX(port_id)] = NULL;
  6791. for (i = 0; i < NUM_RX_PROXY_PORTS; i++) {
  6792. if (this_afe.rx_private_data[i] != NULL)
  6793. break;
  6794. }
  6795. if (i == NUM_RX_PROXY_PORTS)
  6796. this_afe.rx_cb = NULL;
  6797. }
  6798. ret = afe_apr_send_pkt(&rtproxy, &this_afe.wait[index]);
  6799. if (ret)
  6800. pr_err("%s: AFE enable Unreg. rtproxy_event failed %d\n",
  6801. __func__, ret);
  6802. return ret;
  6803. }
  6804. EXPORT_SYMBOL(afe_unregister_get_events);
  6805. /**
  6806. * afe_rt_proxy_port_write -
  6807. * command for AFE RT proxy port write
  6808. *
  6809. * @buf_addr_p: Physical buffer address with
  6810. * playback data to proxy port
  6811. * @mem_map_handle: memory map handle of write buffer
  6812. * @bytes: number of bytes to write
  6813. *
  6814. * Returns 0 on success or error on failure
  6815. */
  6816. int afe_rt_proxy_port_write(phys_addr_t buf_addr_p,
  6817. u32 mem_map_handle, int bytes)
  6818. {
  6819. int ret = 0;
  6820. struct afe_port_data_cmd_rt_proxy_port_write_v2 afecmd_wr;
  6821. if (this_afe.apr == NULL) {
  6822. pr_err("%s: register to AFE is not done\n", __func__);
  6823. ret = -ENODEV;
  6824. return ret;
  6825. }
  6826. pr_debug("%s: buf_addr_p = 0x%pK bytes = %d\n", __func__,
  6827. &buf_addr_p, bytes);
  6828. afecmd_wr.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6829. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6830. afecmd_wr.hdr.pkt_size = sizeof(afecmd_wr);
  6831. afecmd_wr.hdr.src_port = 0;
  6832. afecmd_wr.hdr.dest_port = 0;
  6833. afecmd_wr.hdr.token = 0;
  6834. afecmd_wr.hdr.opcode = AFE_PORT_DATA_CMD_RT_PROXY_PORT_WRITE_V2;
  6835. afecmd_wr.port_id = RT_PROXY_PORT_001_TX;
  6836. afecmd_wr.buffer_address_lsw = lower_32_bits(buf_addr_p);
  6837. afecmd_wr.buffer_address_msw =
  6838. msm_audio_populate_upper_32_bits(buf_addr_p);
  6839. afecmd_wr.mem_map_handle = mem_map_handle;
  6840. afecmd_wr.available_bytes = bytes;
  6841. afecmd_wr.reserved = 0;
  6842. /*
  6843. * Do not call afe_apr_send_pkt() here as it acquires
  6844. * a mutex lock inside and this function gets called in
  6845. * interrupt context leading to scheduler crash
  6846. */
  6847. atomic_set(&this_afe.status, 0);
  6848. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &afecmd_wr);
  6849. if (ret < 0) {
  6850. pr_err("%s: AFE rtproxy write to port 0x%x failed %d\n",
  6851. __func__, afecmd_wr.port_id, ret);
  6852. ret = -EINVAL;
  6853. }
  6854. return ret;
  6855. }
  6856. EXPORT_SYMBOL(afe_rt_proxy_port_write);
  6857. /**
  6858. * afe_rt_proxy_port_read -
  6859. * command for AFE RT proxy port read
  6860. *
  6861. * @buf_addr_p: Physical buffer address to fill read data
  6862. * @mem_map_handle: memory map handle for buffer read
  6863. * @bytes: number of bytes to read
  6864. * @id: afe virtual port id
  6865. *
  6866. * Returns 0 on success or error on failure
  6867. */
  6868. int afe_rt_proxy_port_read(phys_addr_t buf_addr_p,
  6869. u32 mem_map_handle, int bytes, int id)
  6870. {
  6871. int ret = 0;
  6872. struct afe_port_data_cmd_rt_proxy_port_read_v2 afecmd_rd;
  6873. int port_id = VIRTUAL_ID_TO_PORTID(id);
  6874. if (this_afe.apr == NULL) {
  6875. pr_err("%s: register to AFE is not done\n", __func__);
  6876. ret = -ENODEV;
  6877. return ret;
  6878. }
  6879. pr_debug("%s: buf_addr_p = 0x%pK bytes = %d\n", __func__,
  6880. &buf_addr_p, bytes);
  6881. afecmd_rd.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6882. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6883. afecmd_rd.hdr.pkt_size = sizeof(afecmd_rd);
  6884. afecmd_rd.hdr.src_port = 0;
  6885. afecmd_rd.hdr.dest_port = port_id;
  6886. afecmd_rd.hdr.token = 0;
  6887. afecmd_rd.hdr.opcode = AFE_PORT_DATA_CMD_RT_PROXY_PORT_READ_V2;
  6888. afecmd_rd.port_id = port_id;
  6889. afecmd_rd.buffer_address_lsw = lower_32_bits(buf_addr_p);
  6890. afecmd_rd.buffer_address_msw =
  6891. msm_audio_populate_upper_32_bits(buf_addr_p);
  6892. afecmd_rd.available_bytes = bytes;
  6893. afecmd_rd.mem_map_handle = mem_map_handle;
  6894. /*
  6895. * Do not call afe_apr_send_pkt() here as it acquires
  6896. * a mutex lock inside and this function gets called in
  6897. * interrupt context leading to scheduler crash
  6898. */
  6899. atomic_set(&this_afe.status, 0);
  6900. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &afecmd_rd);
  6901. if (ret < 0) {
  6902. pr_err("%s: AFE rtproxy read cmd to port 0x%x failed %d\n",
  6903. __func__, afecmd_rd.port_id, ret);
  6904. ret = -EINVAL;
  6905. }
  6906. return ret;
  6907. }
  6908. EXPORT_SYMBOL(afe_rt_proxy_port_read);
  6909. #ifdef CONFIG_DEBUG_FS
  6910. static struct dentry *debugfs_afelb;
  6911. static struct dentry *debugfs_afelb_gain;
  6912. static int afe_debug_open(struct inode *inode, struct file *file)
  6913. {
  6914. file->private_data = inode->i_private;
  6915. pr_info("%s: debug intf %s\n", __func__, (char *) file->private_data);
  6916. return 0;
  6917. }
  6918. static int afe_get_parameters(char *buf, long int *param1, int num_of_par)
  6919. {
  6920. char *token;
  6921. int base, cnt;
  6922. token = strsep(&buf, " ");
  6923. for (cnt = 0; cnt < num_of_par; cnt++) {
  6924. if (token != NULL) {
  6925. if ((token[1] == 'x') || (token[1] == 'X'))
  6926. base = 16;
  6927. else
  6928. base = 10;
  6929. if (kstrtoul(token, base, &param1[cnt]) != 0) {
  6930. pr_err("%s: kstrtoul failed\n",
  6931. __func__);
  6932. return -EINVAL;
  6933. }
  6934. token = strsep(&buf, " ");
  6935. } else {
  6936. pr_err("%s: token NULL\n", __func__);
  6937. return -EINVAL;
  6938. }
  6939. }
  6940. return 0;
  6941. }
  6942. #define AFE_LOOPBACK_ON (1)
  6943. #define AFE_LOOPBACK_OFF (0)
  6944. static ssize_t afe_debug_write(struct file *filp,
  6945. const char __user *ubuf, size_t cnt, loff_t *ppos)
  6946. {
  6947. char *lb_str = filp->private_data;
  6948. char lbuf[32];
  6949. int rc;
  6950. unsigned long param[5];
  6951. if (cnt > sizeof(lbuf) - 1) {
  6952. pr_err("%s: cnt %zd size %zd\n", __func__, cnt, sizeof(lbuf)-1);
  6953. return -EINVAL;
  6954. }
  6955. rc = copy_from_user(lbuf, ubuf, cnt);
  6956. if (rc) {
  6957. pr_err("%s: copy from user failed %d\n", __func__, rc);
  6958. return -EFAULT;
  6959. }
  6960. lbuf[cnt] = '\0';
  6961. if (!strcmp(lb_str, "afe_loopback")) {
  6962. rc = afe_get_parameters(lbuf, param, 3);
  6963. if (!rc) {
  6964. pr_info("%s: %lu %lu %lu\n", lb_str, param[0], param[1],
  6965. param[2]);
  6966. if ((param[0] != AFE_LOOPBACK_ON) && (param[0] !=
  6967. AFE_LOOPBACK_OFF)) {
  6968. pr_err("%s: Error, parameter 0 incorrect\n",
  6969. __func__);
  6970. rc = -EINVAL;
  6971. goto afe_error;
  6972. }
  6973. if ((q6audio_validate_port(param[1]) < 0) ||
  6974. (q6audio_validate_port(param[2])) < 0) {
  6975. pr_err("%s: Error, invalid afe port\n",
  6976. __func__);
  6977. }
  6978. if (this_afe.apr == NULL) {
  6979. pr_err("%s: Error, AFE not opened\n", __func__);
  6980. rc = -EINVAL;
  6981. } else {
  6982. rc = afe_loopback(param[0], param[1], param[2]);
  6983. }
  6984. } else {
  6985. pr_err("%s: Error, invalid parameters\n", __func__);
  6986. rc = -EINVAL;
  6987. }
  6988. } else if (!strcmp(lb_str, "afe_loopback_gain")) {
  6989. rc = afe_get_parameters(lbuf, param, 2);
  6990. if (!rc) {
  6991. pr_info("%s: %s %lu %lu\n",
  6992. __func__, lb_str, param[0], param[1]);
  6993. rc = q6audio_validate_port(param[0]);
  6994. if (rc < 0) {
  6995. pr_err("%s: Error, invalid afe port %d %lu\n",
  6996. __func__, rc, param[0]);
  6997. rc = -EINVAL;
  6998. goto afe_error;
  6999. }
  7000. if (param[1] > 100) {
  7001. pr_err("%s: Error, volume should be 0 to 100 percentage param = %lu\n",
  7002. __func__, param[1]);
  7003. rc = -EINVAL;
  7004. goto afe_error;
  7005. }
  7006. param[1] = (Q6AFE_MAX_VOLUME * param[1]) / 100;
  7007. if (this_afe.apr == NULL) {
  7008. pr_err("%s: Error, AFE not opened\n", __func__);
  7009. rc = -EINVAL;
  7010. } else {
  7011. rc = afe_loopback_gain(param[0], param[1]);
  7012. }
  7013. } else {
  7014. pr_err("%s: Error, invalid parameters\n", __func__);
  7015. rc = -EINVAL;
  7016. }
  7017. }
  7018. afe_error:
  7019. if (rc == 0)
  7020. rc = cnt;
  7021. else
  7022. pr_err("%s: rc = %d\n", __func__, rc);
  7023. return rc;
  7024. }
  7025. static const struct file_operations afe_debug_fops = {
  7026. .open = afe_debug_open,
  7027. .write = afe_debug_write
  7028. };
  7029. static void config_debug_fs_init(void)
  7030. {
  7031. debugfs_afelb = debugfs_create_file("afe_loopback",
  7032. 0664, NULL, (void *) "afe_loopback",
  7033. &afe_debug_fops);
  7034. debugfs_afelb_gain = debugfs_create_file("afe_loopback_gain",
  7035. 0664, NULL, (void *) "afe_loopback_gain",
  7036. &afe_debug_fops);
  7037. }
  7038. static void config_debug_fs_exit(void)
  7039. {
  7040. debugfs_remove(debugfs_afelb);
  7041. debugfs_remove(debugfs_afelb_gain);
  7042. }
  7043. #else
  7044. static void config_debug_fs_init(void)
  7045. {
  7046. }
  7047. static void config_debug_fs_exit(void)
  7048. {
  7049. }
  7050. #endif
  7051. /**
  7052. * afe_set_dtmf_gen_rx_portid -
  7053. * Set port_id for DTMF tone generation
  7054. *
  7055. * @port_id: AFE port id
  7056. * @set: set or reset port id value for dtmf gen
  7057. *
  7058. */
  7059. void afe_set_dtmf_gen_rx_portid(u16 port_id, int set)
  7060. {
  7061. if (set)
  7062. this_afe.dtmf_gen_rx_portid = port_id;
  7063. else if (this_afe.dtmf_gen_rx_portid == port_id)
  7064. this_afe.dtmf_gen_rx_portid = -1;
  7065. }
  7066. EXPORT_SYMBOL(afe_set_dtmf_gen_rx_portid);
  7067. /**
  7068. * afe_dtmf_generate_rx - command to generate AFE DTMF RX
  7069. *
  7070. * @duration_in_ms: Duration in ms for dtmf tone
  7071. * @high_freq: Higher frequency for dtmf
  7072. * @low_freq: lower frequency for dtmf
  7073. * @gain: Gain value for DTMF tone
  7074. *
  7075. * Returns 0 on success, appropriate error code otherwise
  7076. */
  7077. int afe_dtmf_generate_rx(int64_t duration_in_ms,
  7078. uint16_t high_freq,
  7079. uint16_t low_freq, uint16_t gain)
  7080. {
  7081. int ret = 0;
  7082. int index = 0;
  7083. struct afe_dtmf_generation_command cmd_dtmf;
  7084. pr_debug("%s: DTMF AFE Gen\n", __func__);
  7085. if (afe_validate_port(this_afe.dtmf_gen_rx_portid) < 0) {
  7086. pr_err("%s: Failed : Invalid Port id = 0x%x\n",
  7087. __func__, this_afe.dtmf_gen_rx_portid);
  7088. ret = -EINVAL;
  7089. goto fail_cmd;
  7090. }
  7091. if (this_afe.apr == NULL) {
  7092. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  7093. 0xFFFFFFFF, &this_afe);
  7094. pr_debug("%s: Register AFE\n", __func__);
  7095. if (this_afe.apr == NULL) {
  7096. pr_err("%s: Unable to register AFE\n", __func__);
  7097. ret = -ENODEV;
  7098. return ret;
  7099. }
  7100. rtac_set_afe_handle(this_afe.apr);
  7101. }
  7102. pr_debug("%s: dur=%lld: hfreq=%d lfreq=%d gain=%d portid=0x%x\n",
  7103. __func__,
  7104. duration_in_ms, high_freq, low_freq, gain,
  7105. this_afe.dtmf_gen_rx_portid);
  7106. cmd_dtmf.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  7107. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  7108. cmd_dtmf.hdr.pkt_size = sizeof(cmd_dtmf);
  7109. cmd_dtmf.hdr.src_port = 0;
  7110. cmd_dtmf.hdr.dest_port = 0;
  7111. cmd_dtmf.hdr.token = 0;
  7112. cmd_dtmf.hdr.opcode = AFE_PORTS_CMD_DTMF_CTL;
  7113. cmd_dtmf.duration_in_ms = duration_in_ms;
  7114. cmd_dtmf.high_freq = high_freq;
  7115. cmd_dtmf.low_freq = low_freq;
  7116. cmd_dtmf.gain = gain;
  7117. cmd_dtmf.num_ports = 1;
  7118. cmd_dtmf.port_ids = q6audio_get_port_id(this_afe.dtmf_gen_rx_portid);
  7119. index = q6audio_get_port_index(this_afe.dtmf_gen_rx_portid);
  7120. if (index < 0 || index >= AFE_MAX_PORTS) {
  7121. pr_err("%s: AFE port index[%d] invalid!\n",
  7122. __func__, index);
  7123. ret = -EINVAL;
  7124. goto fail_cmd;
  7125. }
  7126. ret = afe_apr_send_pkt((uint32_t *) &cmd_dtmf,
  7127. &this_afe.wait[index]);
  7128. return ret;
  7129. fail_cmd:
  7130. pr_err("%s: failed %d\n", __func__, ret);
  7131. return ret;
  7132. }
  7133. EXPORT_SYMBOL(afe_dtmf_generate_rx);
  7134. static int afe_sidetone_iir(u16 tx_port_id)
  7135. {
  7136. int ret;
  7137. uint16_t size = 0;
  7138. int cal_index = AFE_SIDETONE_IIR_CAL;
  7139. int iir_pregain = 0;
  7140. int iir_num_biquad_stages = 0;
  7141. int iir_enable;
  7142. struct cal_block_data *cal_block;
  7143. int mid;
  7144. struct afe_mod_enable_param enable;
  7145. struct afe_sidetone_iir_filter_config_params filter_data;
  7146. struct param_hdr_v3 param_hdr;
  7147. u8 *packed_param_data = NULL;
  7148. u32 packed_param_size = 0;
  7149. u32 single_param_size = 0;
  7150. struct audio_cal_info_sidetone_iir *st_iir_cal_info = NULL;
  7151. memset(&enable, 0, sizeof(enable));
  7152. memset(&filter_data, 0, sizeof(filter_data));
  7153. memset(&param_hdr, 0, sizeof(param_hdr));
  7154. if (this_afe.cal_data[cal_index] == NULL) {
  7155. pr_err("%s: cal data is NULL\n", __func__);
  7156. ret = -EINVAL;
  7157. goto done;
  7158. }
  7159. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  7160. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  7161. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  7162. pr_err("%s: cal_block not found\n ", __func__);
  7163. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  7164. ret = -EINVAL;
  7165. goto done;
  7166. }
  7167. /* Cache data from cal block while inside lock to reduce locked time */
  7168. st_iir_cal_info =
  7169. (struct audio_cal_info_sidetone_iir *) cal_block->cal_info;
  7170. iir_pregain = st_iir_cal_info->pregain;
  7171. iir_enable = st_iir_cal_info->iir_enable;
  7172. iir_num_biquad_stages = st_iir_cal_info->num_biquad_stages;
  7173. mid = st_iir_cal_info->mid;
  7174. /*
  7175. * calculate the actual size of payload based on no of stages
  7176. * enabled in calibration
  7177. */
  7178. size = (MAX_SIDETONE_IIR_DATA_SIZE / MAX_NO_IIR_FILTER_STAGE) *
  7179. iir_num_biquad_stages;
  7180. /*
  7181. * For an odd number of stages, 2 bytes of padding are
  7182. * required at the end of the payload.
  7183. */
  7184. if (iir_num_biquad_stages % 2) {
  7185. pr_debug("%s: adding 2 to size:%d\n", __func__, size);
  7186. size = size + 2;
  7187. }
  7188. memcpy(&filter_data.iir_config, &st_iir_cal_info->iir_config, size);
  7189. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  7190. packed_param_size =
  7191. sizeof(param_hdr) * 2 + sizeof(enable) + sizeof(filter_data);
  7192. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  7193. if (!packed_param_data)
  7194. return -ENOMEM;
  7195. packed_param_size = 0;
  7196. /*
  7197. * Set IIR enable params
  7198. */
  7199. param_hdr.module_id = mid;
  7200. param_hdr.instance_id = INSTANCE_ID_0;
  7201. param_hdr.param_id = AFE_PARAM_ID_ENABLE;
  7202. param_hdr.param_size = sizeof(enable);
  7203. enable.enable = iir_enable;
  7204. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  7205. (u8 *) &enable, &single_param_size);
  7206. if (ret) {
  7207. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  7208. ret);
  7209. goto done;
  7210. }
  7211. packed_param_size += single_param_size;
  7212. /*
  7213. * Set IIR filter config params
  7214. */
  7215. param_hdr.module_id = mid;
  7216. param_hdr.instance_id = INSTANCE_ID_0;
  7217. param_hdr.param_id = AFE_PARAM_ID_SIDETONE_IIR_FILTER_CONFIG;
  7218. param_hdr.param_size = sizeof(filter_data.num_biquad_stages) +
  7219. sizeof(filter_data.pregain) + size;
  7220. filter_data.num_biquad_stages = iir_num_biquad_stages;
  7221. filter_data.pregain = iir_pregain;
  7222. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  7223. &param_hdr, (u8 *) &filter_data,
  7224. &single_param_size);
  7225. if (ret) {
  7226. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  7227. ret);
  7228. goto done;
  7229. }
  7230. packed_param_size += single_param_size;
  7231. pr_debug("%s: tx(0x%x)mid(0x%x)iir_en(%d)stg(%d)gain(0x%x)size(%d)\n",
  7232. __func__, tx_port_id, mid, enable.enable,
  7233. filter_data.num_biquad_stages, filter_data.pregain,
  7234. param_hdr.param_size);
  7235. ret = q6afe_set_params(tx_port_id, q6audio_get_port_index(tx_port_id),
  7236. NULL, packed_param_data, packed_param_size);
  7237. if (ret)
  7238. pr_err("%s: AFE sidetone failed for tx_port(0x%x)\n",
  7239. __func__, tx_port_id);
  7240. done:
  7241. kfree(packed_param_data);
  7242. return ret;
  7243. }
  7244. static int afe_sidetone(u16 tx_port_id, u16 rx_port_id, bool enable)
  7245. {
  7246. int ret;
  7247. int cal_index = AFE_SIDETONE_CAL;
  7248. int sidetone_gain;
  7249. int sidetone_enable;
  7250. struct cal_block_data *cal_block;
  7251. int mid = 0;
  7252. struct afe_loopback_sidetone_gain gain_data;
  7253. struct loopback_cfg_data cfg_data;
  7254. struct param_hdr_v3 param_hdr;
  7255. u8 *packed_param_data = NULL;
  7256. u32 packed_param_size = 0;
  7257. u32 single_param_size = 0;
  7258. struct audio_cal_info_sidetone *st_cal_info = NULL;
  7259. if (this_afe.cal_data[cal_index] == NULL) {
  7260. pr_err("%s: cal data is NULL\n", __func__);
  7261. ret = -EINVAL;
  7262. goto done;
  7263. }
  7264. memset(&gain_data, 0, sizeof(gain_data));
  7265. memset(&cfg_data, 0, sizeof(cfg_data));
  7266. memset(&param_hdr, 0, sizeof(param_hdr));
  7267. packed_param_size =
  7268. sizeof(param_hdr) * 2 + sizeof(gain_data) + sizeof(cfg_data);
  7269. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  7270. if (!packed_param_data)
  7271. return -ENOMEM;
  7272. packed_param_size = 0;
  7273. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  7274. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  7275. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  7276. pr_err("%s: cal_block not found\n", __func__);
  7277. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  7278. ret = -EINVAL;
  7279. goto done;
  7280. }
  7281. /* Cache data from cal block while inside lock to reduce locked time */
  7282. st_cal_info = (struct audio_cal_info_sidetone *) cal_block->cal_info;
  7283. sidetone_gain = st_cal_info->gain;
  7284. sidetone_enable = st_cal_info->enable;
  7285. mid = st_cal_info->mid;
  7286. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  7287. /* Set gain data. */
  7288. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  7289. param_hdr.instance_id = INSTANCE_ID_0;
  7290. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_GAIN_PER_PATH;
  7291. param_hdr.param_size = sizeof(struct afe_loopback_sidetone_gain);
  7292. gain_data.rx_port_id = rx_port_id;
  7293. gain_data.gain = sidetone_gain;
  7294. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  7295. (u8 *) &gain_data, &single_param_size);
  7296. if (ret) {
  7297. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  7298. ret);
  7299. goto done;
  7300. }
  7301. packed_param_size += single_param_size;
  7302. /* Set configuration data. */
  7303. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  7304. param_hdr.instance_id = INSTANCE_ID_0;
  7305. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_CONFIG;
  7306. param_hdr.param_size = sizeof(struct loopback_cfg_data);
  7307. cfg_data.loopback_cfg_minor_version = AFE_API_VERSION_LOOPBACK_CONFIG;
  7308. cfg_data.dst_port_id = rx_port_id;
  7309. cfg_data.routing_mode = LB_MODE_SIDETONE;
  7310. cfg_data.enable = enable;
  7311. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  7312. &param_hdr, (u8 *) &cfg_data,
  7313. &single_param_size);
  7314. if (ret) {
  7315. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  7316. ret);
  7317. goto done;
  7318. }
  7319. packed_param_size += single_param_size;
  7320. pr_debug("%s rx(0x%x) tx(0x%x) enable(%d) mid(0x%x) gain(%d) sidetone_enable(%d)\n",
  7321. __func__, rx_port_id, tx_port_id,
  7322. enable, mid, sidetone_gain, sidetone_enable);
  7323. ret = q6afe_set_params(tx_port_id, q6audio_get_port_index(tx_port_id),
  7324. NULL, packed_param_data, packed_param_size);
  7325. if (ret)
  7326. pr_err("%s: AFE sidetone send failed for tx_port:%d rx_port:%d ret:%d\n",
  7327. __func__, tx_port_id, rx_port_id, ret);
  7328. done:
  7329. kfree(packed_param_data);
  7330. return ret;
  7331. }
  7332. int afe_sidetone_enable(u16 tx_port_id, u16 rx_port_id, bool enable)
  7333. {
  7334. int ret;
  7335. int index;
  7336. index = q6audio_get_port_index(rx_port_id);
  7337. if (index < 0 || index >= AFE_MAX_PORTS) {
  7338. pr_err("%s: AFE port index[%d] invalid!\n",
  7339. __func__, index);
  7340. ret = -EINVAL;
  7341. goto done;
  7342. }
  7343. if (q6audio_validate_port(rx_port_id) < 0) {
  7344. pr_err("%s: Invalid port 0x%x\n",
  7345. __func__, rx_port_id);
  7346. ret = -EINVAL;
  7347. goto done;
  7348. }
  7349. index = q6audio_get_port_index(tx_port_id);
  7350. if (index < 0 || index >= AFE_MAX_PORTS) {
  7351. pr_err("%s: AFE port index[%d] invalid!\n",
  7352. __func__, index);
  7353. ret = -EINVAL;
  7354. goto done;
  7355. }
  7356. if (q6audio_validate_port(tx_port_id) < 0) {
  7357. pr_err("%s: Invalid port 0x%x\n",
  7358. __func__, tx_port_id);
  7359. ret = -EINVAL;
  7360. goto done;
  7361. }
  7362. if (enable) {
  7363. ret = afe_sidetone_iir(tx_port_id);
  7364. if (ret)
  7365. goto done;
  7366. }
  7367. ret = afe_sidetone(tx_port_id, rx_port_id, enable);
  7368. done:
  7369. return ret;
  7370. }
  7371. /**
  7372. * afe_set_display_stream - command to update AFE dp port params
  7373. *
  7374. * @rx_port_id: AFE port id
  7375. * @stream_idx: dp controller stream index
  7376. * @ctl_idx: dp controller index
  7377. *
  7378. * Returns 0 on success, appropriate error code otherwise
  7379. */
  7380. int afe_set_display_stream(u16 rx_port_id, u32 stream_idx, u32 ctl_idx)
  7381. {
  7382. int ret;
  7383. struct param_hdr_v3 param_hdr;
  7384. u32 packed_param_size = 0;
  7385. u8 *packed_param_data = NULL;
  7386. struct afe_display_stream_idx stream_data;
  7387. struct afe_display_ctl_idx ctl_data;
  7388. u32 single_param_size = 0;
  7389. memset(&param_hdr, 0, sizeof(param_hdr));
  7390. memset(&stream_data, 0, sizeof(stream_data));
  7391. memset(&ctl_data, 0, sizeof(ctl_data));
  7392. packed_param_size =
  7393. sizeof(param_hdr) * 2 + sizeof(stream_data) + sizeof(ctl_data);
  7394. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  7395. if (!packed_param_data)
  7396. return -ENOMEM;
  7397. packed_param_size = 0;
  7398. /* Set stream index */
  7399. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  7400. param_hdr.instance_id = INSTANCE_ID_0;
  7401. param_hdr.param_id = AFE_PARAM_ID_HDMI_DP_MST_VID_IDX_CFG;
  7402. param_hdr.param_size = sizeof(struct afe_display_stream_idx);
  7403. stream_data.minor_version = 1;
  7404. stream_data.stream_idx = stream_idx;
  7405. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  7406. (u8 *) &stream_data, &single_param_size);
  7407. if (ret) {
  7408. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  7409. ret);
  7410. goto done;
  7411. }
  7412. packed_param_size += single_param_size;
  7413. /* Set controller dptx index */
  7414. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  7415. param_hdr.instance_id = INSTANCE_ID_0;
  7416. param_hdr.param_id = AFE_PARAM_ID_HDMI_DPTX_IDX_CFG;
  7417. param_hdr.param_size = sizeof(struct afe_display_ctl_idx);
  7418. ctl_data.minor_version = 1;
  7419. ctl_data.ctl_idx = ctl_idx;
  7420. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  7421. &param_hdr, (u8 *) &ctl_data,
  7422. &single_param_size);
  7423. if (ret) {
  7424. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  7425. ret);
  7426. goto done;
  7427. }
  7428. packed_param_size += single_param_size;
  7429. pr_debug("%s: rx(0x%x) stream(%d) controller(%d)\n",
  7430. __func__, rx_port_id, stream_idx, ctl_idx);
  7431. ret = q6afe_set_params(rx_port_id, q6audio_get_port_index(rx_port_id),
  7432. NULL, packed_param_data, packed_param_size);
  7433. if (ret)
  7434. pr_err("%s: AFE display stream send failed for rx_port:%d ret:%d\n",
  7435. __func__, rx_port_id, ret);
  7436. done:
  7437. kfree(packed_param_data);
  7438. return ret;
  7439. }
  7440. EXPORT_SYMBOL(afe_set_display_stream);
  7441. int afe_validate_port(u16 port_id)
  7442. {
  7443. int ret;
  7444. switch (port_id) {
  7445. case PRIMARY_I2S_RX:
  7446. case PRIMARY_I2S_TX:
  7447. case AFE_PORT_ID_PRIMARY_PCM_RX:
  7448. case AFE_PORT_ID_PRIMARY_PCM_TX:
  7449. case AFE_PORT_ID_SECONDARY_PCM_RX:
  7450. case AFE_PORT_ID_SECONDARY_PCM_TX:
  7451. case AFE_PORT_ID_TERTIARY_PCM_RX:
  7452. case AFE_PORT_ID_TERTIARY_PCM_TX:
  7453. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  7454. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  7455. case AFE_PORT_ID_QUINARY_PCM_RX:
  7456. case AFE_PORT_ID_QUINARY_PCM_TX:
  7457. case AFE_PORT_ID_SENARY_PCM_RX:
  7458. case AFE_PORT_ID_SENARY_PCM_TX:
  7459. case SECONDARY_I2S_RX:
  7460. case SECONDARY_I2S_TX:
  7461. case MI2S_RX:
  7462. case MI2S_TX:
  7463. case HDMI_RX:
  7464. case HDMI_RX_MS:
  7465. case DISPLAY_PORT_RX:
  7466. case AFE_PORT_ID_PRIMARY_SPDIF_RX:
  7467. case AFE_PORT_ID_PRIMARY_SPDIF_TX:
  7468. case AFE_PORT_ID_SECONDARY_SPDIF_RX:
  7469. case AFE_PORT_ID_SECONDARY_SPDIF_TX:
  7470. case RSVD_2:
  7471. case RSVD_3:
  7472. case DIGI_MIC_TX:
  7473. case VOICE_RECORD_RX:
  7474. case VOICE_RECORD_TX:
  7475. case VOICE_PLAYBACK_TX:
  7476. case VOICE2_PLAYBACK_TX:
  7477. case SLIMBUS_0_RX:
  7478. case SLIMBUS_0_TX:
  7479. case SLIMBUS_1_RX:
  7480. case SLIMBUS_1_TX:
  7481. case SLIMBUS_2_RX:
  7482. case SLIMBUS_2_TX:
  7483. case SLIMBUS_3_RX:
  7484. case INT_BT_SCO_RX:
  7485. case INT_BT_SCO_TX:
  7486. case INT_BT_A2DP_RX:
  7487. case INT_FM_RX:
  7488. case INT_FM_TX:
  7489. case RT_PROXY_PORT_001_RX:
  7490. case RT_PROXY_PORT_001_TX:
  7491. case SLIMBUS_4_RX:
  7492. case SLIMBUS_4_TX:
  7493. case SLIMBUS_5_RX:
  7494. case SLIMBUS_6_RX:
  7495. case SLIMBUS_6_TX:
  7496. case SLIMBUS_7_RX:
  7497. case SLIMBUS_7_TX:
  7498. case SLIMBUS_8_RX:
  7499. case SLIMBUS_8_TX:
  7500. case SLIMBUS_9_RX:
  7501. case SLIMBUS_9_TX:
  7502. case AFE_PORT_ID_USB_RX:
  7503. case AFE_PORT_ID_USB_TX:
  7504. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  7505. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  7506. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  7507. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  7508. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  7509. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  7510. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  7511. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  7512. case AFE_PORT_ID_QUINARY_MI2S_RX:
  7513. case AFE_PORT_ID_QUINARY_MI2S_TX:
  7514. case AFE_PORT_ID_SENARY_MI2S_RX:
  7515. case AFE_PORT_ID_SENARY_MI2S_TX:
  7516. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  7517. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  7518. case AFE_PORT_ID_PRIMARY_TDM_RX:
  7519. case AFE_PORT_ID_PRIMARY_TDM_TX:
  7520. case AFE_PORT_ID_PRIMARY_TDM_RX_1:
  7521. case AFE_PORT_ID_PRIMARY_TDM_TX_1:
  7522. case AFE_PORT_ID_PRIMARY_TDM_RX_2:
  7523. case AFE_PORT_ID_PRIMARY_TDM_TX_2:
  7524. case AFE_PORT_ID_PRIMARY_TDM_RX_3:
  7525. case AFE_PORT_ID_PRIMARY_TDM_TX_3:
  7526. case AFE_PORT_ID_PRIMARY_TDM_RX_4:
  7527. case AFE_PORT_ID_PRIMARY_TDM_TX_4:
  7528. case AFE_PORT_ID_PRIMARY_TDM_RX_5:
  7529. case AFE_PORT_ID_PRIMARY_TDM_TX_5:
  7530. case AFE_PORT_ID_PRIMARY_TDM_RX_6:
  7531. case AFE_PORT_ID_PRIMARY_TDM_TX_6:
  7532. case AFE_PORT_ID_PRIMARY_TDM_RX_7:
  7533. case AFE_PORT_ID_PRIMARY_TDM_TX_7:
  7534. case AFE_PORT_ID_SECONDARY_TDM_RX:
  7535. case AFE_PORT_ID_SECONDARY_TDM_TX:
  7536. case AFE_PORT_ID_SECONDARY_TDM_RX_1:
  7537. case AFE_PORT_ID_SECONDARY_TDM_TX_1:
  7538. case AFE_PORT_ID_SECONDARY_TDM_RX_2:
  7539. case AFE_PORT_ID_SECONDARY_TDM_TX_2:
  7540. case AFE_PORT_ID_SECONDARY_TDM_RX_3:
  7541. case AFE_PORT_ID_SECONDARY_TDM_TX_3:
  7542. case AFE_PORT_ID_SECONDARY_TDM_RX_4:
  7543. case AFE_PORT_ID_SECONDARY_TDM_TX_4:
  7544. case AFE_PORT_ID_SECONDARY_TDM_RX_5:
  7545. case AFE_PORT_ID_SECONDARY_TDM_TX_5:
  7546. case AFE_PORT_ID_SECONDARY_TDM_RX_6:
  7547. case AFE_PORT_ID_SECONDARY_TDM_TX_6:
  7548. case AFE_PORT_ID_SECONDARY_TDM_RX_7:
  7549. case AFE_PORT_ID_SECONDARY_TDM_TX_7:
  7550. case AFE_PORT_ID_TERTIARY_TDM_RX:
  7551. case AFE_PORT_ID_TERTIARY_TDM_TX:
  7552. case AFE_PORT_ID_TERTIARY_TDM_RX_1:
  7553. case AFE_PORT_ID_TERTIARY_TDM_TX_1:
  7554. case AFE_PORT_ID_TERTIARY_TDM_RX_2:
  7555. case AFE_PORT_ID_TERTIARY_TDM_TX_2:
  7556. case AFE_PORT_ID_TERTIARY_TDM_RX_3:
  7557. case AFE_PORT_ID_TERTIARY_TDM_TX_3:
  7558. case AFE_PORT_ID_TERTIARY_TDM_RX_4:
  7559. case AFE_PORT_ID_TERTIARY_TDM_TX_4:
  7560. case AFE_PORT_ID_TERTIARY_TDM_RX_5:
  7561. case AFE_PORT_ID_TERTIARY_TDM_TX_5:
  7562. case AFE_PORT_ID_TERTIARY_TDM_RX_6:
  7563. case AFE_PORT_ID_TERTIARY_TDM_TX_6:
  7564. case AFE_PORT_ID_TERTIARY_TDM_RX_7:
  7565. case AFE_PORT_ID_TERTIARY_TDM_TX_7:
  7566. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  7567. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  7568. case AFE_PORT_ID_QUATERNARY_TDM_RX_1:
  7569. case AFE_PORT_ID_QUATERNARY_TDM_TX_1:
  7570. case AFE_PORT_ID_QUATERNARY_TDM_RX_2:
  7571. case AFE_PORT_ID_QUATERNARY_TDM_TX_2:
  7572. case AFE_PORT_ID_QUATERNARY_TDM_RX_3:
  7573. case AFE_PORT_ID_QUATERNARY_TDM_TX_3:
  7574. case AFE_PORT_ID_QUATERNARY_TDM_RX_4:
  7575. case AFE_PORT_ID_QUATERNARY_TDM_TX_4:
  7576. case AFE_PORT_ID_QUATERNARY_TDM_RX_5:
  7577. case AFE_PORT_ID_QUATERNARY_TDM_TX_5:
  7578. case AFE_PORT_ID_QUATERNARY_TDM_RX_6:
  7579. case AFE_PORT_ID_QUATERNARY_TDM_TX_6:
  7580. case AFE_PORT_ID_QUATERNARY_TDM_RX_7:
  7581. case AFE_PORT_ID_QUATERNARY_TDM_TX_7:
  7582. case AFE_PORT_ID_QUINARY_TDM_RX:
  7583. case AFE_PORT_ID_QUINARY_TDM_TX:
  7584. case AFE_PORT_ID_QUINARY_TDM_RX_1:
  7585. case AFE_PORT_ID_QUINARY_TDM_TX_1:
  7586. case AFE_PORT_ID_QUINARY_TDM_RX_2:
  7587. case AFE_PORT_ID_QUINARY_TDM_TX_2:
  7588. case AFE_PORT_ID_QUINARY_TDM_RX_3:
  7589. case AFE_PORT_ID_QUINARY_TDM_TX_3:
  7590. case AFE_PORT_ID_QUINARY_TDM_RX_4:
  7591. case AFE_PORT_ID_QUINARY_TDM_TX_4:
  7592. case AFE_PORT_ID_QUINARY_TDM_RX_5:
  7593. case AFE_PORT_ID_QUINARY_TDM_TX_5:
  7594. case AFE_PORT_ID_QUINARY_TDM_RX_6:
  7595. case AFE_PORT_ID_QUINARY_TDM_TX_6:
  7596. case AFE_PORT_ID_QUINARY_TDM_RX_7:
  7597. case AFE_PORT_ID_QUINARY_TDM_TX_7:
  7598. case AFE_PORT_ID_SENARY_TDM_RX:
  7599. case AFE_PORT_ID_SENARY_TDM_TX:
  7600. case AFE_PORT_ID_SENARY_TDM_RX_1:
  7601. case AFE_PORT_ID_SENARY_TDM_TX_1:
  7602. case AFE_PORT_ID_SENARY_TDM_RX_2:
  7603. case AFE_PORT_ID_SENARY_TDM_TX_2:
  7604. case AFE_PORT_ID_SENARY_TDM_RX_3:
  7605. case AFE_PORT_ID_SENARY_TDM_TX_3:
  7606. case AFE_PORT_ID_SENARY_TDM_RX_4:
  7607. case AFE_PORT_ID_SENARY_TDM_TX_4:
  7608. case AFE_PORT_ID_SENARY_TDM_RX_5:
  7609. case AFE_PORT_ID_SENARY_TDM_TX_5:
  7610. case AFE_PORT_ID_SENARY_TDM_RX_6:
  7611. case AFE_PORT_ID_SENARY_TDM_TX_6:
  7612. case AFE_PORT_ID_SENARY_TDM_RX_7:
  7613. case AFE_PORT_ID_SENARY_TDM_TX_7:
  7614. case AFE_PORT_ID_INT0_MI2S_RX:
  7615. case AFE_PORT_ID_INT1_MI2S_RX:
  7616. case AFE_PORT_ID_INT2_MI2S_RX:
  7617. case AFE_PORT_ID_INT3_MI2S_RX:
  7618. case AFE_PORT_ID_INT4_MI2S_RX:
  7619. case AFE_PORT_ID_INT5_MI2S_RX:
  7620. case AFE_PORT_ID_INT6_MI2S_RX:
  7621. case AFE_PORT_ID_INT0_MI2S_TX:
  7622. case AFE_PORT_ID_INT1_MI2S_TX:
  7623. case AFE_PORT_ID_INT2_MI2S_TX:
  7624. case AFE_PORT_ID_INT3_MI2S_TX:
  7625. case AFE_PORT_ID_INT4_MI2S_TX:
  7626. case AFE_PORT_ID_INT5_MI2S_TX:
  7627. case AFE_PORT_ID_INT6_MI2S_TX:
  7628. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  7629. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  7630. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  7631. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  7632. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  7633. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  7634. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  7635. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  7636. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  7637. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  7638. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  7639. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  7640. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  7641. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  7642. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  7643. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  7644. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  7645. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  7646. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  7647. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  7648. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  7649. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  7650. case RT_PROXY_PORT_002_RX:
  7651. case RT_PROXY_PORT_002_TX:
  7652. {
  7653. ret = 0;
  7654. break;
  7655. }
  7656. default:
  7657. pr_err("%s: default ret 0x%x\n", __func__, port_id);
  7658. ret = -EINVAL;
  7659. }
  7660. return ret;
  7661. }
  7662. int afe_convert_virtual_to_portid(u16 port_id)
  7663. {
  7664. int ret;
  7665. /*
  7666. * if port_id is virtual, convert to physical..
  7667. * if port_id is already physical, return physical
  7668. */
  7669. if (afe_validate_port(port_id) < 0) {
  7670. if (port_id == RT_PROXY_DAI_001_RX ||
  7671. port_id == RT_PROXY_DAI_001_TX ||
  7672. port_id == RT_PROXY_DAI_002_RX ||
  7673. port_id == RT_PROXY_DAI_002_TX ||
  7674. port_id == RT_PROXY_DAI_003_TX) {
  7675. ret = VIRTUAL_ID_TO_PORTID(port_id);
  7676. } else {
  7677. pr_err("%s: wrong port 0x%x\n",
  7678. __func__, port_id);
  7679. ret = -EINVAL;
  7680. }
  7681. } else
  7682. ret = port_id;
  7683. return ret;
  7684. }
  7685. int afe_port_stop_nowait(int port_id)
  7686. {
  7687. struct afe_port_cmd_device_stop stop;
  7688. int ret = 0;
  7689. if (this_afe.apr == NULL) {
  7690. pr_err("%s: AFE is already closed\n", __func__);
  7691. ret = -EINVAL;
  7692. goto fail_cmd;
  7693. }
  7694. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  7695. port_id = q6audio_convert_virtual_to_portid(port_id);
  7696. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  7697. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  7698. stop.hdr.pkt_size = sizeof(stop);
  7699. stop.hdr.src_port = 0;
  7700. stop.hdr.dest_port = 0;
  7701. stop.hdr.token = 0;
  7702. stop.hdr.opcode = AFE_PORT_CMD_DEVICE_STOP;
  7703. stop.port_id = port_id;
  7704. stop.reserved = 0;
  7705. ret = afe_apr_send_pkt(&stop, NULL);
  7706. if (ret)
  7707. pr_err("%s: AFE close failed %d\n", __func__, ret);
  7708. fail_cmd:
  7709. return ret;
  7710. }
  7711. /**
  7712. * afe_close - command to close AFE port
  7713. *
  7714. * @port_id: AFE port id
  7715. *
  7716. * Returns 0 on success, appropriate error code otherwise
  7717. */
  7718. int afe_close(int port_id)
  7719. {
  7720. struct afe_port_cmd_device_stop stop;
  7721. enum afe_mad_type mad_type;
  7722. int ret = 0;
  7723. u16 i;
  7724. int index = 0;
  7725. uint16_t port_index;
  7726. if (this_afe.apr == NULL) {
  7727. pr_err("%s: AFE is already closed\n", __func__);
  7728. if ((port_id == RT_PROXY_DAI_001_RX) ||
  7729. (port_id == RT_PROXY_DAI_002_TX))
  7730. pcm_afe_instance[port_id & 0x1] = 0;
  7731. if ((port_id == RT_PROXY_DAI_002_RX) ||
  7732. (port_id == RT_PROXY_DAI_001_TX))
  7733. proxy_afe_instance[port_id & 0x1] = 0;
  7734. afe_close_done[port_id & 0x1] = true;
  7735. ret = -EINVAL;
  7736. goto fail_cmd;
  7737. }
  7738. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  7739. if ((port_id == RT_PROXY_DAI_001_RX) ||
  7740. (port_id == RT_PROXY_DAI_002_TX)) {
  7741. pr_debug("%s: before decrementing pcm_afe_instance %d\n",
  7742. __func__, pcm_afe_instance[port_id & 0x1]);
  7743. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  7744. pcm_afe_instance[port_id & 0x1]--;
  7745. if ((!(pcm_afe_instance[port_id & 0x1] == 0 &&
  7746. proxy_afe_instance[port_id & 0x1] == 0)) ||
  7747. afe_close_done[port_id & 0x1] == true)
  7748. return 0;
  7749. afe_close_done[port_id & 0x1] = true;
  7750. }
  7751. if ((port_id == RT_PROXY_DAI_002_RX) ||
  7752. (port_id == RT_PROXY_DAI_001_TX)) {
  7753. pr_debug("%s: before decrementing proxy_afe_instance %d\n",
  7754. __func__, proxy_afe_instance[port_id & 0x1]);
  7755. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  7756. proxy_afe_instance[port_id & 0x1]--;
  7757. if ((!(pcm_afe_instance[port_id & 0x1] == 0 &&
  7758. proxy_afe_instance[port_id & 0x1] == 0)) ||
  7759. afe_close_done[port_id & 0x1] == true)
  7760. return 0;
  7761. afe_close_done[port_id & 0x1] = true;
  7762. }
  7763. if (port_id == RT_PROXY_PORT_002_RX && proxy_afe_started)
  7764. proxy_afe_started = false;
  7765. port_id = q6audio_convert_virtual_to_portid(port_id);
  7766. index = q6audio_get_port_index(port_id);
  7767. if (index < 0 || index >= AFE_MAX_PORTS) {
  7768. pr_err("%s: AFE port index[%d] invalid!\n",
  7769. __func__, index);
  7770. return -EINVAL;
  7771. }
  7772. ret = q6audio_validate_port(port_id);
  7773. if (ret < 0) {
  7774. pr_warn("%s: Not a valid port id 0x%x ret %d\n",
  7775. __func__, port_id, ret);
  7776. return -EINVAL;
  7777. }
  7778. mad_type = afe_port_get_mad_type(port_id);
  7779. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  7780. mad_type);
  7781. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  7782. pr_debug("%s: Turn off MAD\n", __func__);
  7783. ret = afe_turn_onoff_hw_mad(mad_type, false);
  7784. if (ret) {
  7785. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  7786. __func__, ret);
  7787. return ret;
  7788. }
  7789. } else {
  7790. pr_debug("%s: Not a MAD port\n", __func__);
  7791. }
  7792. mutex_lock(&this_afe.afe_cmd_lock);
  7793. port_index = afe_get_port_index(port_id);
  7794. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  7795. this_afe.afe_sample_rates[port_index] = 0;
  7796. this_afe.topology[port_index] = 0;
  7797. this_afe.dev_acdb_id[port_index] = 0;
  7798. } else {
  7799. pr_err("%s: port %d\n", __func__, port_index);
  7800. ret = -EINVAL;
  7801. goto fail_cmd;
  7802. }
  7803. if ((port_id == this_afe.aanc_info.aanc_tx_port) &&
  7804. (this_afe.aanc_info.aanc_active)) {
  7805. memset(&this_afe.aanc_info, 0x00, sizeof(this_afe.aanc_info));
  7806. ret = afe_aanc_mod_enable(this_afe.apr, port_id, 0);
  7807. if (ret)
  7808. pr_err("%s: AFE mod disable failed %d\n",
  7809. __func__, ret);
  7810. }
  7811. /*
  7812. * even if ramp down configuration failed it is not serious enough to
  7813. * warrant bailaing out.
  7814. */
  7815. if (q6core_get_avcs_api_version_per_service(
  7816. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) < AFE_API_VERSION_V9) {
  7817. if (afe_spk_ramp_dn_cfg(port_id) < 0)
  7818. pr_err("%s: ramp down config failed\n", __func__);
  7819. }
  7820. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  7821. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  7822. stop.hdr.pkt_size = sizeof(stop);
  7823. stop.hdr.src_port = 0;
  7824. stop.hdr.dest_port = 0;
  7825. stop.hdr.token = index;
  7826. stop.hdr.opcode = AFE_PORT_CMD_DEVICE_STOP;
  7827. stop.port_id = q6audio_get_port_id(port_id);
  7828. stop.reserved = 0;
  7829. ret = afe_apr_send_pkt(&stop, &this_afe.wait[index]);
  7830. if (ret)
  7831. pr_err("%s: AFE close failed %d\n", __func__, ret);
  7832. fail_cmd:
  7833. if ((q6core_get_avcs_api_version_per_service(
  7834. APRV2_IDS_SERVICE_ID_ADSP_CORE_V) >= AVCS_API_VERSION_V5)) {
  7835. for (i = 0; i < MAX_ALLOWED_USE_CASES; i++) {
  7836. if (pm[i] && pm[i]->port_id == port_id) {
  7837. q6afe_unload_avcs_modules(port_id, i);
  7838. break;
  7839. }
  7840. }
  7841. }
  7842. mutex_unlock(&this_afe.afe_cmd_lock);
  7843. return ret;
  7844. }
  7845. EXPORT_SYMBOL(afe_close);
  7846. int afe_set_digital_codec_core_clock(u16 port_id,
  7847. struct afe_digital_clk_cfg *cfg)
  7848. {
  7849. struct afe_digital_clk_cfg clk_cfg;
  7850. struct param_hdr_v3 param_hdr;
  7851. int ret = 0;
  7852. if (!cfg) {
  7853. pr_err("%s: clock cfg is NULL\n", __func__);
  7854. return -EINVAL;
  7855. }
  7856. memset(&clk_cfg, 0, sizeof(clk_cfg));
  7857. memset(&param_hdr, 0, sizeof(param_hdr));
  7858. /*default rx port is taken to enable the codec digital clock*/
  7859. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  7860. param_hdr.instance_id = INSTANCE_ID_0;
  7861. param_hdr.param_id = AFE_PARAM_ID_INTERNAL_DIGIATL_CDC_CLK_CONFIG;
  7862. param_hdr.param_size = sizeof(struct afe_digital_clk_cfg);
  7863. clk_cfg = *cfg;
  7864. pr_debug("%s: Minor version =0x%x clk val = %d\n"
  7865. "clk root = 0x%x resrv = 0x%x\n",
  7866. __func__, cfg->i2s_cfg_minor_version, cfg->clk_val,
  7867. cfg->clk_root, cfg->reserved);
  7868. ret = q6afe_pack_and_set_param_in_band(port_id,
  7869. q6audio_get_port_index(port_id),
  7870. param_hdr, (u8 *) &clk_cfg);
  7871. if (ret < 0)
  7872. pr_err("%s: AFE enable for port 0x%x ret %d\n", __func__,
  7873. port_id, ret);
  7874. return ret;
  7875. }
  7876. /**
  7877. * afe_set_lpass_clock - Enable AFE lpass clock
  7878. *
  7879. * @port_id: AFE port id
  7880. * @cfg: pointer to clk set struct
  7881. *
  7882. * Returns 0 on success, appropriate error code otherwise
  7883. */
  7884. int afe_set_lpass_clock(u16 port_id, struct afe_clk_cfg *cfg)
  7885. {
  7886. struct afe_clk_cfg clk_cfg;
  7887. struct param_hdr_v3 param_hdr;
  7888. int ret = 0;
  7889. if (!cfg) {
  7890. pr_err("%s: clock cfg is NULL\n", __func__);
  7891. return -EINVAL;
  7892. }
  7893. memset(&clk_cfg, 0, sizeof(clk_cfg));
  7894. memset(&param_hdr, 0, sizeof(param_hdr));
  7895. ret = q6audio_is_digital_pcm_interface(port_id);
  7896. if (ret < 0) {
  7897. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  7898. __func__, ret);
  7899. return -EINVAL;
  7900. }
  7901. mutex_lock(&this_afe.afe_cmd_lock);
  7902. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  7903. param_hdr.instance_id = INSTANCE_ID_0;
  7904. param_hdr.param_id = AFE_PARAM_ID_LPAIF_CLK_CONFIG;
  7905. param_hdr.param_size = sizeof(clk_cfg);
  7906. clk_cfg = *cfg;
  7907. pr_debug("%s: Minor version =0x%x clk val1 = %d\n"
  7908. "clk val2 = %d, clk src = 0x%x\n"
  7909. "clk root = 0x%x clk mode = 0x%x resrv = 0x%x\n"
  7910. "port id = 0x%x\n",
  7911. __func__, cfg->i2s_cfg_minor_version,
  7912. cfg->clk_val1, cfg->clk_val2, cfg->clk_src,
  7913. cfg->clk_root, cfg->clk_set_mode,
  7914. cfg->reserved, q6audio_get_port_id(port_id));
  7915. trace_printk("%s: Minor version =0x%x clk val1 = %d\n"
  7916. "clk val2 = %d, clk src = 0x%x\n"
  7917. "clk root = 0x%x clk mode = 0x%x resrv = 0x%x\n"
  7918. "port id = 0x%x\n",
  7919. __func__, cfg->i2s_cfg_minor_version,
  7920. cfg->clk_val1, cfg->clk_val2, cfg->clk_src,
  7921. cfg->clk_root, cfg->clk_set_mode,
  7922. cfg->reserved, q6audio_get_port_id(port_id));
  7923. ret = q6afe_pack_and_set_param_in_band(port_id,
  7924. q6audio_get_port_index(port_id),
  7925. param_hdr, (u8 *) &clk_cfg);
  7926. if (ret < 0)
  7927. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  7928. __func__, port_id, ret);
  7929. mutex_unlock(&this_afe.afe_cmd_lock);
  7930. return ret;
  7931. }
  7932. EXPORT_SYMBOL(afe_set_lpass_clock);
  7933. static int afe_get_port_idx(u16 port_id)
  7934. {
  7935. u16 afe_port = 0;
  7936. int i = -EINVAL;
  7937. pr_debug("%s: port id 0x%x\n", __func__, port_id);
  7938. if ((port_id >= AFE_PORT_ID_TDM_PORT_RANGE_START) &&
  7939. (port_id <= AFE_PORT_ID_TDM_PORT_RANGE_END))
  7940. afe_port = port_id & 0xFFF0;
  7941. else if ((port_id == AFE_PORT_ID_PRIMARY_SPDIF_RX) ||
  7942. (port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX) ||
  7943. (port_id == AFE_PORT_ID_SECONDARY_SPDIF_RX) ||
  7944. (port_id == AFE_PORT_ID_SECONDARY_SPDIF_TX))
  7945. afe_port = port_id;
  7946. else
  7947. afe_port = port_id & 0xFFFE;
  7948. for (i = 0; i < ARRAY_SIZE(clkinfo_per_port); i++) {
  7949. if (afe_port == clkinfo_per_port[i].port_id) {
  7950. pr_debug("%s: idx 0x%x port id 0x%x\n", __func__,
  7951. i, afe_port);
  7952. return i;
  7953. }
  7954. }
  7955. pr_debug("%s: cannot get idx for port id 0x%x\n", __func__,
  7956. afe_port);
  7957. return -EINVAL;
  7958. }
  7959. static int afe_get_clk_id(u16 port_id)
  7960. {
  7961. u16 afe_port = 0;
  7962. uint32_t clk_id = -EINVAL;
  7963. int idx = 0;
  7964. idx = afe_get_port_idx(port_id);
  7965. if (idx < 0) {
  7966. pr_err("%s: cannot get clock id for port id 0x%x\n", __func__,
  7967. afe_port);
  7968. return -EINVAL;
  7969. }
  7970. clk_id = clkinfo_per_port[idx].clk_id;
  7971. pr_debug("%s: clk id 0x%x port id 0x%x\n", __func__, clk_id,
  7972. afe_port);
  7973. return clk_id;
  7974. }
  7975. /**
  7976. * afe_set_clk_id - Update clock id for AFE port
  7977. *
  7978. * @port_id: AFE port id
  7979. * @clk_id: CLock ID
  7980. *
  7981. * Returns 0 on success, appropriate error code otherwise
  7982. */
  7983. int afe_set_clk_id(u16 port_id, uint32_t clk_id)
  7984. {
  7985. u16 afe_port = 0;
  7986. int idx = 0;
  7987. idx = afe_get_port_idx(port_id);
  7988. if (idx < 0) {
  7989. pr_debug("%s: cannot set clock id for port id 0x%x\n", __func__,
  7990. afe_port);
  7991. return -EINVAL;
  7992. }
  7993. clkinfo_per_port[idx].clk_id = clk_id;
  7994. pr_debug("%s: updated clk id 0x%x port id 0x%x\n", __func__,
  7995. clkinfo_per_port[idx].clk_id, afe_port);
  7996. return 0;
  7997. }
  7998. EXPORT_SYMBOL(afe_set_clk_id);
  7999. /**
  8000. * afe_set_pll_clk_drift - Set audio interface PLL clock drift
  8001. *
  8002. * @port_id: AFE port id
  8003. * @set_clk_drift: clk drift to adjust PLL
  8004. * @clk_reset: reset Interface clock to original value
  8005. *
  8006. * Returns 0 on success, appropriate error code otherwise
  8007. */
  8008. int afe_set_pll_clk_drift(u16 port_id, int32_t set_clk_drift,
  8009. uint32_t clk_reset)
  8010. {
  8011. struct afe_set_clk_drift clk_drift;
  8012. struct param_hdr_v3 param_hdr;
  8013. uint32_t clk_id;
  8014. int index = 0, ret = 0;
  8015. memset(&param_hdr, 0, sizeof(param_hdr));
  8016. memset(&clk_drift, 0, sizeof(clk_drift));
  8017. index = q6audio_get_port_index(port_id);
  8018. if (index < 0 || index >= AFE_MAX_PORTS) {
  8019. pr_err("%s: index[%d] invalid!\n", __func__, index);
  8020. return -EINVAL;
  8021. }
  8022. ret = afe_q6_interface_prepare();
  8023. if (ret != 0) {
  8024. pr_err_ratelimited("%s: Q6 interface prepare failed %d\n",
  8025. __func__, ret);
  8026. return ret;
  8027. }
  8028. clk_id = afe_get_clk_id(port_id);
  8029. if (clk_id < 0) {
  8030. pr_err("%s: cannot get clk id for port id 0x%x\n",
  8031. __func__, port_id);
  8032. return -EINVAL;
  8033. }
  8034. if (clk_id & 0x01) {
  8035. pr_err("%s: cannot adjust clock drift for external clock id 0x%x\n",
  8036. __func__, clk_id);
  8037. return -EINVAL;
  8038. }
  8039. clk_drift.clk_drift = set_clk_drift;
  8040. clk_drift.clk_reset = clk_reset;
  8041. clk_drift.clk_id = clk_id;
  8042. pr_debug("%s: clk id = 0x%x clk drift = %d clk reset = %d port id 0x%x\n",
  8043. __func__, clk_drift.clk_id, clk_drift.clk_drift,
  8044. clk_drift.clk_reset, port_id);
  8045. mutex_lock(&this_afe.afe_clk_lock);
  8046. param_hdr.module_id = AFE_MODULE_CLOCK_SET;
  8047. param_hdr.instance_id = INSTANCE_ID_0;
  8048. param_hdr.param_id = AFE_PARAM_ID_CLOCK_ADJUST;
  8049. param_hdr.param_size = sizeof(struct afe_set_clk_drift);
  8050. ret = q6afe_svc_pack_and_set_param_in_band(index, param_hdr,
  8051. (u8 *) &clk_drift);
  8052. if (ret < 0)
  8053. pr_err_ratelimited("%s: AFE PLL clk drift failed with ret %d\n",
  8054. __func__, ret);
  8055. mutex_unlock(&this_afe.afe_clk_lock);
  8056. return ret;
  8057. }
  8058. EXPORT_SYMBOL(afe_set_pll_clk_drift);
  8059. /**
  8060. * afe_set_lpass_clk_cfg - Set AFE clk config
  8061. *
  8062. * @index: port index
  8063. * @cfg: pointer to clk set struct
  8064. *
  8065. * Returns 0 on success, appropriate error code otherwise
  8066. */
  8067. int afe_set_lpass_clk_cfg(int index, struct afe_clk_set *cfg)
  8068. {
  8069. struct param_hdr_v3 param_hdr;
  8070. int ret = 0;
  8071. if (!cfg) {
  8072. pr_err("%s: clock cfg is NULL\n", __func__);
  8073. ret = -EINVAL;
  8074. return ret;
  8075. }
  8076. if (index < 0 || index >= AFE_MAX_PORTS) {
  8077. pr_err("%s: index[%d] invalid!\n", __func__, index);
  8078. return -EINVAL;
  8079. }
  8080. memset(&param_hdr, 0, sizeof(param_hdr));
  8081. mutex_lock(&this_afe.afe_clk_lock);
  8082. param_hdr.module_id = AFE_MODULE_CLOCK_SET;
  8083. param_hdr.instance_id = INSTANCE_ID_0;
  8084. param_hdr.param_id = AFE_PARAM_ID_CLOCK_SET;
  8085. param_hdr.param_size = sizeof(struct afe_clk_set);
  8086. pr_debug("%s: Minor version =0x%x clk id = %d\n"
  8087. "clk freq (Hz) = %d, clk attri = 0x%x\n"
  8088. "clk root = 0x%x clk enable = 0x%x\n",
  8089. __func__, cfg->clk_set_minor_version,
  8090. cfg->clk_id, cfg->clk_freq_in_hz, cfg->clk_attri,
  8091. cfg->clk_root, cfg->enable);
  8092. trace_printk("%s: Minor version =0x%x clk id = %d\n"
  8093. "clk freq (Hz) = %d, clk attri = 0x%x\n"
  8094. "clk root = 0x%x clk enable = 0x%x\n",
  8095. __func__, cfg->clk_set_minor_version,
  8096. cfg->clk_id, cfg->clk_freq_in_hz, cfg->clk_attri,
  8097. cfg->clk_root, cfg->enable);
  8098. ret = q6afe_svc_pack_and_set_param_in_band(index, param_hdr,
  8099. (u8 *) cfg);
  8100. if (ret < 0) {
  8101. pr_err_ratelimited("%s: AFE clk cfg failed with ret %d\n",
  8102. __func__, ret);
  8103. trace_printk("%s: AFE clk cfg failed with ret %d\n",
  8104. __func__, ret);
  8105. }
  8106. mutex_unlock(&this_afe.afe_clk_lock);
  8107. return ret;
  8108. }
  8109. EXPORT_SYMBOL(afe_set_lpass_clk_cfg);
  8110. /**
  8111. * afe_set_lpass_clock_v2 - Enable AFE lpass clock
  8112. *
  8113. * @port_id: AFE port id
  8114. * @cfg: pointer to clk set struct
  8115. *
  8116. * Returns 0 on success, appropriate error code otherwise
  8117. */
  8118. int afe_set_lpass_clock_v2(u16 port_id, struct afe_clk_set *cfg)
  8119. {
  8120. int index = 0;
  8121. int ret = 0;
  8122. index = q6audio_get_port_index(port_id);
  8123. if (index < 0 || index >= AFE_MAX_PORTS) {
  8124. pr_err("%s: AFE port index[%d] invalid!\n",
  8125. __func__, index);
  8126. return -EINVAL;
  8127. }
  8128. ret = q6audio_is_digital_pcm_interface(port_id);
  8129. if (ret < 0) {
  8130. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  8131. __func__, ret);
  8132. return -EINVAL;
  8133. }
  8134. ret = afe_set_clk_id(port_id, cfg->clk_id);
  8135. if (ret < 0)
  8136. pr_debug("%s: afe_set_clk_id fail %d\n", __func__, ret);
  8137. ret = afe_set_lpass_clk_cfg(index, cfg);
  8138. if (ret)
  8139. pr_err("%s: afe_set_lpass_clk_cfg_v2 failed %d\n",
  8140. __func__, ret);
  8141. return ret;
  8142. }
  8143. EXPORT_SYMBOL(afe_set_lpass_clock_v2);
  8144. int afe_set_lpass_internal_digital_codec_clock(u16 port_id,
  8145. struct afe_digital_clk_cfg *cfg)
  8146. {
  8147. struct afe_digital_clk_cfg clk_cfg;
  8148. struct param_hdr_v3 param_hdr;
  8149. int ret = 0;
  8150. if (!cfg) {
  8151. pr_err("%s: clock cfg is NULL\n", __func__);
  8152. return -EINVAL;
  8153. }
  8154. memset(&clk_cfg, 0, sizeof(clk_cfg));
  8155. memset(&param_hdr, 0, sizeof(param_hdr));
  8156. ret = q6audio_is_digital_pcm_interface(port_id);
  8157. if (ret < 0) {
  8158. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  8159. __func__, ret);
  8160. return -EINVAL;
  8161. }
  8162. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  8163. param_hdr.instance_id = INSTANCE_ID_0;
  8164. param_hdr.param_id = AFE_PARAM_ID_INTERNAL_DIGIATL_CDC_CLK_CONFIG;
  8165. param_hdr.param_size = sizeof(clk_cfg);
  8166. clk_cfg = *cfg;
  8167. pr_debug("%s: Minor version =0x%x clk val = %d\n"
  8168. "clk root = 0x%x resrv = 0x%x port id = 0x%x\n",
  8169. __func__, cfg->i2s_cfg_minor_version,
  8170. cfg->clk_val, cfg->clk_root, cfg->reserved,
  8171. q6audio_get_port_id(port_id));
  8172. ret = q6afe_pack_and_set_param_in_band(port_id,
  8173. q6audio_get_port_index(port_id),
  8174. param_hdr, (u8 *) &clk_cfg);
  8175. if (ret < 0)
  8176. pr_err("%s: AFE enable for port 0x0x%x ret %d\n",
  8177. __func__, port_id, ret);
  8178. return ret;
  8179. }
  8180. /**
  8181. * afe_enable_lpass_core_shared_clock -
  8182. * Configures the core clk on LPASS.
  8183. * Need on targets where lpass provides
  8184. * clocks
  8185. * @port_id: afe port id
  8186. * @enable: enable or disable clk
  8187. *
  8188. * Returns success or failure of call.
  8189. */
  8190. int afe_enable_lpass_core_shared_clock(u16 port_id, u32 enable)
  8191. {
  8192. struct afe_param_id_lpass_core_shared_clk_cfg clk_cfg;
  8193. struct param_hdr_v3 param_hdr;
  8194. int ret = 0;
  8195. memset(&clk_cfg, 0, sizeof(clk_cfg));
  8196. memset(&param_hdr, 0, sizeof(param_hdr));
  8197. ret = q6audio_is_digital_pcm_interface(port_id);
  8198. if (ret < 0) {
  8199. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  8200. __func__, ret);
  8201. return -EINVAL;
  8202. }
  8203. mutex_lock(&this_afe.afe_cmd_lock);
  8204. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  8205. param_hdr.instance_id = INSTANCE_ID_0;
  8206. param_hdr.param_id = AFE_PARAM_ID_LPASS_CORE_SHARED_CLOCK_CONFIG;
  8207. param_hdr.param_size = sizeof(clk_cfg);
  8208. clk_cfg.lpass_core_shared_clk_cfg_minor_version =
  8209. AFE_API_VERSION_LPASS_CORE_SHARED_CLK_CONFIG;
  8210. clk_cfg.enable = enable;
  8211. pr_debug("%s: port id = %d, enable = %d\n",
  8212. __func__, q6audio_get_port_id(port_id), enable);
  8213. ret = q6afe_pack_and_set_param_in_band(port_id,
  8214. q6audio_get_port_index(port_id),
  8215. param_hdr, (u8 *) &clk_cfg);
  8216. if (ret < 0)
  8217. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  8218. __func__, port_id, ret);
  8219. mutex_unlock(&this_afe.afe_cmd_lock);
  8220. return ret;
  8221. }
  8222. EXPORT_SYMBOL(afe_enable_lpass_core_shared_clock);
  8223. /**
  8224. * q6afe_check_osr_clk_freq -
  8225. * Gets supported OSR CLK frequencies
  8226. *
  8227. * @freq: frequency to check
  8228. *
  8229. * Returns success if freq is supported.
  8230. */
  8231. int q6afe_check_osr_clk_freq(u32 freq)
  8232. {
  8233. int ret = 0;
  8234. switch (freq) {
  8235. case Q6AFE_LPASS_OSR_CLK_12_P288_MHZ:
  8236. case Q6AFE_LPASS_OSR_CLK_9_P600_MHZ:
  8237. case Q6AFE_LPASS_OSR_CLK_8_P192_MHZ:
  8238. case Q6AFE_LPASS_OSR_CLK_6_P144_MHZ:
  8239. case Q6AFE_LPASS_OSR_CLK_4_P096_MHZ:
  8240. case Q6AFE_LPASS_OSR_CLK_3_P072_MHZ:
  8241. case Q6AFE_LPASS_OSR_CLK_2_P048_MHZ:
  8242. case Q6AFE_LPASS_OSR_CLK_1_P536_MHZ:
  8243. case Q6AFE_LPASS_OSR_CLK_1_P024_MHZ:
  8244. case Q6AFE_LPASS_OSR_CLK_768_kHZ:
  8245. case Q6AFE_LPASS_OSR_CLK_512_kHZ:
  8246. break;
  8247. default:
  8248. pr_err("%s: default freq 0x%x\n",
  8249. __func__, freq);
  8250. ret = -EINVAL;
  8251. }
  8252. return ret;
  8253. }
  8254. EXPORT_SYMBOL(q6afe_check_osr_clk_freq);
  8255. static int afe_get_spv4_th_vi_v_vali_data(void *params, uint32_t size)
  8256. {
  8257. struct param_hdr_v3 param_hdr;
  8258. int port = AFE_PORT_ID_WSA_CODEC_DMA_TX_0;
  8259. int ret = -EINVAL;
  8260. uint32_t min_size = 0;
  8261. struct afe_sp_v4_channel_v_vali_params *v_vali_params = NULL;
  8262. if (!params) {
  8263. pr_err("%s: Invalid params\n", __func__);
  8264. goto done;
  8265. }
  8266. if (this_afe.vi_tx_port != -1)
  8267. port = this_afe.vi_tx_port;
  8268. mutex_lock(&this_afe.afe_cmd_lock);
  8269. memset(&param_hdr, 0, sizeof(param_hdr));
  8270. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  8271. param_hdr.instance_id = INSTANCE_ID_0;
  8272. param_hdr.param_id = AFE_PARAM_ID_SP_V4_TH_VI_V_VALI_PARAMS;
  8273. param_hdr.param_size = size;
  8274. ret = q6afe_get_params(port, NULL, &param_hdr);
  8275. if (ret) {
  8276. pr_err("%s: Failed to get TH VI V-Vali data\n", __func__);
  8277. goto get_params_fail;
  8278. }
  8279. min_size = (size < this_afe.spv4_v_vali_rcvd_param_size) ?
  8280. size : this_afe.spv4_v_vali_rcvd_param_size;
  8281. memcpy(params, (void*)&this_afe.spv4_v_vali_resp.num_ch, min_size);
  8282. v_vali_params = &this_afe.spv4_v_vali_resp.ch_v_vali_params[0];
  8283. pr_debug("%s: num_ch %d Vrms %d %d status %d %d\n", __func__,
  8284. this_afe.spv4_v_vali_resp.num_ch,
  8285. v_vali_params[SP_V2_SPKR_1].vrms_q24,
  8286. v_vali_params[SP_V2_SPKR_2].vrms_q24,
  8287. v_vali_params[SP_V2_SPKR_1].status,
  8288. v_vali_params[SP_V2_SPKR_2].status);
  8289. /*using the non-spv4 status varaible to support v_vali debug app. */
  8290. this_afe.th_vi_v_vali_resp.param.status[SP_V2_SPKR_1] =
  8291. v_vali_params[SP_V2_SPKR_1].status;
  8292. this_afe.th_vi_v_vali_resp.param.status[SP_V2_SPKR_2] =
  8293. v_vali_params[SP_V2_SPKR_2].status;
  8294. ret = 0;
  8295. get_params_fail:
  8296. mutex_unlock(&this_afe.afe_cmd_lock);
  8297. done:
  8298. return ret;
  8299. }
  8300. static int afe_get_sp_th_vi_v_vali_data(
  8301. struct afe_sp_th_vi_v_vali_get_param *th_vi_v_vali)
  8302. {
  8303. struct param_hdr_v3 param_hdr;
  8304. int port = SLIMBUS_4_TX;
  8305. int ret = -EINVAL;
  8306. if (!th_vi_v_vali) {
  8307. pr_err("%s: Invalid params\n", __func__);
  8308. goto done;
  8309. }
  8310. if (this_afe.vi_tx_port != -1)
  8311. port = this_afe.vi_tx_port;
  8312. mutex_lock(&this_afe.afe_cmd_lock);
  8313. memset(&param_hdr, 0, sizeof(param_hdr));
  8314. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  8315. param_hdr.instance_id = INSTANCE_ID_0;
  8316. param_hdr.param_id = AFE_PARAM_ID_SP_V2_TH_VI_V_VALI_PARAMS;
  8317. param_hdr.param_size = sizeof(struct afe_sp_th_vi_v_vali_params);
  8318. ret = q6afe_get_params(port, NULL, &param_hdr);
  8319. if (ret) {
  8320. pr_err("%s: Failed to get TH VI V-Vali data\n", __func__);
  8321. goto get_params_fail;
  8322. }
  8323. th_vi_v_vali->pdata = param_hdr;
  8324. memcpy(&th_vi_v_vali->param, &this_afe.th_vi_v_vali_resp.param,
  8325. sizeof(this_afe.th_vi_v_vali_resp.param));
  8326. pr_debug("%s: Vrms %d %d status %d %d\n", __func__,
  8327. th_vi_v_vali->param.vrms_q24[SP_V2_SPKR_1],
  8328. th_vi_v_vali->param.vrms_q24[SP_V2_SPKR_2],
  8329. th_vi_v_vali->param.status[SP_V2_SPKR_1],
  8330. th_vi_v_vali->param.status[SP_V2_SPKR_2]);
  8331. ret = 0;
  8332. get_params_fail:
  8333. mutex_unlock(&this_afe.afe_cmd_lock);
  8334. done:
  8335. return ret;
  8336. }
  8337. static int afe_get_spv4_th_vi_ftm_data(void *params, uint32_t size)
  8338. {
  8339. struct param_hdr_v3 param_hdr;
  8340. int port = SLIMBUS_4_TX;
  8341. int ret = -EINVAL;
  8342. uint32_t min_size = 0;
  8343. struct afe_sp_v4_channel_ftm_params *th_vi_params;
  8344. if (!params) {
  8345. pr_err("%s: Invalid params\n", __func__);
  8346. goto done;
  8347. }
  8348. if (this_afe.vi_tx_port != -1)
  8349. port = this_afe.vi_tx_port;
  8350. mutex_lock(&this_afe.afe_cmd_lock);
  8351. memset(&param_hdr, 0, sizeof(param_hdr));
  8352. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  8353. param_hdr.instance_id = INSTANCE_ID_0;
  8354. param_hdr.param_id = AFE_PARAM_ID_SP_V4_TH_VI_FTM_PARAMS;
  8355. param_hdr.param_size = size;
  8356. ret = q6afe_get_params(port, NULL, &param_hdr);
  8357. if (ret) {
  8358. pr_err("%s: Failed to get TH VI FTM data\n", __func__);
  8359. goto get_params_fail;
  8360. }
  8361. min_size = (size < this_afe.spv4_th_vi_ftm_rcvd_param_size) ?
  8362. size : this_afe.spv4_th_vi_ftm_rcvd_param_size;
  8363. memcpy(params, (void*)&this_afe.spv4_th_vi_ftm_resp.num_ch, min_size);
  8364. th_vi_params = &this_afe.spv4_th_vi_ftm_resp.ch_ftm_params[0];
  8365. pr_debug("%s:num_ch %d, DC resistance %d %d temp %d %d status %d %d\n",
  8366. __func__, this_afe.spv4_th_vi_ftm_resp.num_ch,
  8367. th_vi_params[SP_V2_SPKR_1].dc_res_q24,
  8368. th_vi_params[SP_V2_SPKR_2].dc_res_q24,
  8369. th_vi_params[SP_V2_SPKR_1].temp_q22,
  8370. th_vi_params[SP_V2_SPKR_2].temp_q22,
  8371. th_vi_params[SP_V2_SPKR_1].status,
  8372. th_vi_params[SP_V2_SPKR_2].status);
  8373. ret = 0;
  8374. get_params_fail:
  8375. mutex_unlock(&this_afe.afe_cmd_lock);
  8376. done:
  8377. return ret;
  8378. }
  8379. static int afe_get_sp_th_vi_ftm_data(struct afe_sp_th_vi_get_param *th_vi)
  8380. {
  8381. struct param_hdr_v3 param_hdr;
  8382. int port = SLIMBUS_4_TX;
  8383. int ret = -EINVAL;
  8384. if (!th_vi) {
  8385. pr_err("%s: Invalid params\n", __func__);
  8386. goto done;
  8387. }
  8388. if (this_afe.vi_tx_port != -1)
  8389. port = this_afe.vi_tx_port;
  8390. mutex_lock(&this_afe.afe_cmd_lock);
  8391. memset(&param_hdr, 0, sizeof(param_hdr));
  8392. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  8393. param_hdr.instance_id = INSTANCE_ID_0;
  8394. param_hdr.param_id = AFE_PARAM_ID_SP_V2_TH_VI_FTM_PARAMS;
  8395. param_hdr.param_size = sizeof(struct afe_sp_th_vi_ftm_params);
  8396. ret = q6afe_get_params(port, NULL, &param_hdr);
  8397. if (ret) {
  8398. pr_err("%s: Failed to get TH VI FTM data\n", __func__);
  8399. goto get_params_fail;
  8400. }
  8401. th_vi->pdata = param_hdr;
  8402. memcpy(&th_vi->param, &this_afe.th_vi_resp.param,
  8403. sizeof(this_afe.th_vi_resp.param));
  8404. pr_debug("%s: DC resistance %d %d temp %d %d status %d %d\n",
  8405. __func__, th_vi->param.dc_res_q24[SP_V2_SPKR_1],
  8406. th_vi->param.dc_res_q24[SP_V2_SPKR_2],
  8407. th_vi->param.temp_q22[SP_V2_SPKR_1],
  8408. th_vi->param.temp_q22[SP_V2_SPKR_2],
  8409. th_vi->param.status[SP_V2_SPKR_1],
  8410. th_vi->param.status[SP_V2_SPKR_2]);
  8411. ret = 0;
  8412. get_params_fail:
  8413. mutex_unlock(&this_afe.afe_cmd_lock);
  8414. done:
  8415. return ret;
  8416. }
  8417. static int afe_get_spv4_ex_vi_ftm_data(void *params, uint32_t size)
  8418. {
  8419. struct param_hdr_v3 param_hdr;
  8420. int port = SLIMBUS_4_TX;
  8421. int ret = -EINVAL;
  8422. uint32_t min_size = 0;
  8423. struct afe_sp_v4_channel_ex_vi_ftm_params *ex_vi_ftm_param;
  8424. if (!params) {
  8425. pr_err("%s: Invalid params\n", __func__);
  8426. goto done;
  8427. }
  8428. if (this_afe.vi_tx_port != -1)
  8429. port = this_afe.vi_tx_port;
  8430. mutex_lock(&this_afe.afe_cmd_lock);
  8431. memset(&param_hdr, 0, sizeof(param_hdr));
  8432. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  8433. param_hdr.instance_id = INSTANCE_ID_0;
  8434. param_hdr.param_id = AFE_PARAM_ID_SP_V4_EX_VI_FTM_PARAMS;
  8435. param_hdr.param_size = size;
  8436. ret = q6afe_get_params(port, NULL, &param_hdr);
  8437. if (ret < 0) {
  8438. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  8439. __func__, port, param_hdr.param_id, ret);
  8440. goto get_params_fail;
  8441. }
  8442. min_size = (size < this_afe.spv4_ex_vi_ftm_rcvd_param_size) ?
  8443. size : this_afe.spv4_ex_vi_ftm_rcvd_param_size;
  8444. memcpy(params, (void*)&this_afe.spv4_ex_vi_ftm_resp.num_ch, min_size);
  8445. ex_vi_ftm_param = &this_afe.spv4_ex_vi_ftm_resp.ch_ex_vi_ftm_params[0];
  8446. pr_debug("%s:num_ch %d, res %d %d forcefactor %d %d Dmping kg/s %d %d\n"
  8447. "stiffness N/mm %d %d freq %d %d Qfactor %d %d status %d %d",
  8448. __func__, this_afe.spv4_ex_vi_ftm_resp.num_ch,
  8449. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_re_q24,
  8450. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_re_q24,
  8451. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Bl_q24,
  8452. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Bl_q24,
  8453. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Rms_q24,
  8454. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Rms_q24,
  8455. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Kms_q24,
  8456. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Kms_q24,
  8457. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Fres_q20,
  8458. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Fres_q20,
  8459. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Qms_q24,
  8460. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Qms_q24,
  8461. ex_vi_ftm_param[SP_V2_SPKR_1].status,
  8462. ex_vi_ftm_param[SP_V2_SPKR_2].status);
  8463. ret = 0;
  8464. get_params_fail:
  8465. mutex_unlock(&this_afe.afe_cmd_lock);
  8466. done:
  8467. return ret;
  8468. }
  8469. static int afe_get_sp_ex_vi_ftm_data(struct afe_sp_ex_vi_get_param *ex_vi)
  8470. {
  8471. struct param_hdr_v3 param_hdr;
  8472. int port = SLIMBUS_4_TX;
  8473. int ret = -EINVAL;
  8474. if (!ex_vi) {
  8475. pr_err("%s: Invalid params\n", __func__);
  8476. goto done;
  8477. }
  8478. if (this_afe.vi_tx_port != -1)
  8479. port = this_afe.vi_tx_port;
  8480. mutex_lock(&this_afe.afe_cmd_lock);
  8481. memset(&param_hdr, 0, sizeof(param_hdr));
  8482. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI;
  8483. param_hdr.instance_id = INSTANCE_ID_0;
  8484. param_hdr.param_id = AFE_PARAM_ID_SP_V2_EX_VI_FTM_PARAMS;
  8485. param_hdr.param_size = sizeof(struct afe_sp_ex_vi_ftm_params);
  8486. ret = q6afe_get_params(port, NULL, &param_hdr);
  8487. if (ret < 0) {
  8488. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  8489. __func__, port, param_hdr.param_id, ret);
  8490. goto get_params_fail;
  8491. }
  8492. ex_vi->pdata = param_hdr;
  8493. memcpy(&ex_vi->param, &this_afe.ex_vi_resp.param,
  8494. sizeof(this_afe.ex_vi_resp.param));
  8495. pr_debug("%s: freq %d %d resistance %d %d qfactor %d %d state %d %d\n",
  8496. __func__, ex_vi->param.freq_q20[SP_V2_SPKR_1],
  8497. ex_vi->param.freq_q20[SP_V2_SPKR_2],
  8498. ex_vi->param.resis_q24[SP_V2_SPKR_1],
  8499. ex_vi->param.resis_q24[SP_V2_SPKR_2],
  8500. ex_vi->param.qmct_q24[SP_V2_SPKR_1],
  8501. ex_vi->param.qmct_q24[SP_V2_SPKR_2],
  8502. ex_vi->param.status[SP_V2_SPKR_1],
  8503. ex_vi->param.status[SP_V2_SPKR_2]);
  8504. ret = 0;
  8505. get_params_fail:
  8506. mutex_unlock(&this_afe.afe_cmd_lock);
  8507. done:
  8508. return ret;
  8509. }
  8510. static int afe_get_sp_v4_rx_tmax_xmax_logging_data(
  8511. struct afe_sp_rx_tmax_xmax_logging_param *xt_logging,
  8512. u16 port_id)
  8513. {
  8514. struct param_hdr_v3 param_hdr;
  8515. int ret = -EINVAL;
  8516. struct afe_sp_v4_channel_tmax_xmax_params *tx_channel_params;
  8517. uint32_t i, size = 0;
  8518. if (!xt_logging) {
  8519. pr_err("%s: Invalid params\n", __func__);
  8520. goto done;
  8521. }
  8522. size = sizeof(struct afe_sp_v4_param_tmax_xmax_logging) +
  8523. (SP_V2_NUM_MAX_SPKRS *
  8524. sizeof(struct afe_sp_v4_channel_tmax_xmax_params));
  8525. memset(&param_hdr, 0, sizeof(param_hdr));
  8526. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_RX;
  8527. param_hdr.instance_id = INSTANCE_ID_0;
  8528. param_hdr.param_id = AFE_PARAM_ID_SP_V4_RX_TMAX_XMAX_LOGGING;
  8529. param_hdr.param_size = size;
  8530. ret = q6afe_get_params(port_id, NULL, &param_hdr);
  8531. if (ret) {
  8532. pr_err("%s: Failed to get Tmax Xmax logging data\n", __func__);
  8533. goto get_params_fail;
  8534. }
  8535. tx_channel_params = &this_afe.spv4_max_log_resp.ch_max_params[0];
  8536. for (i = 0; i < this_afe.spv4_max_log_resp.num_ch; i++) {
  8537. xt_logging->max_excursion[i] =
  8538. tx_channel_params[i].max_excursion;
  8539. xt_logging->count_exceeded_excursion[i] =
  8540. tx_channel_params[i].count_exceeded_excursion;
  8541. xt_logging->max_temperature[i] =
  8542. tx_channel_params[i].max_temperature;
  8543. xt_logging->count_exceeded_temperature[i] =
  8544. tx_channel_params[i].count_exceeded_temperature;
  8545. }
  8546. ret = 0;
  8547. get_params_fail:
  8548. done:
  8549. return ret;
  8550. }
  8551. /**
  8552. * afe_get_sp_rx_tmax_xmax_logging_data -
  8553. * command to get excursion logging data from DSP
  8554. *
  8555. * @xt_logging: excursion logging params
  8556. * @port: AFE port ID
  8557. *
  8558. * Returns 0 on success or error on failure
  8559. */
  8560. int afe_get_sp_rx_tmax_xmax_logging_data(
  8561. struct afe_sp_rx_tmax_xmax_logging_param *xt_logging,
  8562. u16 port_id)
  8563. {
  8564. struct param_hdr_v3 param_hdr;
  8565. int ret = -EINVAL;
  8566. if (!xt_logging) {
  8567. pr_err("%s: Invalid params\n", __func__);
  8568. goto done;
  8569. }
  8570. mutex_lock(&this_afe.afe_cmd_lock);
  8571. if (q6core_get_avcs_api_version_per_service(
  8572. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  8573. ret = afe_get_sp_v4_rx_tmax_xmax_logging_data(xt_logging,
  8574. port_id);
  8575. } else {
  8576. memset(&param_hdr, 0, sizeof(param_hdr));
  8577. param_hdr.module_id = AFE_MODULE_FB_SPKR_PROT_V2_RX;
  8578. param_hdr.instance_id = INSTANCE_ID_0;
  8579. param_hdr.param_id = AFE_PARAM_ID_SP_RX_TMAX_XMAX_LOGGING;
  8580. param_hdr.param_size =
  8581. sizeof(struct afe_sp_rx_tmax_xmax_logging_param);
  8582. ret = q6afe_get_params(port_id, NULL, &param_hdr);
  8583. if (ret < 0) {
  8584. pr_err(
  8585. "%s: get param port 0x%x param id[0x%x]failed %d\n",
  8586. __func__, port_id, param_hdr.param_id, ret);
  8587. goto get_params_fail;
  8588. }
  8589. memcpy(xt_logging, &this_afe.xt_logging_resp.param,
  8590. sizeof(this_afe.xt_logging_resp.param));
  8591. }
  8592. pr_debug("%s: max_excursion %d %d count_exceeded_excursion %d %d"
  8593. " max_temperature %d %d count_exceeded_temperature %d %d\n",
  8594. __func__, xt_logging->max_excursion[SP_V2_SPKR_1],
  8595. xt_logging->max_excursion[SP_V2_SPKR_2],
  8596. xt_logging->count_exceeded_excursion[SP_V2_SPKR_1],
  8597. xt_logging->count_exceeded_excursion[SP_V2_SPKR_2],
  8598. xt_logging->max_temperature[SP_V2_SPKR_1],
  8599. xt_logging->max_temperature[SP_V2_SPKR_2],
  8600. xt_logging->count_exceeded_temperature[SP_V2_SPKR_1],
  8601. xt_logging->count_exceeded_temperature[SP_V2_SPKR_2]);
  8602. get_params_fail:
  8603. mutex_unlock(&this_afe.afe_cmd_lock);
  8604. done:
  8605. return ret;
  8606. }
  8607. EXPORT_SYMBOL(afe_get_sp_rx_tmax_xmax_logging_data);
  8608. /**
  8609. * afe_get_av_dev_drift -
  8610. * command to retrieve AV drift
  8611. *
  8612. * @timing_stats: timing stats to be updated with AV drift values
  8613. * @port: AFE port ID
  8614. *
  8615. * Returns 0 on success or error on failure
  8616. */
  8617. int afe_get_av_dev_drift(struct afe_param_id_dev_timing_stats *timing_stats,
  8618. u16 port)
  8619. {
  8620. struct param_hdr_v3 param_hdr;
  8621. int ret = -EINVAL;
  8622. if (!timing_stats) {
  8623. pr_err("%s: Invalid params\n", __func__);
  8624. goto exit;
  8625. }
  8626. mutex_lock(&this_afe.afe_cmd_lock);
  8627. memset(&param_hdr, 0, sizeof(param_hdr));
  8628. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  8629. param_hdr.instance_id = INSTANCE_ID_0;
  8630. param_hdr.param_id = AFE_PARAM_ID_DEV_TIMING_STATS;
  8631. param_hdr.param_size = sizeof(struct afe_param_id_dev_timing_stats);
  8632. ret = q6afe_get_params(port, NULL, &param_hdr);
  8633. if (ret < 0) {
  8634. pr_err("%s: get param port 0x%x param id[0x%x] failed %d\n",
  8635. __func__, port, param_hdr.param_id, ret);
  8636. goto get_params_fail;
  8637. }
  8638. memcpy(timing_stats, &this_afe.av_dev_drift_resp.timing_stats,
  8639. param_hdr.param_size);
  8640. ret = 0;
  8641. get_params_fail:
  8642. mutex_unlock(&this_afe.afe_cmd_lock);
  8643. exit:
  8644. return ret;
  8645. }
  8646. EXPORT_SYMBOL(afe_get_av_dev_drift);
  8647. /**
  8648. * afe_get_doa_tracking_mon -
  8649. * command to retrieve doa tracking monitor data
  8650. *
  8651. * @port: AFE port ID
  8652. * @doa_tracking_data: param to be updated with doa tracking data
  8653. *
  8654. * Returns 0 on success or error on failure
  8655. */
  8656. int afe_get_doa_tracking_mon(u16 port,
  8657. struct doa_tracking_mon_param *doa_tracking_data)
  8658. {
  8659. struct param_hdr_v3 param_hdr;
  8660. int ret = -EINVAL, i = 0;
  8661. if (!doa_tracking_data) {
  8662. pr_err("%s: Invalid params\n", __func__);
  8663. goto exit;
  8664. }
  8665. mutex_lock(&this_afe.afe_cmd_lock);
  8666. memset(&param_hdr, 0, sizeof(param_hdr));
  8667. param_hdr.module_id = AUDPROC_MODULE_ID_FFNS;
  8668. param_hdr.instance_id = INSTANCE_ID_0;
  8669. param_hdr.param_id = AUDPROC_PARAM_ID_FFV_DOA_TRACKING_MONITOR;
  8670. param_hdr.param_size = sizeof(struct doa_tracking_mon_param);
  8671. ret = q6afe_get_params(port, NULL, &param_hdr);
  8672. if (ret < 0) {
  8673. pr_err("%s: get param port 0x%x param id[0x%x] failed %d\n",
  8674. __func__, port, param_hdr.param_id, ret);
  8675. goto get_params_fail;
  8676. }
  8677. memcpy(doa_tracking_data, &this_afe.doa_tracking_mon_resp.doa,
  8678. param_hdr.param_size);
  8679. for (i = 0; i < MAX_DOA_TRACKING_ANGLES; i++) {
  8680. pr_debug("%s: target angle[%d] = %d\n",
  8681. __func__, i, doa_tracking_data->target_angle_L16[i]);
  8682. pr_debug("%s: interference angle[%d] = %d\n",
  8683. __func__, i, doa_tracking_data->interf_angle_L16[i]);
  8684. }
  8685. get_params_fail:
  8686. mutex_unlock(&this_afe.afe_cmd_lock);
  8687. exit:
  8688. return ret;
  8689. }
  8690. EXPORT_SYMBOL(afe_get_doa_tracking_mon);
  8691. static int afe_spv4_get_calib_data(
  8692. struct afe_sp_v4_th_vi_calib_resp *calib_resp)
  8693. {
  8694. struct param_hdr_v3 param_hdr;
  8695. int port = SLIMBUS_4_TX;
  8696. int ret = -EINVAL;
  8697. if (!calib_resp) {
  8698. pr_err("%s: Invalid params\n", __func__);
  8699. goto fail_cmd;
  8700. }
  8701. if (this_afe.vi_tx_port != -1)
  8702. port = this_afe.vi_tx_port;
  8703. mutex_lock(&this_afe.afe_cmd_lock);
  8704. memset(&param_hdr, 0, sizeof(param_hdr));
  8705. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  8706. param_hdr.instance_id = INSTANCE_ID_0;
  8707. param_hdr.param_id = AFE_PARAM_ID_SP_V4_CALIB_RES_CFG;
  8708. param_hdr.param_size = sizeof(struct afe_sp_v4_th_vi_calib_resp);
  8709. ret = q6afe_get_params(port, NULL, &param_hdr);
  8710. if (ret < 0) {
  8711. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  8712. __func__, port, param_hdr.param_id, ret);
  8713. goto get_params_fail;
  8714. }
  8715. memcpy(&calib_resp->res_cfg, &this_afe.spv4_calib_data.res_cfg,
  8716. sizeof(this_afe.calib_data.res_cfg));
  8717. pr_info("%s: state %s resistance %d %d\n", __func__,
  8718. fbsp_state[calib_resp->res_cfg.th_vi_ca_state],
  8719. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_1],
  8720. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_2]);
  8721. ret = 0;
  8722. get_params_fail:
  8723. mutex_unlock(&this_afe.afe_cmd_lock);
  8724. fail_cmd:
  8725. return ret;
  8726. }
  8727. int afe_spk_prot_get_calib_data(struct afe_spkr_prot_get_vi_calib *calib_resp)
  8728. {
  8729. struct param_hdr_v3 param_hdr;
  8730. int port = SLIMBUS_4_TX;
  8731. int ret = -EINVAL;
  8732. if (!calib_resp) {
  8733. pr_err("%s: Invalid params\n", __func__);
  8734. goto fail_cmd;
  8735. }
  8736. if (this_afe.vi_tx_port != -1)
  8737. port = this_afe.vi_tx_port;
  8738. mutex_lock(&this_afe.afe_cmd_lock);
  8739. memset(&param_hdr, 0, sizeof(param_hdr));
  8740. param_hdr.module_id = AFE_MODULE_FB_SPKR_PROT_VI_PROC_V2;
  8741. param_hdr.instance_id = INSTANCE_ID_0;
  8742. param_hdr.param_id = AFE_PARAM_ID_CALIB_RES_CFG_V2;
  8743. param_hdr.param_size = sizeof(struct afe_spkr_prot_get_vi_calib);
  8744. ret = q6afe_get_params(port, NULL, &param_hdr);
  8745. if (ret < 0) {
  8746. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  8747. __func__, port, param_hdr.param_id, ret);
  8748. goto get_params_fail;
  8749. }
  8750. memcpy(&calib_resp->res_cfg, &this_afe.calib_data.res_cfg,
  8751. sizeof(this_afe.calib_data.res_cfg));
  8752. pr_info("%s: state %s resistance %d %d\n", __func__,
  8753. fbsp_state[calib_resp->res_cfg.th_vi_ca_state],
  8754. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_1],
  8755. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_2]);
  8756. ret = 0;
  8757. get_params_fail:
  8758. mutex_unlock(&this_afe.afe_cmd_lock);
  8759. fail_cmd:
  8760. return ret;
  8761. }
  8762. /**
  8763. * afe_spk_prot_feed_back_cfg -
  8764. * command to setup spk protection feedback config
  8765. *
  8766. * @src_port: source port id
  8767. * @dst_port: destination port id
  8768. * @l_ch: left speaker active or not
  8769. * @r_ch: right speaker active or not
  8770. * @enable: flag to enable or disable
  8771. *
  8772. * Returns 0 on success or error on failure
  8773. */
  8774. int afe_spk_prot_feed_back_cfg(int src_port, int dst_port,
  8775. int l_ch, int r_ch, u32 enable)
  8776. {
  8777. int ret = -EINVAL;
  8778. union afe_spkr_prot_config prot_config;
  8779. int index = 0;
  8780. if (!enable) {
  8781. pr_debug("%s: Disable Feedback tx path", __func__);
  8782. this_afe.vi_tx_port = -1;
  8783. this_afe.vi_rx_port = -1;
  8784. return 0;
  8785. }
  8786. if ((q6audio_validate_port(src_port) < 0) ||
  8787. (q6audio_validate_port(dst_port) < 0)) {
  8788. pr_err("%s: invalid ports src 0x%x dst 0x%x",
  8789. __func__, src_port, dst_port);
  8790. goto fail_cmd;
  8791. }
  8792. if (!l_ch && !r_ch) {
  8793. pr_err("%s: error ch values zero\n", __func__);
  8794. goto fail_cmd;
  8795. }
  8796. pr_debug("%s: src_port 0x%x dst_port 0x%x l_ch %d r_ch %d\n",
  8797. __func__, src_port, dst_port, l_ch, r_ch);
  8798. if (q6core_get_avcs_api_version_per_service(
  8799. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  8800. if (l_ch) {
  8801. this_afe.v4_ch_map_cfg.chan_info[index++] = 1;
  8802. this_afe.v4_ch_map_cfg.chan_info[index++] = 2;
  8803. }
  8804. if (r_ch) {
  8805. this_afe.v4_ch_map_cfg.chan_info[index++] = 3;
  8806. this_afe.v4_ch_map_cfg.chan_info[index++] = 4;
  8807. }
  8808. this_afe.v4_ch_map_cfg.num_channels = index;
  8809. this_afe.num_spkrs = index / 2;
  8810. }
  8811. index = 0;
  8812. memset(&prot_config, 0, sizeof(prot_config));
  8813. prot_config.feedback_path_cfg.dst_portid =
  8814. q6audio_get_port_id(dst_port);
  8815. if (l_ch) {
  8816. prot_config.feedback_path_cfg.chan_info[index++] = 1;
  8817. prot_config.feedback_path_cfg.chan_info[index++] = 2;
  8818. }
  8819. if (r_ch) {
  8820. prot_config.feedback_path_cfg.chan_info[index++] = 3;
  8821. prot_config.feedback_path_cfg.chan_info[index++] = 4;
  8822. }
  8823. prot_config.feedback_path_cfg.num_channels = index;
  8824. pr_debug("%s no of channels: %d\n", __func__, index);
  8825. prot_config.feedback_path_cfg.minor_version = 1;
  8826. ret = afe_spk_prot_prepare(src_port, dst_port,
  8827. AFE_PARAM_ID_FEEDBACK_PATH_CFG, &prot_config,
  8828. sizeof(union afe_spkr_prot_config));
  8829. fail_cmd:
  8830. return ret;
  8831. }
  8832. EXPORT_SYMBOL(afe_spk_prot_feed_back_cfg);
  8833. static int get_cal_type_index(int32_t cal_type)
  8834. {
  8835. int ret = -EINVAL;
  8836. switch (cal_type) {
  8837. case AFE_COMMON_RX_CAL_TYPE:
  8838. ret = AFE_COMMON_RX_CAL;
  8839. break;
  8840. case AFE_COMMON_TX_CAL_TYPE:
  8841. ret = AFE_COMMON_TX_CAL;
  8842. break;
  8843. case AFE_LSM_TX_CAL_TYPE:
  8844. ret = AFE_LSM_TX_CAL;
  8845. break;
  8846. case AFE_AANC_CAL_TYPE:
  8847. ret = AFE_AANC_CAL;
  8848. break;
  8849. case AFE_HW_DELAY_CAL_TYPE:
  8850. ret = AFE_HW_DELAY_CAL;
  8851. break;
  8852. case AFE_FB_SPKR_PROT_CAL_TYPE:
  8853. ret = AFE_FB_SPKR_PROT_CAL;
  8854. break;
  8855. case AFE_SIDETONE_CAL_TYPE:
  8856. ret = AFE_SIDETONE_CAL;
  8857. break;
  8858. case AFE_SIDETONE_IIR_CAL_TYPE:
  8859. ret = AFE_SIDETONE_IIR_CAL;
  8860. break;
  8861. case AFE_TOPOLOGY_CAL_TYPE:
  8862. ret = AFE_TOPOLOGY_CAL;
  8863. break;
  8864. case AFE_LSM_TOPOLOGY_CAL_TYPE:
  8865. ret = AFE_LSM_TOPOLOGY_CAL;
  8866. break;
  8867. case AFE_CUST_TOPOLOGY_CAL_TYPE:
  8868. ret = AFE_CUST_TOPOLOGY_CAL;
  8869. break;
  8870. default:
  8871. pr_err("%s: invalid cal type %d!\n", __func__, cal_type);
  8872. }
  8873. return ret;
  8874. }
  8875. int afe_alloc_cal(int32_t cal_type, size_t data_size,
  8876. void *data)
  8877. {
  8878. int ret = 0;
  8879. int cal_index;
  8880. cal_index = get_cal_type_index(cal_type);
  8881. pr_debug("%s: cal_type = %d cal_index = %d\n",
  8882. __func__, cal_type, cal_index);
  8883. if (cal_index < 0) {
  8884. pr_err("%s: could not get cal index %d!\n",
  8885. __func__, cal_index);
  8886. ret = -EINVAL;
  8887. goto done;
  8888. }
  8889. mutex_lock(&this_afe.afe_cmd_lock);
  8890. ret = cal_utils_alloc_cal(data_size, data,
  8891. this_afe.cal_data[cal_index], 0, NULL);
  8892. if (ret < 0) {
  8893. pr_err("%s: cal_utils_alloc_block failed, ret = %d, cal type = %d!\n",
  8894. __func__, ret, cal_type);
  8895. ret = -EINVAL;
  8896. mutex_unlock(&this_afe.afe_cmd_lock);
  8897. goto done;
  8898. }
  8899. mutex_unlock(&this_afe.afe_cmd_lock);
  8900. done:
  8901. return ret;
  8902. }
  8903. static int afe_dealloc_cal(int32_t cal_type, size_t data_size,
  8904. void *data)
  8905. {
  8906. int ret = 0;
  8907. int cal_index;
  8908. pr_debug("%s:\n", __func__);
  8909. cal_index = get_cal_type_index(cal_type);
  8910. if (cal_index < 0) {
  8911. pr_err("%s: could not get cal index %d!\n",
  8912. __func__, cal_index);
  8913. ret = -EINVAL;
  8914. goto done;
  8915. }
  8916. ret = cal_utils_dealloc_cal(data_size, data,
  8917. this_afe.cal_data[cal_index]);
  8918. if (ret < 0) {
  8919. pr_err("%s: cal_utils_dealloc_block failed, ret = %d, cal type = %d!\n",
  8920. __func__, ret, cal_type);
  8921. ret = -EINVAL;
  8922. goto done;
  8923. }
  8924. done:
  8925. return ret;
  8926. }
  8927. static int afe_set_cal(int32_t cal_type, size_t data_size,
  8928. void *data)
  8929. {
  8930. int ret = 0;
  8931. int cal_index;
  8932. pr_debug("%s:\n", __func__);
  8933. cal_index = get_cal_type_index(cal_type);
  8934. if (cal_index < 0) {
  8935. pr_err("%s: could not get cal index %d!\n",
  8936. __func__, cal_index);
  8937. ret = -EINVAL;
  8938. goto done;
  8939. }
  8940. ret = cal_utils_set_cal(data_size, data,
  8941. this_afe.cal_data[cal_index], 0, NULL);
  8942. if (ret < 0) {
  8943. pr_err("%s: cal_utils_set_cal failed, ret = %d, cal type = %d!\n",
  8944. __func__, ret, cal_type);
  8945. ret = -EINVAL;
  8946. goto done;
  8947. }
  8948. if (cal_index == AFE_CUST_TOPOLOGY_CAL) {
  8949. mutex_lock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  8950. this_afe.set_custom_topology = 1;
  8951. pr_debug("%s:[AFE_CUSTOM_TOPOLOGY] ret = %d, cal type = %d!\n",
  8952. __func__, ret, cal_type);
  8953. mutex_unlock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  8954. }
  8955. done:
  8956. return ret;
  8957. }
  8958. static struct cal_block_data *afe_find_hw_delay_by_path(
  8959. struct cal_type_data *cal_type, int path)
  8960. {
  8961. struct list_head *ptr, *next;
  8962. struct cal_block_data *cal_block = NULL;
  8963. pr_debug("%s:\n", __func__);
  8964. list_for_each_safe(ptr, next,
  8965. &cal_type->cal_blocks) {
  8966. cal_block = list_entry(ptr,
  8967. struct cal_block_data, list);
  8968. if (cal_utils_is_cal_stale(cal_block))
  8969. continue;
  8970. if (((struct audio_cal_info_hw_delay *)cal_block->cal_info)
  8971. ->path == path) {
  8972. return cal_block;
  8973. }
  8974. }
  8975. return NULL;
  8976. }
  8977. static int afe_get_cal_hw_delay(int32_t path,
  8978. struct audio_cal_hw_delay_entry *entry)
  8979. {
  8980. int ret = 0;
  8981. int i;
  8982. struct cal_block_data *cal_block = NULL;
  8983. struct audio_cal_hw_delay_data *hw_delay_info = NULL;
  8984. pr_debug("%s:\n", __func__);
  8985. if (this_afe.cal_data[AFE_HW_DELAY_CAL] == NULL) {
  8986. pr_err("%s: AFE_HW_DELAY_CAL not initialized\n", __func__);
  8987. ret = -EINVAL;
  8988. goto done;
  8989. }
  8990. if (entry == NULL) {
  8991. pr_err("%s: entry is NULL\n", __func__);
  8992. ret = -EINVAL;
  8993. goto done;
  8994. }
  8995. if ((path >= MAX_PATH_TYPE) || (path < 0)) {
  8996. pr_err("%s: bad path: %d\n",
  8997. __func__, path);
  8998. ret = -EINVAL;
  8999. goto done;
  9000. }
  9001. mutex_lock(&this_afe.cal_data[AFE_HW_DELAY_CAL]->lock);
  9002. cal_block = afe_find_hw_delay_by_path(
  9003. this_afe.cal_data[AFE_HW_DELAY_CAL], path);
  9004. if (cal_block == NULL)
  9005. goto unlock;
  9006. hw_delay_info = &((struct audio_cal_info_hw_delay *)
  9007. cal_block->cal_info)->data;
  9008. if (hw_delay_info->num_entries > MAX_HW_DELAY_ENTRIES) {
  9009. pr_err("%s: invalid num entries: %d\n",
  9010. __func__, hw_delay_info->num_entries);
  9011. ret = -EINVAL;
  9012. goto unlock;
  9013. }
  9014. for (i = 0; i < hw_delay_info->num_entries; i++) {
  9015. if (hw_delay_info->entry[i].sample_rate ==
  9016. entry->sample_rate) {
  9017. entry->delay_usec = hw_delay_info->entry[i].delay_usec;
  9018. break;
  9019. }
  9020. }
  9021. if (i == hw_delay_info->num_entries) {
  9022. pr_err("%s: Unable to find delay for sample rate %d\n",
  9023. __func__, entry->sample_rate);
  9024. ret = -EFAULT;
  9025. goto unlock;
  9026. }
  9027. cal_utils_mark_cal_used(cal_block);
  9028. pr_debug("%s: Path = %d samplerate = %u usec = %u status %d\n",
  9029. __func__, path, entry->sample_rate, entry->delay_usec, ret);
  9030. unlock:
  9031. mutex_unlock(&this_afe.cal_data[AFE_HW_DELAY_CAL]->lock);
  9032. done:
  9033. return ret;
  9034. }
  9035. static int afe_set_cal_sp_th_vi_v_vali_cfg(int32_t cal_type, size_t data_size,
  9036. void *data)
  9037. {
  9038. int ret = 0;
  9039. struct audio_cal_type_sp_th_vi_v_vali_cfg *cal_data = data;
  9040. if (cal_data == NULL || data_size != sizeof(*cal_data))
  9041. goto done;
  9042. memcpy(&this_afe.v_vali_cfg, &cal_data->cal_info,
  9043. sizeof(this_afe.v_vali_cfg));
  9044. done:
  9045. return ret;
  9046. }
  9047. static int afe_set_cal_sp_th_vi_ftm_cfg(int32_t cal_type, size_t data_size,
  9048. void *data)
  9049. {
  9050. int ret = 0;
  9051. struct audio_cal_type_sp_th_vi_ftm_cfg *cal_data = data;
  9052. if (cal_data == NULL || data_size != sizeof(*cal_data))
  9053. goto done;
  9054. memcpy(&this_afe.th_ftm_cfg, &cal_data->cal_info,
  9055. sizeof(this_afe.th_ftm_cfg));
  9056. done:
  9057. return ret;
  9058. }
  9059. static int afe_set_cal_sp_th_vi_cfg(int32_t cal_type, size_t data_size,
  9060. void *data)
  9061. {
  9062. int ret = 0;
  9063. struct audio_cal_type_sp_th_vi_ftm_cfg *cal_data = data;
  9064. uint32_t mode;
  9065. if (cal_data == NULL ||
  9066. data_size > sizeof(*cal_data) ||
  9067. this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL)
  9068. goto done;
  9069. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  9070. mode = cal_data->cal_info.mode;
  9071. pr_debug("%s: cal_type = %d, mode = %d\n", __func__, cal_type, mode);
  9072. if (mode == MSM_SPKR_PROT_IN_FTM_MODE) {
  9073. ret = afe_set_cal_sp_th_vi_ftm_cfg(cal_type,
  9074. data_size, data);
  9075. } else if (mode == MSM_SPKR_PROT_IN_V_VALI_MODE) {
  9076. ret = afe_set_cal_sp_th_vi_v_vali_cfg(cal_type,
  9077. data_size, data);
  9078. }
  9079. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  9080. done:
  9081. return ret;
  9082. }
  9083. static int afe_set_cal_sp_ex_vi_ftm_cfg(int32_t cal_type, size_t data_size,
  9084. void *data)
  9085. {
  9086. int ret = 0;
  9087. struct audio_cal_type_sp_ex_vi_ftm_cfg *cal_data = data;
  9088. if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL ||
  9089. cal_data == NULL ||
  9090. data_size != sizeof(*cal_data))
  9091. goto done;
  9092. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  9093. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  9094. memcpy(&this_afe.ex_ftm_cfg, &cal_data->cal_info,
  9095. sizeof(this_afe.ex_ftm_cfg));
  9096. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  9097. done:
  9098. return ret;
  9099. }
  9100. static int afe_set_cal_fb_spkr_prot(int32_t cal_type, size_t data_size,
  9101. void *data)
  9102. {
  9103. int ret = 0;
  9104. struct audio_cal_type_fb_spk_prot_cfg *cal_data = data;
  9105. pr_debug("%s:\n", __func__);
  9106. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  9107. goto done;
  9108. if (cal_data == NULL)
  9109. goto done;
  9110. if (data_size != sizeof(*cal_data))
  9111. goto done;
  9112. if (cal_data->cal_info.mode == MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS)
  9113. __pm_wakeup_event(wl.ws, jiffies_to_msecs(WAKELOCK_TIMEOUT));
  9114. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  9115. memcpy(&this_afe.prot_cfg, &cal_data->cal_info,
  9116. sizeof(this_afe.prot_cfg));
  9117. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  9118. done:
  9119. return ret;
  9120. }
  9121. static int afe_get_cal_sp_th_vi_v_vali_param(int32_t cal_type, size_t data_size,
  9122. void *data)
  9123. {
  9124. int i, ret = 0;
  9125. struct audio_cal_type_sp_th_vi_v_vali_param *cal_data = data;
  9126. struct afe_sp_th_vi_v_vali_get_param th_vi_v_vali;
  9127. uint32_t size;
  9128. void *params = NULL;
  9129. struct afe_sp_v4_channel_v_vali_params *v_vali_params;
  9130. if (this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  9131. cal_data == NULL ||
  9132. data_size != sizeof(*cal_data))
  9133. goto done;
  9134. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9135. cal_data->cal_info.status[i] = -EINVAL;
  9136. cal_data->cal_info.vrms_q24[i] = -1;
  9137. }
  9138. if (q6core_get_avcs_api_version_per_service(
  9139. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  9140. size = sizeof(struct afe_sp_v4_param_th_vi_v_vali_params) +
  9141. (SP_V2_NUM_MAX_SPKRS *
  9142. sizeof(struct afe_sp_v4_channel_v_vali_params));
  9143. params = kzalloc(size, GFP_KERNEL);
  9144. if (!params)
  9145. return -ENOMEM;
  9146. v_vali_params =
  9147. (struct afe_sp_v4_channel_v_vali_params *)((u8 *)params +
  9148. sizeof(struct afe_sp_v4_param_th_vi_v_vali_params));
  9149. if (!afe_get_spv4_th_vi_v_vali_data(params, size)) {
  9150. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9151. pr_debug("%s: ftm param status = %d\n",
  9152. __func__, v_vali_params[i].status);
  9153. if (v_vali_params[i].status ==
  9154. V_VALI_IN_PROGRESS) {
  9155. cal_data->cal_info.status[i] = -EAGAIN;
  9156. } else if (v_vali_params[i].status ==
  9157. V_VALI_SUCCESS) {
  9158. cal_data->cal_info.status[i] =
  9159. V_VALI_SUCCESS;
  9160. cal_data->cal_info.vrms_q24[i] =
  9161. v_vali_params[i].vrms_q24;
  9162. }
  9163. }
  9164. }
  9165. kfree(params);
  9166. } else {
  9167. if (!afe_get_sp_th_vi_v_vali_data(&th_vi_v_vali)) {
  9168. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9169. pr_debug(
  9170. "%s: v-vali param status = %d\n",
  9171. __func__, th_vi_v_vali.param.status[i]);
  9172. if (th_vi_v_vali.param.status[i] ==
  9173. V_VALI_IN_PROGRESS) {
  9174. cal_data->cal_info.status[i] = -EAGAIN;
  9175. } else if (th_vi_v_vali.param.status[i] ==
  9176. V_VALI_SUCCESS) {
  9177. cal_data->cal_info.status[i] =
  9178. V_VALI_SUCCESS;
  9179. cal_data->cal_info.vrms_q24[i] =
  9180. th_vi_v_vali.param.vrms_q24[i];
  9181. }
  9182. }
  9183. }
  9184. }
  9185. this_afe.v_vali_flag = 0;
  9186. done:
  9187. return ret;
  9188. }
  9189. static int afe_get_cal_sp_th_vi_ftm_param(int32_t cal_type, size_t data_size,
  9190. void *data)
  9191. {
  9192. int i, ret = 0;
  9193. struct audio_cal_type_sp_th_vi_param *cal_data = data;
  9194. struct afe_sp_th_vi_get_param th_vi;
  9195. uint32_t size;
  9196. void *params = NULL;
  9197. struct afe_sp_v4_channel_ftm_params *th_vi_ftm_params = NULL;
  9198. if (this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  9199. cal_data == NULL ||
  9200. data_size != sizeof(*cal_data))
  9201. goto done;
  9202. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9203. cal_data->cal_info.status[i] = -EINVAL;
  9204. cal_data->cal_info.r_dc_q24[i] = -1;
  9205. cal_data->cal_info.temp_q22[i] = -1;
  9206. }
  9207. if (q6core_get_avcs_api_version_per_service(
  9208. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  9209. size = sizeof(struct afe_sp_v4_param_th_vi_ftm_params) +
  9210. (SP_V2_NUM_MAX_SPKRS *
  9211. sizeof(struct afe_sp_v4_channel_ftm_params));
  9212. params = kzalloc(size, GFP_KERNEL);
  9213. if (!params)
  9214. return -ENOMEM;
  9215. th_vi_ftm_params = (struct afe_sp_v4_channel_ftm_params *)
  9216. ((u8 *)params +
  9217. sizeof(struct afe_sp_v4_param_th_vi_ftm_params));
  9218. if (!afe_get_spv4_th_vi_ftm_data(params, size)) {
  9219. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9220. pr_debug("%s: SP V4 ftm param status = %d\n",
  9221. __func__, th_vi_ftm_params[i].status);
  9222. if (th_vi_ftm_params[i].status ==
  9223. FBSP_IN_PROGRESS) {
  9224. cal_data->cal_info.status[i] = -EAGAIN;
  9225. } else if (th_vi_ftm_params[i].status ==
  9226. FBSP_SUCCESS) {
  9227. cal_data->cal_info.status[i] = 0;
  9228. cal_data->cal_info.r_dc_q24[i] =
  9229. th_vi_ftm_params[i].dc_res_q24;
  9230. cal_data->cal_info.temp_q22[i] =
  9231. th_vi_ftm_params[i].temp_q22;
  9232. }
  9233. }
  9234. }
  9235. kfree(params);
  9236. } else {
  9237. if (!afe_get_sp_th_vi_ftm_data(&th_vi)) {
  9238. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9239. pr_debug("%s: ftm param status = %d\n",
  9240. __func__, th_vi.param.status[i]);
  9241. if (th_vi.param.status[i] == FBSP_IN_PROGRESS) {
  9242. cal_data->cal_info.status[i] = -EAGAIN;
  9243. } else if (th_vi.param.status[i] ==
  9244. FBSP_SUCCESS) {
  9245. cal_data->cal_info.status[i] = 0;
  9246. cal_data->cal_info.r_dc_q24[i] =
  9247. th_vi.param.dc_res_q24[i];
  9248. cal_data->cal_info.temp_q22[i] =
  9249. th_vi.param.temp_q22[i];
  9250. }
  9251. }
  9252. }
  9253. }
  9254. done:
  9255. return ret;
  9256. }
  9257. static int afe_get_cal_sp_th_vi_param(int32_t cal_type, size_t data_size,
  9258. void *data)
  9259. {
  9260. struct audio_cal_type_sp_th_vi_param *cal_data = data;
  9261. uint32_t mode;
  9262. int ret = 0;
  9263. if (cal_data == NULL ||
  9264. data_size > sizeof(*cal_data) ||
  9265. this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL)
  9266. return 0;
  9267. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  9268. mode = cal_data->cal_info.mode;
  9269. pr_debug("%s: cal_type = %d,mode = %d\n", __func__, cal_type, mode);
  9270. if (mode == MSM_SPKR_PROT_IN_V_VALI_MODE)
  9271. ret = afe_get_cal_sp_th_vi_v_vali_param(cal_type,
  9272. data_size, data);
  9273. else
  9274. ret = afe_get_cal_sp_th_vi_ftm_param(cal_type,
  9275. data_size, data);
  9276. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  9277. return ret;
  9278. }
  9279. static int afe_get_cal_spv4_ex_vi_ftm_param(int32_t cal_type, size_t data_size,
  9280. void *data)
  9281. {
  9282. int i, ret = 0;
  9283. struct audio_cal_type_sp_v4_ex_vi_param *cal_data = data;
  9284. uint32_t size;
  9285. void *params = NULL;
  9286. struct afe_sp_v4_channel_ex_vi_ftm_params *ex_vi_ftm_param;
  9287. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  9288. if (this_afe.cal_data[AFE_FB_SPKR_PROT_V4_EX_VI_CAL] == NULL ||
  9289. cal_data == NULL ||
  9290. data_size != sizeof(*cal_data))
  9291. goto done;
  9292. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_V4_EX_VI_CAL]->lock);
  9293. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9294. cal_data->cal_info.status[i] = -EINVAL;
  9295. cal_data->cal_info.ftm_re_q24[i] = -1;
  9296. cal_data->cal_info.ftm_re_q24[i] = -1;
  9297. cal_data->cal_info.ftm_Rms_q24[i] = -1;
  9298. cal_data->cal_info.ftm_Kms_q24[i] = -1;
  9299. cal_data->cal_info.ftm_freq_q20[i] = -1;
  9300. cal_data->cal_info.ftm_Qms_q24[i] = -1;
  9301. }
  9302. size = sizeof(struct afe_sp_v4_param_ex_vi_ftm_params) +
  9303. (SP_V2_NUM_MAX_SPKRS *
  9304. sizeof(struct afe_sp_v4_channel_ex_vi_ftm_params));
  9305. params = kzalloc(size, GFP_KERNEL);
  9306. if (!params) {
  9307. mutex_unlock(
  9308. &this_afe.cal_data[AFE_FB_SPKR_PROT_V4_EX_VI_CAL]->lock);
  9309. return -ENOMEM;
  9310. }
  9311. ex_vi_ftm_param = (struct afe_sp_v4_channel_ex_vi_ftm_params *)
  9312. ((u8 *)params +
  9313. sizeof(struct afe_sp_v4_param_ex_vi_ftm_params));
  9314. if (!afe_get_spv4_ex_vi_ftm_data(params, size)) {
  9315. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9316. pr_debug("%s: ftm param status = %d\n",
  9317. __func__, ex_vi_ftm_param[i].status);
  9318. if (ex_vi_ftm_param[i].status == FBSP_IN_PROGRESS) {
  9319. cal_data->cal_info.status[i] = -EAGAIN;
  9320. } else if (ex_vi_ftm_param[i].status == FBSP_SUCCESS) {
  9321. cal_data->cal_info.status[i] = 0;
  9322. cal_data->cal_info.ftm_re_q24[i] =
  9323. ex_vi_ftm_param[i].ftm_re_q24;
  9324. cal_data->cal_info.ftm_Bl_q24[i] =
  9325. ex_vi_ftm_param[i].ftm_Bl_q24;
  9326. cal_data->cal_info.ftm_Rms_q24[i] =
  9327. ex_vi_ftm_param[i].ftm_Rms_q24;
  9328. cal_data->cal_info.ftm_Kms_q24[i] =
  9329. ex_vi_ftm_param[i].ftm_Kms_q24;
  9330. cal_data->cal_info.ftm_freq_q20[i] =
  9331. ex_vi_ftm_param[i].ftm_Fres_q20;
  9332. cal_data->cal_info.ftm_Qms_q24[i] =
  9333. ex_vi_ftm_param[i].ftm_Qms_q24;
  9334. }
  9335. }
  9336. }
  9337. kfree(params);
  9338. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_V4_EX_VI_CAL]->lock);
  9339. done:
  9340. return ret;
  9341. }
  9342. static int afe_get_cal_sp_ex_vi_ftm_param(int32_t cal_type, size_t data_size,
  9343. void *data)
  9344. {
  9345. int i, ret = 0;
  9346. struct audio_cal_type_sp_ex_vi_param *cal_data = data;
  9347. struct afe_sp_ex_vi_get_param ex_vi;
  9348. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  9349. if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL ||
  9350. cal_data == NULL ||
  9351. data_size != sizeof(*cal_data))
  9352. goto done;
  9353. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  9354. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9355. cal_data->cal_info.status[i] = -EINVAL;
  9356. cal_data->cal_info.freq_q20[i] = -1;
  9357. cal_data->cal_info.resis_q24[i] = -1;
  9358. cal_data->cal_info.qmct_q24[i] = -1;
  9359. }
  9360. if (!afe_get_sp_ex_vi_ftm_data(&ex_vi)) {
  9361. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9362. pr_debug("%s: ftm param status = %d\n",
  9363. __func__, ex_vi.param.status[i]);
  9364. if (ex_vi.param.status[i] == FBSP_IN_PROGRESS) {
  9365. cal_data->cal_info.status[i] = -EAGAIN;
  9366. } else if (ex_vi.param.status[i] == FBSP_SUCCESS) {
  9367. cal_data->cal_info.status[i] = 0;
  9368. cal_data->cal_info.freq_q20[i] =
  9369. ex_vi.param.freq_q20[i];
  9370. cal_data->cal_info.resis_q24[i] =
  9371. ex_vi.param.resis_q24[i];
  9372. cal_data->cal_info.qmct_q24[i] =
  9373. ex_vi.param.qmct_q24[i];
  9374. }
  9375. }
  9376. }
  9377. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  9378. done:
  9379. return ret;
  9380. }
  9381. static int afe_get_cal_fb_spkr_prot(int32_t cal_type, size_t data_size,
  9382. void *data)
  9383. {
  9384. int ret = 0;
  9385. struct audio_cal_type_fb_spk_prot_status *cal_data = data;
  9386. struct afe_spkr_prot_get_vi_calib calib_resp;
  9387. struct afe_sp_v4_th_vi_calib_resp spv4_calib_resp;
  9388. pr_debug("%s:\n", __func__);
  9389. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  9390. goto done;
  9391. if (cal_data == NULL)
  9392. goto done;
  9393. if (data_size != sizeof(*cal_data))
  9394. goto done;
  9395. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  9396. if (this_afe.prot_cfg.mode == MSM_SPKR_PROT_CALIBRATED) {
  9397. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  9398. this_afe.prot_cfg.r0[SP_V2_SPKR_1];
  9399. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  9400. this_afe.prot_cfg.r0[SP_V2_SPKR_2];
  9401. cal_data->cal_info.status = 0;
  9402. } else if (this_afe.prot_cfg.mode ==
  9403. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS) {
  9404. /*Call AFE to query the status*/
  9405. cal_data->cal_info.status = -EINVAL;
  9406. cal_data->cal_info.r0[SP_V2_SPKR_1] = -1;
  9407. cal_data->cal_info.r0[SP_V2_SPKR_2] = -1;
  9408. if (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9) {
  9409. if (!(q6core_get_avcs_api_version_per_service(
  9410. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >=
  9411. AFE_API_VERSION_V9)) {
  9412. pr_debug(
  9413. "%s: AFE API version is not supported!\n",
  9414. __func__);
  9415. goto done;
  9416. }
  9417. if (!afe_spv4_get_calib_data(&spv4_calib_resp)) {
  9418. if (spv4_calib_resp.res_cfg.th_vi_ca_state ==
  9419. FBSP_IN_PROGRESS)
  9420. cal_data->cal_info.status = -EAGAIN;
  9421. else if (
  9422. spv4_calib_resp.res_cfg.th_vi_ca_state ==
  9423. FBSP_SUCCESS) {
  9424. cal_data->cal_info.status = 0;
  9425. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  9426. spv4_calib_resp.res_cfg.r0_cali_q24[
  9427. SP_V2_SPKR_1];
  9428. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  9429. spv4_calib_resp.res_cfg.r0_cali_q24[
  9430. SP_V2_SPKR_2];
  9431. }
  9432. }
  9433. } else {
  9434. if (!afe_spk_prot_get_calib_data(&calib_resp)) {
  9435. if (calib_resp.res_cfg.th_vi_ca_state ==
  9436. FBSP_IN_PROGRESS)
  9437. cal_data->cal_info.status = -EAGAIN;
  9438. else if (calib_resp.res_cfg.th_vi_ca_state ==
  9439. FBSP_SUCCESS) {
  9440. cal_data->cal_info.status = 0;
  9441. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  9442. calib_resp.res_cfg.r0_cali_q24[
  9443. SP_V2_SPKR_1];
  9444. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  9445. calib_resp.res_cfg.r0_cali_q24[
  9446. SP_V2_SPKR_2];
  9447. }
  9448. }
  9449. }
  9450. if (!cal_data->cal_info.status) {
  9451. this_afe.prot_cfg.mode =
  9452. MSM_SPKR_PROT_CALIBRATED;
  9453. this_afe.prot_cfg.r0[SP_V2_SPKR_1] =
  9454. cal_data->cal_info.r0[SP_V2_SPKR_1];
  9455. this_afe.prot_cfg.r0[SP_V2_SPKR_2] =
  9456. cal_data->cal_info.r0[SP_V2_SPKR_2];
  9457. }
  9458. } else {
  9459. /*Indicates calibration data is invalid*/
  9460. cal_data->cal_info.status = -EINVAL;
  9461. cal_data->cal_info.r0[SP_V2_SPKR_1] = -1;
  9462. cal_data->cal_info.r0[SP_V2_SPKR_2] = -1;
  9463. }
  9464. this_afe.initial_cal = 0;
  9465. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  9466. __pm_relax(wl.ws);
  9467. done:
  9468. return ret;
  9469. }
  9470. static int afe_map_cal_data(int32_t cal_type,
  9471. struct cal_block_data *cal_block)
  9472. {
  9473. int ret = 0;
  9474. int cal_index;
  9475. pr_debug("%s:\n", __func__);
  9476. cal_index = get_cal_type_index(cal_type);
  9477. if (cal_index < 0) {
  9478. pr_err("%s: could not get cal index %d!\n",
  9479. __func__, cal_index);
  9480. ret = -EINVAL;
  9481. goto done;
  9482. }
  9483. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  9484. ret = afe_cmd_memory_map(cal_block->cal_data.paddr,
  9485. cal_block->map_data.map_size);
  9486. atomic_set(&this_afe.mem_map_cal_index, -1);
  9487. if (ret < 0) {
  9488. pr_err("%s: mmap did not work! size = %zd ret %d\n",
  9489. __func__,
  9490. cal_block->map_data.map_size, ret);
  9491. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %zd\n",
  9492. __func__,
  9493. &cal_block->cal_data.paddr,
  9494. cal_block->map_data.map_size);
  9495. goto done;
  9496. }
  9497. cal_block->map_data.q6map_handle = atomic_read(&this_afe.
  9498. mem_map_cal_handles[cal_index]);
  9499. done:
  9500. return ret;
  9501. }
  9502. static int afe_unmap_cal_data(int32_t cal_type,
  9503. struct cal_block_data *cal_block)
  9504. {
  9505. int ret = 0;
  9506. int cal_index;
  9507. pr_debug("%s:\n", __func__);
  9508. cal_index = get_cal_type_index(cal_type);
  9509. if (cal_index < 0) {
  9510. pr_err("%s: could not get cal index %d!\n",
  9511. __func__, cal_index);
  9512. ret = -EINVAL;
  9513. goto done;
  9514. }
  9515. if (cal_block == NULL) {
  9516. pr_err("%s: Cal block is NULL!\n",
  9517. __func__);
  9518. goto done;
  9519. }
  9520. if (cal_block->map_data.q6map_handle == 0) {
  9521. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  9522. __func__);
  9523. goto done;
  9524. }
  9525. atomic_set(&this_afe.mem_map_cal_handles[cal_index],
  9526. cal_block->map_data.q6map_handle);
  9527. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  9528. ret = afe_cmd_memory_unmap_nowait(
  9529. cal_block->map_data.q6map_handle);
  9530. atomic_set(&this_afe.mem_map_cal_index, -1);
  9531. if (ret < 0) {
  9532. pr_err("%s: unmap did not work! cal_type %i ret %d\n",
  9533. __func__, cal_index, ret);
  9534. }
  9535. cal_block->map_data.q6map_handle = 0;
  9536. done:
  9537. return ret;
  9538. }
  9539. static void afe_delete_cal_data(void)
  9540. {
  9541. pr_debug("%s:\n", __func__);
  9542. cal_utils_destroy_cal_types(MAX_AFE_CAL_TYPES, this_afe.cal_data);
  9543. }
  9544. static int afe_init_cal_data(void)
  9545. {
  9546. int ret = 0;
  9547. struct cal_type_info cal_type_info[] = {
  9548. {{AFE_COMMON_RX_CAL_TYPE,
  9549. {afe_alloc_cal, afe_dealloc_cal, NULL,
  9550. afe_set_cal, NULL, NULL} },
  9551. {afe_map_cal_data, afe_unmap_cal_data,
  9552. cal_utils_match_buf_num} },
  9553. {{AFE_COMMON_TX_CAL_TYPE,
  9554. {afe_alloc_cal, afe_dealloc_cal, NULL,
  9555. afe_set_cal, NULL, NULL} },
  9556. {afe_map_cal_data, afe_unmap_cal_data,
  9557. cal_utils_match_buf_num} },
  9558. {{AFE_LSM_TX_CAL_TYPE,
  9559. {afe_alloc_cal, afe_dealloc_cal, NULL,
  9560. afe_set_cal, NULL, NULL} },
  9561. {afe_map_cal_data, afe_unmap_cal_data,
  9562. cal_utils_match_buf_num} },
  9563. {{AFE_AANC_CAL_TYPE,
  9564. {afe_alloc_cal, afe_dealloc_cal, NULL,
  9565. afe_set_cal, NULL, NULL} },
  9566. {afe_map_cal_data, afe_unmap_cal_data,
  9567. cal_utils_match_buf_num} },
  9568. {{AFE_FB_SPKR_PROT_CAL_TYPE,
  9569. {NULL, NULL, NULL, afe_set_cal_fb_spkr_prot,
  9570. afe_get_cal_fb_spkr_prot, NULL} },
  9571. {NULL, NULL, cal_utils_match_buf_num} },
  9572. {{AFE_HW_DELAY_CAL_TYPE,
  9573. {NULL, NULL, NULL,
  9574. afe_set_cal, NULL, NULL} },
  9575. {NULL, NULL, cal_utils_match_buf_num} },
  9576. {{AFE_SIDETONE_CAL_TYPE,
  9577. {NULL, NULL, NULL,
  9578. afe_set_cal, NULL, NULL} },
  9579. {NULL, NULL, cal_utils_match_buf_num} },
  9580. {{AFE_SIDETONE_IIR_CAL_TYPE,
  9581. {NULL, NULL, NULL,
  9582. afe_set_cal, NULL, NULL} },
  9583. {NULL, NULL, cal_utils_match_buf_num} },
  9584. {{AFE_TOPOLOGY_CAL_TYPE,
  9585. {NULL, NULL, NULL,
  9586. afe_set_cal, NULL, NULL} },
  9587. {NULL, NULL,
  9588. cal_utils_match_buf_num} },
  9589. {{AFE_LSM_TOPOLOGY_CAL_TYPE,
  9590. {NULL, NULL, NULL,
  9591. afe_set_cal, NULL, NULL} },
  9592. {NULL, NULL,
  9593. cal_utils_match_buf_num} },
  9594. {{AFE_CUST_TOPOLOGY_CAL_TYPE,
  9595. {afe_alloc_cal, afe_dealloc_cal, NULL,
  9596. afe_set_cal, NULL, NULL} },
  9597. {afe_map_cal_data, afe_unmap_cal_data,
  9598. cal_utils_match_buf_num} },
  9599. {{AFE_FB_SPKR_PROT_TH_VI_CAL_TYPE,
  9600. {NULL, NULL, NULL, afe_set_cal_sp_th_vi_cfg,
  9601. afe_get_cal_sp_th_vi_param, NULL} },
  9602. {NULL, NULL, cal_utils_match_buf_num} },
  9603. {{AFE_FB_SPKR_PROT_EX_VI_CAL_TYPE,
  9604. {NULL, NULL, NULL, afe_set_cal_sp_ex_vi_ftm_cfg,
  9605. afe_get_cal_sp_ex_vi_ftm_param, NULL} },
  9606. {NULL, NULL, cal_utils_match_buf_num} },
  9607. {{AFE_FB_SPKR_PROT_V4_EX_VI_CAL_TYPE,
  9608. {NULL, NULL, NULL, NULL,
  9609. afe_get_cal_spv4_ex_vi_ftm_param, NULL} },
  9610. {NULL, NULL, cal_utils_match_buf_num} },
  9611. };
  9612. pr_debug("%s:\n", __func__);
  9613. ret = cal_utils_create_cal_types(MAX_AFE_CAL_TYPES, this_afe.cal_data,
  9614. cal_type_info);
  9615. if (ret < 0) {
  9616. pr_err("%s: could not create cal type! %d\n",
  9617. __func__, ret);
  9618. ret = -EINVAL;
  9619. goto err;
  9620. }
  9621. return ret;
  9622. err:
  9623. afe_delete_cal_data();
  9624. return ret;
  9625. }
  9626. int afe_map_rtac_block(struct rtac_cal_block_data *cal_block)
  9627. {
  9628. int result = 0;
  9629. pr_debug("%s:\n", __func__);
  9630. if (cal_block == NULL) {
  9631. pr_err("%s: cal_block is NULL!\n",
  9632. __func__);
  9633. result = -EINVAL;
  9634. goto done;
  9635. }
  9636. if (cal_block->cal_data.paddr == 0) {
  9637. pr_debug("%s: No address to map!\n",
  9638. __func__);
  9639. result = -EINVAL;
  9640. goto done;
  9641. }
  9642. if (cal_block->map_data.map_size == 0) {
  9643. pr_debug("%s: map size is 0!\n",
  9644. __func__);
  9645. result = -EINVAL;
  9646. goto done;
  9647. }
  9648. result = afe_cmd_memory_map(cal_block->cal_data.paddr,
  9649. cal_block->map_data.map_size);
  9650. if (result < 0) {
  9651. pr_err("%s: afe_cmd_memory_map failed for addr = 0x%pK, size = %d, err %d\n",
  9652. __func__, &cal_block->cal_data.paddr,
  9653. cal_block->map_data.map_size, result);
  9654. return result;
  9655. }
  9656. cal_block->map_data.map_handle = this_afe.mmap_handle;
  9657. done:
  9658. return result;
  9659. }
  9660. int afe_unmap_rtac_block(uint32_t *mem_map_handle)
  9661. {
  9662. int result = 0;
  9663. pr_debug("%s:\n", __func__);
  9664. if (mem_map_handle == NULL) {
  9665. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  9666. __func__);
  9667. goto done;
  9668. }
  9669. if (*mem_map_handle == 0) {
  9670. pr_debug("%s: Map handle is 0, nothing to unmap\n",
  9671. __func__);
  9672. goto done;
  9673. }
  9674. result = afe_cmd_memory_unmap(*mem_map_handle);
  9675. if (result) {
  9676. pr_err("%s: AFE memory unmap failed %d, handle 0x%x\n",
  9677. __func__, result, *mem_map_handle);
  9678. goto done;
  9679. } else {
  9680. *mem_map_handle = 0;
  9681. }
  9682. done:
  9683. return result;
  9684. }
  9685. static void afe_release_uevent_data(struct kobject *kobj)
  9686. {
  9687. struct audio_uevent_data *data = container_of(kobj,
  9688. struct audio_uevent_data, kobj);
  9689. kfree(data);
  9690. }
  9691. int __init afe_init(void)
  9692. {
  9693. int i = 0, ret;
  9694. atomic_set(&this_afe.state, 0);
  9695. atomic_set(&this_afe.status, 0);
  9696. atomic_set(&this_afe.clk_state, 0);
  9697. atomic_set(&this_afe.clk_status, 0);
  9698. atomic_set(&this_afe.mem_map_cal_index, -1);
  9699. this_afe.apr = NULL;
  9700. this_afe.dtmf_gen_rx_portid = -1;
  9701. this_afe.mmap_handle = 0;
  9702. this_afe.vi_tx_port = -1;
  9703. this_afe.vi_rx_port = -1;
  9704. for (i = 0; i < AFE_LPASS_CORE_HW_VOTE_MAX; i++)
  9705. this_afe.lpass_hw_core_client_hdl[i] = 0;
  9706. this_afe.prot_cfg.mode = MSM_SPKR_PROT_DISABLED;
  9707. this_afe.th_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  9708. this_afe.ex_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  9709. mutex_init(&this_afe.afe_cmd_lock);
  9710. mutex_init(&this_afe.afe_apr_lock);
  9711. mutex_init(&this_afe.afe_clk_lock);
  9712. for (i = 0; i < AFE_MAX_PORTS; i++) {
  9713. this_afe.afe_cal_mode[i] = AFE_CAL_MODE_DEFAULT;
  9714. this_afe.afe_sample_rates[i] = 0;
  9715. this_afe.dev_acdb_id[i] = 0;
  9716. this_afe.island_mode[i] = 0;
  9717. this_afe.power_mode[i] = 0;
  9718. this_afe.vad_cfg[i].is_enable = 0;
  9719. this_afe.vad_cfg[i].pre_roll = 0;
  9720. init_waitqueue_head(&this_afe.wait[i]);
  9721. }
  9722. init_waitqueue_head(&this_afe.wait_wakeup);
  9723. init_waitqueue_head(&this_afe.lpass_core_hw_wait);
  9724. init_waitqueue_head(&this_afe.clk_wait);
  9725. wl.ws = wakeup_source_register(NULL, "spkr-prot");
  9726. if (!wl.ws)
  9727. return -ENOMEM;
  9728. ret = afe_init_cal_data();
  9729. if (ret)
  9730. pr_err("%s: could not init cal data! %d\n", __func__, ret);
  9731. config_debug_fs_init();
  9732. this_afe.uevent_data = kzalloc(sizeof(*(this_afe.uevent_data)), GFP_KERNEL);
  9733. if (!this_afe.uevent_data) {
  9734. wakeup_source_unregister(wl.ws);
  9735. return -ENOMEM;
  9736. }
  9737. /*
  9738. * Set release function to cleanup memory related to kobject
  9739. * before initializing the kobject.
  9740. */
  9741. this_afe.uevent_data->ktype.release = afe_release_uevent_data;
  9742. q6core_init_uevent_data(this_afe.uevent_data, "q6afe_uevent");
  9743. INIT_WORK(&this_afe.afe_dc_work, afe_notify_dc_presence_work_fn);
  9744. INIT_WORK(&this_afe.afe_spdif_work,
  9745. afe_notify_spdif_fmt_update_work_fn);
  9746. this_afe.event_notifier.notifier_call = afe_aud_event_notify;
  9747. msm_aud_evt_blocking_register_client(&this_afe.event_notifier);
  9748. return 0;
  9749. }
  9750. void afe_exit(void)
  9751. {
  9752. if (this_afe.apr) {
  9753. apr_reset(this_afe.apr);
  9754. atomic_set(&this_afe.state, 0);
  9755. this_afe.apr = NULL;
  9756. rtac_set_afe_handle(this_afe.apr);
  9757. }
  9758. q6core_destroy_uevent_data(this_afe.uevent_data);
  9759. afe_delete_cal_data();
  9760. config_debug_fs_exit();
  9761. mutex_destroy(&this_afe.afe_cmd_lock);
  9762. mutex_destroy(&this_afe.afe_apr_lock);
  9763. mutex_destroy(&this_afe.afe_clk_lock);
  9764. wakeup_source_unregister(wl.ws);
  9765. }
  9766. /*
  9767. * afe_cal_init_hwdep -
  9768. * Initiliaze AFE HW dependent Node
  9769. *
  9770. * @card: pointer to sound card
  9771. *
  9772. */
  9773. int afe_cal_init_hwdep(void *card)
  9774. {
  9775. int ret = 0;
  9776. this_afe.fw_data = kzalloc(sizeof(*(this_afe.fw_data)),
  9777. GFP_KERNEL);
  9778. if (!this_afe.fw_data)
  9779. return -ENOMEM;
  9780. set_bit(Q6AFE_VAD_CORE_CAL, this_afe.fw_data->cal_bit);
  9781. ret = q6afe_cal_create_hwdep(this_afe.fw_data, Q6AFE_HWDEP_NODE, card);
  9782. if (ret < 0) {
  9783. pr_err("%s: couldn't create hwdep for AFE %d\n", __func__, ret);
  9784. return ret;
  9785. }
  9786. return ret;
  9787. }
  9788. EXPORT_SYMBOL(afe_cal_init_hwdep);
  9789. /*
  9790. * afe_vote_lpass_core_hw -
  9791. * Voting for lpass core hardware
  9792. *
  9793. * @hw_block_id: id of the hardware block
  9794. * @client_name: client name
  9795. * @client_handle: client handle
  9796. *
  9797. */
  9798. int afe_vote_lpass_core_hw(uint32_t hw_block_id, char *client_name,
  9799. uint32_t *client_handle)
  9800. {
  9801. struct afe_cmd_remote_lpass_core_hw_vote_request hw_vote_cfg;
  9802. struct afe_cmd_remote_lpass_core_hw_vote_request *cmd_ptr =
  9803. &hw_vote_cfg;
  9804. int ret = 0;
  9805. if (!client_handle) {
  9806. pr_err("%s: Invalid client_handle\n", __func__);
  9807. return -EINVAL;
  9808. }
  9809. if (!client_name) {
  9810. pr_err("%s: Invalid client_name\n", __func__);
  9811. *client_handle = 0;
  9812. return -EINVAL;
  9813. }
  9814. ret = afe_q6_interface_prepare();
  9815. if(ret) {
  9816. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  9817. return ret;
  9818. }
  9819. mutex_lock(&this_afe.afe_clk_lock);
  9820. memset(cmd_ptr, 0, sizeof(hw_vote_cfg));
  9821. cmd_ptr->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  9822. APR_HDR_LEN(APR_HDR_SIZE),
  9823. APR_PKT_VER);
  9824. cmd_ptr->hdr.pkt_size = sizeof(hw_vote_cfg);
  9825. cmd_ptr->hdr.src_port = 0;
  9826. cmd_ptr->hdr.dest_port = 0;
  9827. cmd_ptr->hdr.token = hw_block_id;
  9828. cmd_ptr->hdr.opcode = AFE_CMD_REMOTE_LPASS_CORE_HW_VOTE_REQUEST;
  9829. cmd_ptr->hw_block_id = hw_block_id;
  9830. strlcpy(cmd_ptr->client_name, client_name,
  9831. sizeof(cmd_ptr->client_name));
  9832. pr_debug("%s: lpass core hw vote opcode[0x%x] hw id[0x%x]\n",
  9833. __func__, cmd_ptr->hdr.opcode, cmd_ptr->hw_block_id);
  9834. trace_printk("%s: lpass core hw vote opcode[0x%x] hw id[0x%x]\n",
  9835. __func__, cmd_ptr->hdr.opcode, cmd_ptr->hw_block_id);
  9836. *client_handle = 0;
  9837. ret = afe_apr_send_clk_pkt((uint32_t *)cmd_ptr,
  9838. &this_afe.lpass_core_hw_wait);
  9839. if (ret == 0) {
  9840. *client_handle = this_afe.lpass_hw_core_client_hdl[hw_block_id];
  9841. pr_debug("%s: lpass_hw_core_client_hdl %d\n", __func__,
  9842. this_afe.lpass_hw_core_client_hdl[hw_block_id]);
  9843. }
  9844. mutex_unlock(&this_afe.afe_clk_lock);
  9845. return ret;
  9846. }
  9847. EXPORT_SYMBOL(afe_vote_lpass_core_hw);
  9848. /*
  9849. * afe_unvote_lpass_core_hw -
  9850. * unvoting for lpass core hardware
  9851. *
  9852. * @hw_block_id: id of the hardware block
  9853. * @client_handle: client handle
  9854. *
  9855. */
  9856. int afe_unvote_lpass_core_hw(uint32_t hw_block_id, uint32_t client_handle)
  9857. {
  9858. struct afe_cmd_remote_lpass_core_hw_devote_request hw_vote_cfg;
  9859. struct afe_cmd_remote_lpass_core_hw_devote_request *cmd_ptr =
  9860. &hw_vote_cfg;
  9861. int ret = 0;
  9862. ret = afe_q6_interface_prepare();
  9863. if(ret) {
  9864. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  9865. return ret;
  9866. }
  9867. mutex_lock(&this_afe.afe_clk_lock);
  9868. if (!this_afe.lpass_hw_core_client_hdl[hw_block_id]) {
  9869. pr_debug("%s: SSR in progress, return\n", __func__);
  9870. trace_printk("%s: SSR in progress, return\n", __func__);
  9871. goto done;
  9872. }
  9873. memset(cmd_ptr, 0, sizeof(hw_vote_cfg));
  9874. cmd_ptr->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  9875. APR_HDR_LEN(APR_HDR_SIZE),
  9876. APR_PKT_VER);
  9877. cmd_ptr->hdr.pkt_size = sizeof(hw_vote_cfg);
  9878. cmd_ptr->hdr.src_port = 0;
  9879. cmd_ptr->hdr.dest_port = 0;
  9880. cmd_ptr->hdr.token = 0;
  9881. cmd_ptr->hdr.opcode = AFE_CMD_REMOTE_LPASS_CORE_HW_DEVOTE_REQUEST;
  9882. cmd_ptr->hw_block_id = hw_block_id;
  9883. cmd_ptr->client_handle = client_handle;
  9884. pr_debug("%s: lpass core hw unvote opcode[0x%x] hw id[0x%x]\n",
  9885. __func__, cmd_ptr->hdr.opcode, cmd_ptr->hw_block_id);
  9886. trace_printk("%s: lpass core hw unvote opcode[0x%x] hw id[0x%x]\n",
  9887. __func__, cmd_ptr->hdr.opcode, cmd_ptr->hw_block_id);
  9888. if (cmd_ptr->client_handle <= 0) {
  9889. pr_err("%s: invalid client handle\n", __func__);
  9890. ret = -EINVAL;
  9891. goto done;
  9892. }
  9893. ret = afe_apr_send_clk_pkt((uint32_t *)cmd_ptr,
  9894. &this_afe.lpass_core_hw_wait);
  9895. done:
  9896. mutex_unlock(&this_afe.afe_clk_lock);
  9897. return ret;
  9898. }
  9899. EXPORT_SYMBOL(afe_unvote_lpass_core_hw);