q6afe.c 215 KB

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