q6afe.c 238 KB

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