q6afe.c 216 KB

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