q6afe.c 314 KB

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