q6afe.c 248 KB

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