q6afe.c 229 KB

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