q6afe.c 206 KB

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