q6afe.c 252 KB

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