q6afe.c 197 KB

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