q6afe.c 235 KB

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