q6afe.c 229 KB

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