q6afe.c 243 KB

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