q6afe.c 250 KB

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