q6afe.c 202 KB

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