q6afe.c 261 KB

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