q6afe.c 227 KB

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