q6afe.c 206 KB

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