q6afe.c 268 KB

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