q6afe.c 266 KB

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