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