q6afe.c 262 KB

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