q6afe.c 215 KB

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