q6afe.c 307 KB

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