q6afe.c 307 KB

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