q6afe.c 231 KB

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