q6afe.c 298 KB

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