q6afe.c 216 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651
  1. /* Copyright (c) 2012-2018, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #include <linux/slab.h>
  13. #include <linux/debugfs.h>
  14. #include <linux/kernel.h>
  15. #include <linux/kthread.h>
  16. #include <linux/uaccess.h>
  17. #include <linux/wait.h>
  18. #include <linux/jiffies.h>
  19. #include <linux/sched.h>
  20. #include <linux/delay.h>
  21. #include <dsp/msm_audio_ion.h>
  22. #include <dsp/apr_audio-v2.h>
  23. #include <dsp/audio_cal_utils.h>
  24. #include <dsp/q6afe-v2.h>
  25. #include <dsp/q6audio-v2.h>
  26. #include <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.dma_buf == 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. send_afe_cal_type(AFE_COMMON_RX_CAL, port_id);
  1505. afe_send_cal_spkr_prot_rx(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. u32 scrambler_mode)
  2689. {
  2690. struct afe_audioif_config_command config;
  2691. int index;
  2692. int ret;
  2693. int payload_size = sizeof(config) - sizeof(struct apr_hdr) -
  2694. sizeof(config.param) - sizeof(config.port);
  2695. pr_debug("%s:update DSP for enc format = %d\n", __func__, format);
  2696. if (format != ASM_MEDIA_FMT_SBC && format != ASM_MEDIA_FMT_AAC_V2 &&
  2697. format != ASM_MEDIA_FMT_APTX && format != ASM_MEDIA_FMT_APTX_HD &&
  2698. format != ASM_MEDIA_FMT_CELT && format != ASM_MEDIA_FMT_LDAC) {
  2699. pr_err("%s:Unsuppported format Ignore AFE config\n", __func__);
  2700. return 0;
  2701. }
  2702. memset(&config, 0, sizeof(config));
  2703. index = q6audio_get_port_index(port_id);
  2704. if (index < 0) {
  2705. pr_err("%s: Invalid index number: %d\n", __func__, index);
  2706. return -EINVAL;
  2707. }
  2708. config.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2709. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  2710. config.hdr.pkt_size = sizeof(config);
  2711. config.hdr.src_port = 0;
  2712. config.hdr.dest_port = 0;
  2713. config.hdr.token = index;
  2714. config.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  2715. config.param.port_id = q6audio_get_port_id(port_id);
  2716. config.param.payload_size = payload_size + sizeof(config.port.enc_fmt);
  2717. config.param.payload_address_lsw = 0x00;
  2718. config.param.payload_address_msw = 0x00;
  2719. config.param.mem_map_handle = 0x00;
  2720. config.pdata.module_id = AFE_MODULE_ID_ENCODER;
  2721. config.pdata.param_id = AFE_ENCODER_PARAM_ID_ENC_FMT_ID;
  2722. config.pdata.param_size = sizeof(config.port.enc_fmt);
  2723. config.port.enc_fmt.fmt_id = format;
  2724. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_ENC_FMT_ID payload: %d\n",
  2725. __func__, config.param.payload_size);
  2726. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  2727. if (ret) {
  2728. pr_err("%s:unable to send AFE_ENCODER_PARAM_ID_ENC_FMT_ID",
  2729. __func__);
  2730. goto exit;
  2731. }
  2732. config.param.payload_size = payload_size
  2733. + sizeof(config.port.enc_blk_param);
  2734. pr_debug("%s:send AFE_ENCODER_PARAM_ID_ENC_CFG_BLK to DSP payload:%d\n",
  2735. __func__, config.param.payload_size);
  2736. config.pdata.param_id = AFE_ENCODER_PARAM_ID_ENC_CFG_BLK;
  2737. config.pdata.param_size = sizeof(config.port.enc_blk_param);
  2738. config.port.enc_blk_param.enc_cfg_blk_size =
  2739. sizeof(config.port.enc_blk_param.enc_blk_config);
  2740. config.port.enc_blk_param.enc_blk_config = *cfg;
  2741. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  2742. if (ret) {
  2743. pr_err("%s: AFE_ENCODER_PARAM_ID_ENC_CFG_BLK for port 0x%x failed %d\n",
  2744. __func__, port_id, ret);
  2745. goto exit;
  2746. }
  2747. if (format == ASM_MEDIA_FMT_APTX) {
  2748. config.param.payload_size =
  2749. payload_size + sizeof(config.port.sync_mode_param);
  2750. pr_debug("%s: sending AFE_PARAM_ID_APTX_SYNC_MODE to DSP",
  2751. __func__);
  2752. config.pdata.param_id = AFE_PARAM_ID_APTX_SYNC_MODE;
  2753. config.pdata.param_size = sizeof(config.port.sync_mode_param);
  2754. config.port.sync_mode_param.sync_mode =
  2755. config.port.enc_blk_param.enc_blk_config.aptx_config.
  2756. aptx_v2_cfg.sync_mode;
  2757. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  2758. if (ret) {
  2759. pr_err("%s: AFE_PARAM_ID_APTX_SYNC_MODE for port 0x%x failed %d\n",
  2760. __func__, port_id, ret);
  2761. goto exit;
  2762. }
  2763. }
  2764. config.param.payload_size =
  2765. payload_size + sizeof(config.port.enc_pkt_id_param);
  2766. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_PACKETIZER to DSP payload = %d",
  2767. __func__, config.param.payload_size);
  2768. config.pdata.param_id = AFE_ENCODER_PARAM_ID_PACKETIZER_ID;
  2769. config.pdata.param_size = sizeof(config.port.enc_pkt_id_param);
  2770. config.port.enc_pkt_id_param.enc_packetizer_id =
  2771. AFE_MODULE_ID_PACKETIZER_COP;
  2772. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  2773. if (ret) {
  2774. pr_err("%s: AFE_ENCODER_PARAM_ID_PACKETIZER for port 0x%x failed %d\n",
  2775. __func__, port_id, ret);
  2776. goto exit;
  2777. }
  2778. config.param.payload_size =
  2779. payload_size + sizeof(config.port.enc_set_scrambler_param);
  2780. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING mode= %d to DSP payload = %d\n",
  2781. __func__, scrambler_mode, config.param.payload_size);
  2782. config.pdata.param_id = AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING;
  2783. config.pdata.param_size = sizeof(config.port.enc_set_scrambler_param);
  2784. config.port.enc_set_scrambler_param.enable_scrambler = scrambler_mode;
  2785. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  2786. if (ret) {
  2787. pr_err("%s: AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING for port 0x%x failed %d\n",
  2788. __func__, port_id, ret);
  2789. goto exit;
  2790. }
  2791. config.param.payload_size =
  2792. payload_size + sizeof(config.port.media_type);
  2793. config.pdata.param_size = sizeof(config.port.media_type);
  2794. pr_debug("%s:Sending AFE_API_VERSION_PORT_MEDIA_TYPE to DSP", __func__);
  2795. config.pdata.module_id = AFE_MODULE_PORT;
  2796. config.pdata.param_id = AFE_PARAM_ID_PORT_MEDIA_TYPE;
  2797. config.port.media_type.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  2798. if (format == ASM_MEDIA_FMT_LDAC) {
  2799. config.port.media_type.sample_rate =
  2800. config.port.enc_blk_param.enc_blk_config.ldac_config.
  2801. custom_config.sample_rate;
  2802. } else {
  2803. config.port.media_type.sample_rate =
  2804. afe_config.slim_sch.sample_rate;
  2805. }
  2806. if (afe_in_bit_width)
  2807. config.port.media_type.bit_width = afe_in_bit_width;
  2808. else
  2809. config.port.media_type.bit_width =
  2810. afe_config.slim_sch.bit_width;
  2811. if (afe_in_channels)
  2812. config.port.media_type.num_channels = afe_in_channels;
  2813. else
  2814. config.port.media_type.num_channels =
  2815. afe_config.slim_sch.num_channels;
  2816. config.port.media_type.data_format = AFE_PORT_DATA_FORMAT_PCM;
  2817. config.port.media_type.reserved = 0;
  2818. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  2819. if (ret) {
  2820. pr_err("%s: AFE_API_VERSION_PORT_MEDIA_TYPE for port 0x%x failed %d\n",
  2821. __func__, port_id, ret);
  2822. goto exit;
  2823. }
  2824. exit:
  2825. return ret;
  2826. }
  2827. static int __afe_port_start(u16 port_id, union afe_port_config *afe_config,
  2828. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  2829. union afe_enc_config_data *cfg, u32 enc_format,
  2830. u32 scrambler_mode)
  2831. {
  2832. struct afe_audioif_config_command config;
  2833. int ret = 0;
  2834. int cfg_type;
  2835. int index = 0;
  2836. enum afe_mad_type mad_type;
  2837. uint16_t port_index;
  2838. if (!afe_config) {
  2839. pr_err("%s: Error, no configuration data\n", __func__);
  2840. ret = -EINVAL;
  2841. return ret;
  2842. }
  2843. if ((port_id == RT_PROXY_DAI_001_RX) ||
  2844. (port_id == RT_PROXY_DAI_002_TX)) {
  2845. pr_debug("%s: before incrementing pcm_afe_instance %d port_id 0x%x\n",
  2846. __func__,
  2847. pcm_afe_instance[port_id & 0x1], port_id);
  2848. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  2849. pcm_afe_instance[port_id & 0x1]++;
  2850. return 0;
  2851. }
  2852. if ((port_id == RT_PROXY_DAI_002_RX) ||
  2853. (port_id == RT_PROXY_DAI_001_TX)) {
  2854. pr_debug("%s: before incrementing proxy_afe_instance %d port_id 0x%x\n",
  2855. __func__,
  2856. proxy_afe_instance[port_id & 0x1], port_id);
  2857. if (!afe_close_done[port_id & 0x1]) {
  2858. /*close pcm dai corresponding to the proxy dai*/
  2859. afe_close(port_id - 0x10);
  2860. pcm_afe_instance[port_id & 0x1]++;
  2861. pr_debug("%s: reconfigure afe port again\n", __func__);
  2862. }
  2863. proxy_afe_instance[port_id & 0x1]++;
  2864. afe_close_done[port_id & 0x1] = false;
  2865. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  2866. }
  2867. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  2868. index = q6audio_get_port_index(port_id);
  2869. if (index < 0 || index >= AFE_MAX_PORTS) {
  2870. pr_err("%s: AFE port index[%d] invalid!\n",
  2871. __func__, index);
  2872. return -EINVAL;
  2873. }
  2874. ret = q6audio_validate_port(port_id);
  2875. if (ret < 0) {
  2876. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  2877. return -EINVAL;
  2878. }
  2879. ret = afe_q6_interface_prepare();
  2880. if (ret != 0) {
  2881. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  2882. return ret;
  2883. }
  2884. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  2885. this_afe.afe_sample_rates[index] = rate;
  2886. if (this_afe.rt_cb)
  2887. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  2888. }
  2889. mutex_lock(&this_afe.afe_cmd_lock);
  2890. /* Also send the topology id here: */
  2891. port_index = afe_get_port_index(port_id);
  2892. if (!(this_afe.afe_cal_mode[port_index] == AFE_CAL_MODE_NONE)) {
  2893. /* One time call: only for first time */
  2894. afe_send_custom_topology();
  2895. afe_send_port_topology_id(port_id);
  2896. afe_send_cal(port_id);
  2897. afe_send_hw_delay(port_id, rate);
  2898. }
  2899. /* Start SW MAD module */
  2900. mad_type = afe_port_get_mad_type(port_id);
  2901. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  2902. mad_type);
  2903. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  2904. if (!afe_has_config(AFE_CDC_REGISTERS_CONFIG) ||
  2905. !afe_has_config(AFE_SLIMBUS_SLAVE_CONFIG)) {
  2906. pr_err("%s: AFE isn't configured yet for\n"
  2907. "HW MAD try Again\n", __func__);
  2908. ret = -EAGAIN;
  2909. goto fail_cmd;
  2910. }
  2911. ret = afe_turn_onoff_hw_mad(mad_type, true);
  2912. if (ret) {
  2913. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  2914. __func__, ret);
  2915. goto fail_cmd;
  2916. }
  2917. }
  2918. if ((this_afe.aanc_info.aanc_active) &&
  2919. (this_afe.aanc_info.aanc_tx_port == port_id)) {
  2920. this_afe.aanc_info.aanc_tx_port_sample_rate = rate;
  2921. port_index =
  2922. afe_get_port_index(this_afe.aanc_info.aanc_rx_port);
  2923. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  2924. this_afe.aanc_info.aanc_rx_port_sample_rate =
  2925. this_afe.afe_sample_rates[port_index];
  2926. } else {
  2927. pr_err("%s: Invalid port index %d\n",
  2928. __func__, port_index);
  2929. ret = -EINVAL;
  2930. goto fail_cmd;
  2931. }
  2932. ret = afe_aanc_start(this_afe.aanc_info.aanc_tx_port,
  2933. this_afe.aanc_info.aanc_rx_port);
  2934. pr_debug("%s: afe_aanc_start ret %d\n", __func__, ret);
  2935. }
  2936. if ((port_id == AFE_PORT_ID_USB_RX) ||
  2937. (port_id == AFE_PORT_ID_USB_TX)) {
  2938. ret = afe_port_send_usb_dev_param(port_id, afe_config);
  2939. if (ret) {
  2940. pr_err("%s: AFE device param for port 0x%x failed %d\n",
  2941. __func__, port_id, ret);
  2942. ret = -EINVAL;
  2943. goto fail_cmd;
  2944. }
  2945. }
  2946. config.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2947. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  2948. config.hdr.pkt_size = sizeof(config);
  2949. config.hdr.src_port = 0;
  2950. config.hdr.dest_port = 0;
  2951. config.hdr.token = index;
  2952. switch (port_id) {
  2953. case AFE_PORT_ID_PRIMARY_PCM_RX:
  2954. case AFE_PORT_ID_PRIMARY_PCM_TX:
  2955. case AFE_PORT_ID_SECONDARY_PCM_RX:
  2956. case AFE_PORT_ID_SECONDARY_PCM_TX:
  2957. case AFE_PORT_ID_TERTIARY_PCM_RX:
  2958. case AFE_PORT_ID_TERTIARY_PCM_TX:
  2959. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  2960. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  2961. case AFE_PORT_ID_QUINARY_PCM_RX:
  2962. case AFE_PORT_ID_QUINARY_PCM_TX:
  2963. cfg_type = AFE_PARAM_ID_PCM_CONFIG;
  2964. break;
  2965. case PRIMARY_I2S_RX:
  2966. case PRIMARY_I2S_TX:
  2967. case SECONDARY_I2S_RX:
  2968. case SECONDARY_I2S_TX:
  2969. case MI2S_RX:
  2970. case MI2S_TX:
  2971. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  2972. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  2973. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  2974. case AFE_PORT_ID_SECONDARY_MI2S_RX_SD1:
  2975. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  2976. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  2977. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  2978. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  2979. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  2980. case AFE_PORT_ID_QUINARY_MI2S_RX:
  2981. case AFE_PORT_ID_QUINARY_MI2S_TX:
  2982. case AFE_PORT_ID_SENARY_MI2S_TX:
  2983. case AFE_PORT_ID_INT0_MI2S_RX:
  2984. case AFE_PORT_ID_INT0_MI2S_TX:
  2985. case AFE_PORT_ID_INT1_MI2S_RX:
  2986. case AFE_PORT_ID_INT1_MI2S_TX:
  2987. case AFE_PORT_ID_INT2_MI2S_RX:
  2988. case AFE_PORT_ID_INT2_MI2S_TX:
  2989. case AFE_PORT_ID_INT3_MI2S_RX:
  2990. case AFE_PORT_ID_INT3_MI2S_TX:
  2991. case AFE_PORT_ID_INT4_MI2S_RX:
  2992. case AFE_PORT_ID_INT4_MI2S_TX:
  2993. case AFE_PORT_ID_INT5_MI2S_RX:
  2994. case AFE_PORT_ID_INT5_MI2S_TX:
  2995. case AFE_PORT_ID_INT6_MI2S_RX:
  2996. case AFE_PORT_ID_INT6_MI2S_TX:
  2997. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  2998. break;
  2999. case HDMI_RX:
  3000. case DISPLAY_PORT_RX:
  3001. cfg_type = AFE_PARAM_ID_HDMI_CONFIG;
  3002. break;
  3003. case VOICE_PLAYBACK_TX:
  3004. case VOICE2_PLAYBACK_TX:
  3005. case VOICE_RECORD_RX:
  3006. case VOICE_RECORD_TX:
  3007. cfg_type = AFE_PARAM_ID_PSEUDO_PORT_CONFIG;
  3008. break;
  3009. case SLIMBUS_0_RX:
  3010. case SLIMBUS_0_TX:
  3011. case SLIMBUS_1_RX:
  3012. case SLIMBUS_1_TX:
  3013. case SLIMBUS_2_RX:
  3014. case SLIMBUS_2_TX:
  3015. case SLIMBUS_3_RX:
  3016. case SLIMBUS_3_TX:
  3017. case SLIMBUS_4_RX:
  3018. case SLIMBUS_4_TX:
  3019. case SLIMBUS_5_RX:
  3020. case SLIMBUS_5_TX:
  3021. case SLIMBUS_6_RX:
  3022. case SLIMBUS_6_TX:
  3023. case SLIMBUS_7_RX:
  3024. case SLIMBUS_7_TX:
  3025. case SLIMBUS_8_RX:
  3026. case SLIMBUS_8_TX:
  3027. cfg_type = AFE_PARAM_ID_SLIMBUS_CONFIG;
  3028. break;
  3029. case AFE_PORT_ID_USB_RX:
  3030. case AFE_PORT_ID_USB_TX:
  3031. cfg_type = AFE_PARAM_ID_USB_AUDIO_CONFIG;
  3032. break;
  3033. case RT_PROXY_PORT_001_RX:
  3034. case RT_PROXY_PORT_001_TX:
  3035. cfg_type = AFE_PARAM_ID_RT_PROXY_CONFIG;
  3036. break;
  3037. case INT_BT_SCO_RX:
  3038. case INT_BT_A2DP_RX:
  3039. case INT_BT_SCO_TX:
  3040. case INT_FM_RX:
  3041. case INT_FM_TX:
  3042. cfg_type = AFE_PARAM_ID_INTERNAL_BT_FM_CONFIG;
  3043. break;
  3044. default:
  3045. pr_err("%s: Invalid port id 0x%x\n", __func__, port_id);
  3046. ret = -EINVAL;
  3047. goto fail_cmd;
  3048. }
  3049. config.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  3050. config.param.port_id = q6audio_get_port_id(port_id);
  3051. config.param.payload_size = sizeof(config) - sizeof(struct apr_hdr) -
  3052. sizeof(config.param);
  3053. config.param.payload_address_lsw = 0x00;
  3054. config.param.payload_address_msw = 0x00;
  3055. config.param.mem_map_handle = 0x00;
  3056. config.pdata.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3057. config.pdata.param_id = cfg_type;
  3058. config.pdata.param_size = sizeof(config.port);
  3059. config.port = *afe_config;
  3060. if ((enc_format != ASM_MEDIA_FMT_NONE) &&
  3061. (cfg_type == AFE_PARAM_ID_SLIMBUS_CONFIG)) {
  3062. config.port.slim_sch.data_format =
  3063. AFE_SB_DATA_FORMAT_GENERIC_COMPRESSED;
  3064. }
  3065. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  3066. if (ret) {
  3067. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  3068. __func__, port_id, ret);
  3069. goto fail_cmd;
  3070. }
  3071. if ((enc_format != ASM_MEDIA_FMT_NONE) &&
  3072. (cfg_type == AFE_PARAM_ID_SLIMBUS_CONFIG)) {
  3073. pr_debug("%s: Found AFE encoder support for SLIMBUS enc_format = %d\n",
  3074. __func__, enc_format);
  3075. ret = q6afe_send_enc_config(port_id, cfg, enc_format,
  3076. *afe_config, afe_in_channels,
  3077. afe_in_bit_width,
  3078. scrambler_mode);
  3079. if (ret) {
  3080. pr_err("%s: AFE encoder config for port 0x%x failed %d\n",
  3081. __func__, port_id, ret);
  3082. goto fail_cmd;
  3083. }
  3084. }
  3085. port_index = afe_get_port_index(port_id);
  3086. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  3087. /*
  3088. * If afe_port_start() for tx port called before
  3089. * rx port, then aanc rx sample rate is zero. So,
  3090. * AANC state machine in AFE will not get triggered.
  3091. * Make sure to check whether aanc is active during
  3092. * afe_port_start() for rx port and if aanc rx
  3093. * sample rate is zero, call afe_aanc_start to configure
  3094. * aanc with valid sample rates.
  3095. */
  3096. if (this_afe.aanc_info.aanc_active &&
  3097. !this_afe.aanc_info.aanc_rx_port_sample_rate) {
  3098. this_afe.aanc_info.aanc_rx_port_sample_rate =
  3099. this_afe.afe_sample_rates[port_index];
  3100. ret = afe_aanc_start(this_afe.aanc_info.aanc_tx_port,
  3101. this_afe.aanc_info.aanc_rx_port);
  3102. pr_debug("%s: afe_aanc_start ret %d\n", __func__, ret);
  3103. }
  3104. } else {
  3105. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  3106. ret = -EINVAL;
  3107. goto fail_cmd;
  3108. }
  3109. ret = afe_send_cmd_port_start(port_id);
  3110. fail_cmd:
  3111. mutex_unlock(&this_afe.afe_cmd_lock);
  3112. return ret;
  3113. }
  3114. /**
  3115. * afe_port_start - to configure AFE session with
  3116. * specified port configuration
  3117. *
  3118. * @port_id: AFE port id number
  3119. * @afe_config: port configutation
  3120. * @rate: sampling rate of port
  3121. *
  3122. * Returns 0 on success or error value on port start failure.
  3123. */
  3124. int afe_port_start(u16 port_id, union afe_port_config *afe_config,
  3125. u32 rate)
  3126. {
  3127. return __afe_port_start(port_id, afe_config, rate,
  3128. 0, 0, NULL, ASM_MEDIA_FMT_NONE, 0);
  3129. }
  3130. EXPORT_SYMBOL(afe_port_start);
  3131. /**
  3132. * afe_port_start_v2 - to configure AFE session with
  3133. * specified port configuration and encoder params
  3134. *
  3135. * @port_id: AFE port id number
  3136. * @afe_config: port configutation
  3137. * @rate: sampling rate of port
  3138. * @cfg: AFE encoder configuration information to setup encoder
  3139. * @afe_in_channels: AFE input channel configuration, this needs
  3140. * update only if input channel is differ from AFE output
  3141. *
  3142. * Returns 0 on success or error value on port start failure.
  3143. */
  3144. int afe_port_start_v2(u16 port_id, union afe_port_config *afe_config,
  3145. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  3146. struct afe_enc_config *enc_cfg)
  3147. {
  3148. return __afe_port_start(port_id, afe_config, rate,
  3149. afe_in_channels, afe_in_bit_width,
  3150. &enc_cfg->data, enc_cfg->format,
  3151. enc_cfg->scrambler_mode);
  3152. }
  3153. EXPORT_SYMBOL(afe_port_start_v2);
  3154. int afe_get_port_index(u16 port_id)
  3155. {
  3156. switch (port_id) {
  3157. case PRIMARY_I2S_RX: return IDX_PRIMARY_I2S_RX;
  3158. case PRIMARY_I2S_TX: return IDX_PRIMARY_I2S_TX;
  3159. case AFE_PORT_ID_PRIMARY_PCM_RX:
  3160. return IDX_AFE_PORT_ID_PRIMARY_PCM_RX;
  3161. case AFE_PORT_ID_PRIMARY_PCM_TX:
  3162. return IDX_AFE_PORT_ID_PRIMARY_PCM_TX;
  3163. case AFE_PORT_ID_SECONDARY_PCM_RX:
  3164. return IDX_AFE_PORT_ID_SECONDARY_PCM_RX;
  3165. case AFE_PORT_ID_SECONDARY_PCM_TX:
  3166. return IDX_AFE_PORT_ID_SECONDARY_PCM_TX;
  3167. case AFE_PORT_ID_TERTIARY_PCM_RX:
  3168. return IDX_AFE_PORT_ID_TERTIARY_PCM_RX;
  3169. case AFE_PORT_ID_TERTIARY_PCM_TX:
  3170. return IDX_AFE_PORT_ID_TERTIARY_PCM_TX;
  3171. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  3172. return IDX_AFE_PORT_ID_QUATERNARY_PCM_RX;
  3173. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  3174. return IDX_AFE_PORT_ID_QUATERNARY_PCM_TX;
  3175. case AFE_PORT_ID_QUINARY_PCM_RX:
  3176. return IDX_AFE_PORT_ID_QUINARY_PCM_RX;
  3177. case AFE_PORT_ID_QUINARY_PCM_TX:
  3178. return IDX_AFE_PORT_ID_QUINARY_PCM_TX;
  3179. case SECONDARY_I2S_RX: return IDX_SECONDARY_I2S_RX;
  3180. case SECONDARY_I2S_TX: return IDX_SECONDARY_I2S_TX;
  3181. case MI2S_RX: return IDX_MI2S_RX;
  3182. case MI2S_TX: return IDX_MI2S_TX;
  3183. case HDMI_RX: return IDX_HDMI_RX;
  3184. case DISPLAY_PORT_RX: return IDX_DISPLAY_PORT_RX;
  3185. case AFE_PORT_ID_SPDIF_RX: return IDX_SPDIF_RX;
  3186. case RSVD_2: return IDX_RSVD_2;
  3187. case RSVD_3: return IDX_RSVD_3;
  3188. case DIGI_MIC_TX: return IDX_DIGI_MIC_TX;
  3189. case VOICE_RECORD_RX: return IDX_VOICE_RECORD_RX;
  3190. case VOICE_RECORD_TX: return IDX_VOICE_RECORD_TX;
  3191. case VOICE_PLAYBACK_TX: return IDX_VOICE_PLAYBACK_TX;
  3192. case VOICE2_PLAYBACK_TX: return IDX_VOICE2_PLAYBACK_TX;
  3193. case SLIMBUS_0_RX: return IDX_SLIMBUS_0_RX;
  3194. case SLIMBUS_0_TX: return IDX_SLIMBUS_0_TX;
  3195. case SLIMBUS_1_RX: return IDX_SLIMBUS_1_RX;
  3196. case SLIMBUS_1_TX: return IDX_SLIMBUS_1_TX;
  3197. case SLIMBUS_2_RX: return IDX_SLIMBUS_2_RX;
  3198. case SLIMBUS_2_TX: return IDX_SLIMBUS_2_TX;
  3199. case SLIMBUS_3_RX: return IDX_SLIMBUS_3_RX;
  3200. case SLIMBUS_3_TX: return IDX_SLIMBUS_3_TX;
  3201. case INT_BT_SCO_RX: return IDX_INT_BT_SCO_RX;
  3202. case INT_BT_SCO_TX: return IDX_INT_BT_SCO_TX;
  3203. case INT_BT_A2DP_RX: return IDX_INT_BT_A2DP_RX;
  3204. case INT_FM_RX: return IDX_INT_FM_RX;
  3205. case INT_FM_TX: return IDX_INT_FM_TX;
  3206. case RT_PROXY_PORT_001_RX: return IDX_RT_PROXY_PORT_001_RX;
  3207. case RT_PROXY_PORT_001_TX: return IDX_RT_PROXY_PORT_001_TX;
  3208. case SLIMBUS_4_RX: return IDX_SLIMBUS_4_RX;
  3209. case SLIMBUS_4_TX: return IDX_SLIMBUS_4_TX;
  3210. case SLIMBUS_5_RX: return IDX_SLIMBUS_5_RX;
  3211. case SLIMBUS_5_TX: return IDX_SLIMBUS_5_TX;
  3212. case SLIMBUS_6_RX: return IDX_SLIMBUS_6_RX;
  3213. case SLIMBUS_6_TX: return IDX_SLIMBUS_6_TX;
  3214. case SLIMBUS_7_RX: return IDX_SLIMBUS_7_RX;
  3215. case SLIMBUS_7_TX: return IDX_SLIMBUS_7_TX;
  3216. case SLIMBUS_8_RX: return IDX_SLIMBUS_8_RX;
  3217. case SLIMBUS_8_TX: return IDX_SLIMBUS_8_TX;
  3218. case AFE_PORT_ID_USB_RX: return IDX_AFE_PORT_ID_USB_RX;
  3219. case AFE_PORT_ID_USB_TX: return IDX_AFE_PORT_ID_USB_TX;
  3220. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  3221. return IDX_AFE_PORT_ID_PRIMARY_MI2S_RX;
  3222. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  3223. return IDX_AFE_PORT_ID_PRIMARY_MI2S_TX;
  3224. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  3225. return IDX_AFE_PORT_ID_QUATERNARY_MI2S_RX;
  3226. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  3227. return IDX_AFE_PORT_ID_QUATERNARY_MI2S_TX;
  3228. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  3229. return IDX_AFE_PORT_ID_SECONDARY_MI2S_RX;
  3230. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  3231. return IDX_AFE_PORT_ID_SECONDARY_MI2S_TX;
  3232. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  3233. return IDX_AFE_PORT_ID_TERTIARY_MI2S_RX;
  3234. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  3235. return IDX_AFE_PORT_ID_TERTIARY_MI2S_TX;
  3236. case AFE_PORT_ID_SECONDARY_MI2S_RX_SD1:
  3237. return IDX_AFE_PORT_ID_SECONDARY_MI2S_RX_SD1;
  3238. case AFE_PORT_ID_QUINARY_MI2S_RX:
  3239. return IDX_AFE_PORT_ID_QUINARY_MI2S_RX;
  3240. case AFE_PORT_ID_QUINARY_MI2S_TX:
  3241. return IDX_AFE_PORT_ID_QUINARY_MI2S_TX;
  3242. case AFE_PORT_ID_SENARY_MI2S_TX:
  3243. return IDX_AFE_PORT_ID_SENARY_MI2S_TX;
  3244. case AFE_PORT_ID_PRIMARY_TDM_RX:
  3245. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_0;
  3246. case AFE_PORT_ID_PRIMARY_TDM_TX:
  3247. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_0;
  3248. case AFE_PORT_ID_PRIMARY_TDM_RX_1:
  3249. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_1;
  3250. case AFE_PORT_ID_PRIMARY_TDM_TX_1:
  3251. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_1;
  3252. case AFE_PORT_ID_PRIMARY_TDM_RX_2:
  3253. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_2;
  3254. case AFE_PORT_ID_PRIMARY_TDM_TX_2:
  3255. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_2;
  3256. case AFE_PORT_ID_PRIMARY_TDM_RX_3:
  3257. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_3;
  3258. case AFE_PORT_ID_PRIMARY_TDM_TX_3:
  3259. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_3;
  3260. case AFE_PORT_ID_PRIMARY_TDM_RX_4:
  3261. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_4;
  3262. case AFE_PORT_ID_PRIMARY_TDM_TX_4:
  3263. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_4;
  3264. case AFE_PORT_ID_PRIMARY_TDM_RX_5:
  3265. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_5;
  3266. case AFE_PORT_ID_PRIMARY_TDM_TX_5:
  3267. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_5;
  3268. case AFE_PORT_ID_PRIMARY_TDM_RX_6:
  3269. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_6;
  3270. case AFE_PORT_ID_PRIMARY_TDM_TX_6:
  3271. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_6;
  3272. case AFE_PORT_ID_PRIMARY_TDM_RX_7:
  3273. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_7;
  3274. case AFE_PORT_ID_PRIMARY_TDM_TX_7:
  3275. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_7;
  3276. case AFE_PORT_ID_SECONDARY_TDM_RX:
  3277. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_0;
  3278. case AFE_PORT_ID_SECONDARY_TDM_TX:
  3279. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_0;
  3280. case AFE_PORT_ID_SECONDARY_TDM_RX_1:
  3281. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_1;
  3282. case AFE_PORT_ID_SECONDARY_TDM_TX_1:
  3283. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_1;
  3284. case AFE_PORT_ID_SECONDARY_TDM_RX_2:
  3285. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_2;
  3286. case AFE_PORT_ID_SECONDARY_TDM_TX_2:
  3287. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_2;
  3288. case AFE_PORT_ID_SECONDARY_TDM_RX_3:
  3289. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_3;
  3290. case AFE_PORT_ID_SECONDARY_TDM_TX_3:
  3291. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_3;
  3292. case AFE_PORT_ID_SECONDARY_TDM_RX_4:
  3293. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_4;
  3294. case AFE_PORT_ID_SECONDARY_TDM_TX_4:
  3295. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_4;
  3296. case AFE_PORT_ID_SECONDARY_TDM_RX_5:
  3297. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_5;
  3298. case AFE_PORT_ID_SECONDARY_TDM_TX_5:
  3299. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_5;
  3300. case AFE_PORT_ID_SECONDARY_TDM_RX_6:
  3301. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_6;
  3302. case AFE_PORT_ID_SECONDARY_TDM_TX_6:
  3303. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_6;
  3304. case AFE_PORT_ID_SECONDARY_TDM_RX_7:
  3305. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_7;
  3306. case AFE_PORT_ID_SECONDARY_TDM_TX_7:
  3307. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_7;
  3308. case AFE_PORT_ID_TERTIARY_TDM_RX:
  3309. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_0;
  3310. case AFE_PORT_ID_TERTIARY_TDM_TX:
  3311. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_0;
  3312. case AFE_PORT_ID_TERTIARY_TDM_RX_1:
  3313. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_1;
  3314. case AFE_PORT_ID_TERTIARY_TDM_TX_1:
  3315. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_1;
  3316. case AFE_PORT_ID_TERTIARY_TDM_RX_2:
  3317. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_2;
  3318. case AFE_PORT_ID_TERTIARY_TDM_TX_2:
  3319. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_2;
  3320. case AFE_PORT_ID_TERTIARY_TDM_RX_3:
  3321. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_3;
  3322. case AFE_PORT_ID_TERTIARY_TDM_TX_3:
  3323. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_3;
  3324. case AFE_PORT_ID_TERTIARY_TDM_RX_4:
  3325. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_4;
  3326. case AFE_PORT_ID_TERTIARY_TDM_TX_4:
  3327. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_4;
  3328. case AFE_PORT_ID_TERTIARY_TDM_RX_5:
  3329. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_5;
  3330. case AFE_PORT_ID_TERTIARY_TDM_TX_5:
  3331. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_5;
  3332. case AFE_PORT_ID_TERTIARY_TDM_RX_6:
  3333. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_6;
  3334. case AFE_PORT_ID_TERTIARY_TDM_TX_6:
  3335. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_6;
  3336. case AFE_PORT_ID_TERTIARY_TDM_RX_7:
  3337. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_7;
  3338. case AFE_PORT_ID_TERTIARY_TDM_TX_7:
  3339. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_7;
  3340. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  3341. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_0;
  3342. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  3343. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_0;
  3344. case AFE_PORT_ID_QUATERNARY_TDM_RX_1:
  3345. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_1;
  3346. case AFE_PORT_ID_QUATERNARY_TDM_TX_1:
  3347. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_1;
  3348. case AFE_PORT_ID_QUATERNARY_TDM_RX_2:
  3349. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_2;
  3350. case AFE_PORT_ID_QUATERNARY_TDM_TX_2:
  3351. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_2;
  3352. case AFE_PORT_ID_QUATERNARY_TDM_RX_3:
  3353. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_3;
  3354. case AFE_PORT_ID_QUATERNARY_TDM_TX_3:
  3355. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_3;
  3356. case AFE_PORT_ID_QUATERNARY_TDM_RX_4:
  3357. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_4;
  3358. case AFE_PORT_ID_QUATERNARY_TDM_TX_4:
  3359. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_4;
  3360. case AFE_PORT_ID_QUATERNARY_TDM_RX_5:
  3361. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_5;
  3362. case AFE_PORT_ID_QUATERNARY_TDM_TX_5:
  3363. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_5;
  3364. case AFE_PORT_ID_QUATERNARY_TDM_RX_6:
  3365. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_6;
  3366. case AFE_PORT_ID_QUATERNARY_TDM_TX_6:
  3367. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_6;
  3368. case AFE_PORT_ID_QUATERNARY_TDM_RX_7:
  3369. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_7;
  3370. case AFE_PORT_ID_QUATERNARY_TDM_TX_7:
  3371. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_7;
  3372. case AFE_PORT_ID_QUINARY_TDM_RX:
  3373. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_0;
  3374. case AFE_PORT_ID_QUINARY_TDM_TX:
  3375. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_0;
  3376. case AFE_PORT_ID_QUINARY_TDM_RX_1:
  3377. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_1;
  3378. case AFE_PORT_ID_QUINARY_TDM_TX_1:
  3379. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_1;
  3380. case AFE_PORT_ID_QUINARY_TDM_RX_2:
  3381. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_2;
  3382. case AFE_PORT_ID_QUINARY_TDM_TX_2:
  3383. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_2;
  3384. case AFE_PORT_ID_QUINARY_TDM_RX_3:
  3385. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_3;
  3386. case AFE_PORT_ID_QUINARY_TDM_TX_3:
  3387. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_3;
  3388. case AFE_PORT_ID_QUINARY_TDM_RX_4:
  3389. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_4;
  3390. case AFE_PORT_ID_QUINARY_TDM_TX_4:
  3391. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_4;
  3392. case AFE_PORT_ID_QUINARY_TDM_RX_5:
  3393. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_5;
  3394. case AFE_PORT_ID_QUINARY_TDM_TX_5:
  3395. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_5;
  3396. case AFE_PORT_ID_QUINARY_TDM_RX_6:
  3397. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_6;
  3398. case AFE_PORT_ID_QUINARY_TDM_TX_6:
  3399. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_6;
  3400. case AFE_PORT_ID_QUINARY_TDM_RX_7:
  3401. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_7;
  3402. case AFE_PORT_ID_QUINARY_TDM_TX_7:
  3403. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_7;
  3404. case AFE_PORT_ID_INT0_MI2S_RX:
  3405. return IDX_AFE_PORT_ID_INT0_MI2S_RX;
  3406. case AFE_PORT_ID_INT0_MI2S_TX:
  3407. return IDX_AFE_PORT_ID_INT0_MI2S_TX;
  3408. case AFE_PORT_ID_INT1_MI2S_RX:
  3409. return IDX_AFE_PORT_ID_INT1_MI2S_RX;
  3410. case AFE_PORT_ID_INT1_MI2S_TX:
  3411. return IDX_AFE_PORT_ID_INT1_MI2S_TX;
  3412. case AFE_PORT_ID_INT2_MI2S_RX:
  3413. return IDX_AFE_PORT_ID_INT2_MI2S_RX;
  3414. case AFE_PORT_ID_INT2_MI2S_TX:
  3415. return IDX_AFE_PORT_ID_INT2_MI2S_TX;
  3416. case AFE_PORT_ID_INT3_MI2S_RX:
  3417. return IDX_AFE_PORT_ID_INT3_MI2S_RX;
  3418. case AFE_PORT_ID_INT3_MI2S_TX:
  3419. return IDX_AFE_PORT_ID_INT3_MI2S_TX;
  3420. case AFE_PORT_ID_INT4_MI2S_RX:
  3421. return IDX_AFE_PORT_ID_INT4_MI2S_RX;
  3422. case AFE_PORT_ID_INT4_MI2S_TX:
  3423. return IDX_AFE_PORT_ID_INT4_MI2S_TX;
  3424. case AFE_PORT_ID_INT5_MI2S_RX:
  3425. return IDX_AFE_PORT_ID_INT5_MI2S_RX;
  3426. case AFE_PORT_ID_INT5_MI2S_TX:
  3427. return IDX_AFE_PORT_ID_INT5_MI2S_TX;
  3428. case AFE_PORT_ID_INT6_MI2S_RX:
  3429. return IDX_AFE_PORT_ID_INT6_MI2S_RX;
  3430. case AFE_PORT_ID_INT6_MI2S_TX:
  3431. return IDX_AFE_PORT_ID_INT6_MI2S_TX;
  3432. default:
  3433. pr_err("%s: port 0x%x\n", __func__, port_id);
  3434. return -EINVAL;
  3435. }
  3436. }
  3437. /**
  3438. * afe_open -
  3439. * command to open AFE port
  3440. *
  3441. * @port_id: AFE port id
  3442. * @afe_config: AFE port config to pass
  3443. * @rate: sample rate
  3444. *
  3445. * Returns 0 on success or error on failure
  3446. */
  3447. int afe_open(u16 port_id,
  3448. union afe_port_config *afe_config, int rate)
  3449. {
  3450. struct afe_port_cmd_device_start start;
  3451. struct afe_audioif_config_command config;
  3452. int ret = 0;
  3453. int cfg_type;
  3454. int index = 0;
  3455. if (!afe_config) {
  3456. pr_err("%s: Error, no configuration data\n", __func__);
  3457. ret = -EINVAL;
  3458. return ret;
  3459. }
  3460. pr_err("%s: port_id 0x%x rate %d\n", __func__, port_id, rate);
  3461. index = q6audio_get_port_index(port_id);
  3462. if (index < 0 || index >= AFE_MAX_PORTS) {
  3463. pr_err("%s: AFE port index[%d] invalid!\n",
  3464. __func__, index);
  3465. return -EINVAL;
  3466. }
  3467. ret = q6audio_validate_port(port_id);
  3468. if (ret < 0) {
  3469. pr_err("%s: Invalid port 0x%x ret %d", __func__, port_id, ret);
  3470. return -EINVAL;
  3471. }
  3472. if ((port_id == RT_PROXY_DAI_001_RX) ||
  3473. (port_id == RT_PROXY_DAI_002_TX)) {
  3474. pr_err("%s: wrong port 0x%x\n", __func__, port_id);
  3475. return -EINVAL;
  3476. }
  3477. if ((port_id == RT_PROXY_DAI_002_RX) ||
  3478. (port_id == RT_PROXY_DAI_001_TX))
  3479. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  3480. ret = afe_q6_interface_prepare();
  3481. if (ret != 0) {
  3482. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3483. return -EINVAL;
  3484. }
  3485. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  3486. this_afe.afe_sample_rates[index] = rate;
  3487. if (this_afe.rt_cb)
  3488. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  3489. }
  3490. /* Also send the topology id here: */
  3491. afe_send_custom_topology(); /* One time call: only for first time */
  3492. afe_send_port_topology_id(port_id);
  3493. ret = q6audio_validate_port(port_id);
  3494. if (ret < 0) {
  3495. pr_err("%s: Failed : Invalid Port id = 0x%x ret %d\n",
  3496. __func__, port_id, ret);
  3497. return -EINVAL;
  3498. }
  3499. mutex_lock(&this_afe.afe_cmd_lock);
  3500. config.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3501. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3502. config.hdr.pkt_size = sizeof(config);
  3503. config.hdr.src_port = 0;
  3504. config.hdr.dest_port = 0;
  3505. config.hdr.token = index;
  3506. switch (port_id) {
  3507. case PRIMARY_I2S_RX:
  3508. case PRIMARY_I2S_TX:
  3509. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  3510. break;
  3511. case AFE_PORT_ID_PRIMARY_PCM_RX:
  3512. case AFE_PORT_ID_PRIMARY_PCM_TX:
  3513. case AFE_PORT_ID_SECONDARY_PCM_RX:
  3514. case AFE_PORT_ID_SECONDARY_PCM_TX:
  3515. case AFE_PORT_ID_TERTIARY_PCM_RX:
  3516. case AFE_PORT_ID_TERTIARY_PCM_TX:
  3517. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  3518. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  3519. case AFE_PORT_ID_QUINARY_PCM_RX:
  3520. case AFE_PORT_ID_QUINARY_PCM_TX:
  3521. cfg_type = AFE_PARAM_ID_PCM_CONFIG;
  3522. break;
  3523. case SECONDARY_I2S_RX:
  3524. case SECONDARY_I2S_TX:
  3525. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  3526. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  3527. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  3528. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  3529. case MI2S_RX:
  3530. case MI2S_TX:
  3531. case AFE_PORT_ID_QUINARY_MI2S_RX:
  3532. case AFE_PORT_ID_QUINARY_MI2S_TX:
  3533. case AFE_PORT_ID_SENARY_MI2S_TX:
  3534. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  3535. break;
  3536. case HDMI_RX:
  3537. case DISPLAY_PORT_RX:
  3538. cfg_type = AFE_PARAM_ID_HDMI_CONFIG;
  3539. break;
  3540. case SLIMBUS_0_RX:
  3541. case SLIMBUS_0_TX:
  3542. case SLIMBUS_1_RX:
  3543. case SLIMBUS_1_TX:
  3544. case SLIMBUS_2_RX:
  3545. case SLIMBUS_2_TX:
  3546. case SLIMBUS_3_RX:
  3547. case SLIMBUS_3_TX:
  3548. case SLIMBUS_4_RX:
  3549. case SLIMBUS_4_TX:
  3550. case SLIMBUS_5_RX:
  3551. case SLIMBUS_6_RX:
  3552. case SLIMBUS_6_TX:
  3553. case SLIMBUS_7_RX:
  3554. case SLIMBUS_7_TX:
  3555. case SLIMBUS_8_RX:
  3556. case SLIMBUS_8_TX:
  3557. cfg_type = AFE_PARAM_ID_SLIMBUS_CONFIG;
  3558. break;
  3559. case AFE_PORT_ID_USB_RX:
  3560. case AFE_PORT_ID_USB_TX:
  3561. cfg_type = AFE_PARAM_ID_USB_AUDIO_CONFIG;
  3562. break;
  3563. default:
  3564. pr_err("%s: Invalid port id 0x%x\n",
  3565. __func__, port_id);
  3566. ret = -EINVAL;
  3567. goto fail_cmd;
  3568. }
  3569. config.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  3570. config.param.port_id = q6audio_get_port_id(port_id);
  3571. config.param.payload_size = sizeof(config) - sizeof(struct apr_hdr)
  3572. - sizeof(config.param);
  3573. config.param.payload_address_lsw = 0x00;
  3574. config.param.payload_address_msw = 0x00;
  3575. config.param.mem_map_handle = 0x00;
  3576. config.pdata.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3577. config.pdata.param_id = cfg_type;
  3578. config.pdata.param_size = sizeof(config.port);
  3579. config.port = *afe_config;
  3580. pr_debug("%s: param PL size=%d iparam_size[%d][%zd %zd %zd %zd] param_id[0x%x]\n",
  3581. __func__, config.param.payload_size, config.pdata.param_size,
  3582. sizeof(config), sizeof(config.param), sizeof(config.port),
  3583. sizeof(struct apr_hdr), config.pdata.param_id);
  3584. ret = afe_apr_send_pkt(&config, &this_afe.wait[index]);
  3585. if (ret) {
  3586. pr_err("%s: AFE enable for port 0x%x opcode[0x%x]failed %d\n",
  3587. __func__, port_id, cfg_type, ret);
  3588. goto fail_cmd;
  3589. }
  3590. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3591. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3592. start.hdr.pkt_size = sizeof(start);
  3593. start.hdr.src_port = 0;
  3594. start.hdr.dest_port = 0;
  3595. start.hdr.token = index;
  3596. start.hdr.opcode = AFE_PORT_CMD_DEVICE_START;
  3597. start.port_id = q6audio_get_port_id(port_id);
  3598. pr_debug("%s: cmd device start opcode[0x%x] port id[0x%x]\n",
  3599. __func__, start.hdr.opcode, start.port_id);
  3600. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  3601. if (ret) {
  3602. pr_err("%s: AFE enable for port 0x%x failed %d\n", __func__,
  3603. port_id, ret);
  3604. goto fail_cmd;
  3605. }
  3606. fail_cmd:
  3607. mutex_unlock(&this_afe.afe_cmd_lock);
  3608. return ret;
  3609. }
  3610. EXPORT_SYMBOL(afe_open);
  3611. /**
  3612. * afe_loopback -
  3613. * command to set loopback between AFE ports
  3614. *
  3615. * @enable: enable or disable loopback
  3616. * @rx_port: AFE RX port ID
  3617. * @tx_port: AFE TX port ID
  3618. *
  3619. * Returns 0 on success or error on failure
  3620. */
  3621. int afe_loopback(u16 enable, u16 rx_port, u16 tx_port)
  3622. {
  3623. struct afe_loopback_cfg_v1 lb_cmd;
  3624. int ret = 0;
  3625. int index = 0;
  3626. if (rx_port == MI2S_RX)
  3627. rx_port = AFE_PORT_ID_PRIMARY_MI2S_RX;
  3628. if (tx_port == MI2S_TX)
  3629. tx_port = AFE_PORT_ID_PRIMARY_MI2S_TX;
  3630. ret = afe_q6_interface_prepare();
  3631. if (ret != 0) {
  3632. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3633. return ret;
  3634. }
  3635. index = q6audio_get_port_index(rx_port);
  3636. if (index < 0 || index >= AFE_MAX_PORTS) {
  3637. pr_err("%s: AFE port index[%d] invalid!\n",
  3638. __func__, index);
  3639. return -EINVAL;
  3640. }
  3641. ret = q6audio_validate_port(rx_port);
  3642. if (ret < 0) {
  3643. pr_err("%s: Invalid port 0x%x ret %d", __func__, rx_port, ret);
  3644. return -EINVAL;
  3645. }
  3646. lb_cmd.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3647. APR_HDR_LEN(20), APR_PKT_VER);
  3648. lb_cmd.hdr.pkt_size = sizeof(lb_cmd);
  3649. lb_cmd.hdr.src_port = 0;
  3650. lb_cmd.hdr.dest_port = 0;
  3651. lb_cmd.hdr.token = index;
  3652. lb_cmd.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  3653. lb_cmd.param.port_id = tx_port;
  3654. lb_cmd.param.payload_size = (sizeof(lb_cmd) - sizeof(struct apr_hdr) -
  3655. sizeof(struct afe_port_cmd_set_param_v2));
  3656. lb_cmd.param.payload_address_lsw = 0x00;
  3657. lb_cmd.param.payload_address_msw = 0x00;
  3658. lb_cmd.param.mem_map_handle = 0x00;
  3659. lb_cmd.pdata.module_id = AFE_MODULE_LOOPBACK;
  3660. lb_cmd.pdata.param_id = AFE_PARAM_ID_LOOPBACK_CONFIG;
  3661. lb_cmd.pdata.param_size = lb_cmd.param.payload_size -
  3662. sizeof(struct afe_port_param_data_v2);
  3663. lb_cmd.dst_port_id = rx_port;
  3664. lb_cmd.routing_mode = LB_MODE_DEFAULT;
  3665. lb_cmd.enable = (enable ? 1 : 0);
  3666. lb_cmd.loopback_cfg_minor_version = AFE_API_VERSION_LOOPBACK_CONFIG;
  3667. ret = afe_apr_send_pkt(&lb_cmd, &this_afe.wait[index]);
  3668. if (ret)
  3669. pr_err("%s: AFE loopback failed %d\n", __func__, ret);
  3670. return ret;
  3671. }
  3672. EXPORT_SYMBOL(afe_loopback);
  3673. /**
  3674. * afe_loopback_gain -
  3675. * command to set gain for AFE loopback
  3676. *
  3677. * @port_id: AFE port id
  3678. * @volume: gain value to set
  3679. *
  3680. * Returns 0 on success or error on failure
  3681. */
  3682. int afe_loopback_gain(u16 port_id, u16 volume)
  3683. {
  3684. struct afe_loopback_gain_per_path_param set_param;
  3685. int ret = 0;
  3686. int index = 0;
  3687. if (this_afe.apr == NULL) {
  3688. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  3689. 0xFFFFFFFF, &this_afe);
  3690. pr_debug("%s: Register AFE\n", __func__);
  3691. if (this_afe.apr == NULL) {
  3692. pr_err("%s: Unable to register AFE\n", __func__);
  3693. ret = -ENODEV;
  3694. return ret;
  3695. }
  3696. rtac_set_afe_handle(this_afe.apr);
  3697. }
  3698. ret = q6audio_validate_port(port_id);
  3699. if (ret < 0) {
  3700. pr_err("%s: Failed : Invalid Port id = 0x%x ret %d\n",
  3701. __func__, port_id, ret);
  3702. ret = -EINVAL;
  3703. goto fail_cmd;
  3704. }
  3705. index = q6audio_get_port_index(port_id);
  3706. if (index < 0 || index >= AFE_MAX_PORTS) {
  3707. pr_err("%s: AFE port index[%d] invalid!\n",
  3708. __func__, index);
  3709. return -EINVAL;
  3710. }
  3711. ret = q6audio_validate_port(port_id);
  3712. if (ret < 0) {
  3713. pr_err("%s: Invalid port 0x%x ret %d",
  3714. __func__, port_id, ret);
  3715. return -EINVAL;
  3716. }
  3717. /* RX ports numbers are even .TX ports numbers are odd. */
  3718. if (port_id % 2 == 0) {
  3719. pr_err("%s: Failed : afe loopback gain only for TX ports. port_id %d\n",
  3720. __func__, port_id);
  3721. ret = -EINVAL;
  3722. goto fail_cmd;
  3723. }
  3724. pr_debug("%s: port 0x%x volume %d\n", __func__, port_id, volume);
  3725. set_param.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3726. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3727. set_param.hdr.pkt_size = sizeof(set_param);
  3728. set_param.hdr.src_port = 0;
  3729. set_param.hdr.dest_port = 0;
  3730. set_param.hdr.token = index;
  3731. set_param.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  3732. set_param.param.port_id = port_id;
  3733. set_param.param.payload_size =
  3734. (sizeof(struct afe_loopback_gain_per_path_param) -
  3735. sizeof(struct apr_hdr) - sizeof(struct afe_port_cmd_set_param_v2));
  3736. set_param.param.payload_address_lsw = 0;
  3737. set_param.param.payload_address_msw = 0;
  3738. set_param.param.mem_map_handle = 0;
  3739. set_param.pdata.module_id = AFE_MODULE_LOOPBACK;
  3740. set_param.pdata.param_id = AFE_PARAM_ID_LOOPBACK_GAIN_PER_PATH;
  3741. set_param.pdata.param_size =
  3742. (set_param.param.payload_size -
  3743. sizeof(struct afe_port_param_data_v2));
  3744. set_param.rx_port_id = port_id;
  3745. set_param.gain = volume;
  3746. ret = afe_apr_send_pkt(&set_param, &this_afe.wait[index]);
  3747. if (ret) {
  3748. pr_err("%s: AFE param set failed for port 0x%x ret %d\n",
  3749. __func__, port_id, ret);
  3750. goto fail_cmd;
  3751. }
  3752. fail_cmd:
  3753. return ret;
  3754. }
  3755. EXPORT_SYMBOL(afe_loopback_gain);
  3756. int afe_pseudo_port_start_nowait(u16 port_id)
  3757. {
  3758. struct afe_pseudoport_start_command start;
  3759. int ret = 0;
  3760. pr_debug("%s: port_id=0x%x\n", __func__, port_id);
  3761. if (this_afe.apr == NULL) {
  3762. pr_err("%s: AFE APR is not registered\n", __func__);
  3763. return -ENODEV;
  3764. }
  3765. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3766. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3767. start.hdr.pkt_size = sizeof(start);
  3768. start.hdr.src_port = 0;
  3769. start.hdr.dest_port = 0;
  3770. start.hdr.token = 0;
  3771. start.hdr.opcode = AFE_PSEUDOPORT_CMD_START;
  3772. start.port_id = port_id;
  3773. start.timing = 1;
  3774. ret = afe_apr_send_pkt(&start, NULL);
  3775. if (ret) {
  3776. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  3777. __func__, port_id, ret);
  3778. return ret;
  3779. }
  3780. return 0;
  3781. }
  3782. int afe_start_pseudo_port(u16 port_id)
  3783. {
  3784. int ret = 0;
  3785. struct afe_pseudoport_start_command start;
  3786. int index = 0;
  3787. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  3788. ret = afe_q6_interface_prepare();
  3789. if (ret != 0) {
  3790. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3791. return ret;
  3792. }
  3793. index = q6audio_get_port_index(port_id);
  3794. if (index < 0 || index >= AFE_MAX_PORTS) {
  3795. pr_err("%s: AFE port index[%d] invalid!\n",
  3796. __func__, index);
  3797. return -EINVAL;
  3798. }
  3799. ret = q6audio_validate_port(port_id);
  3800. if (ret < 0) {
  3801. pr_err("%s: Invalid port 0x%x ret %d",
  3802. __func__, port_id, ret);
  3803. return -EINVAL;
  3804. }
  3805. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3806. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3807. start.hdr.pkt_size = sizeof(start);
  3808. start.hdr.src_port = 0;
  3809. start.hdr.dest_port = 0;
  3810. start.hdr.token = 0;
  3811. start.hdr.opcode = AFE_PSEUDOPORT_CMD_START;
  3812. start.port_id = port_id;
  3813. start.timing = 1;
  3814. start.hdr.token = index;
  3815. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  3816. if (ret)
  3817. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  3818. __func__, port_id, ret);
  3819. return ret;
  3820. }
  3821. int afe_pseudo_port_stop_nowait(u16 port_id)
  3822. {
  3823. int ret = 0;
  3824. struct afe_pseudoport_stop_command stop;
  3825. int index = 0;
  3826. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  3827. if (this_afe.apr == NULL) {
  3828. pr_err("%s: AFE is already closed\n", __func__);
  3829. return -EINVAL;
  3830. }
  3831. index = q6audio_get_port_index(port_id);
  3832. if (index < 0 || index >= AFE_MAX_PORTS) {
  3833. pr_err("%s: AFE port index[%d] invalid!\n",
  3834. __func__, index);
  3835. return -EINVAL;
  3836. }
  3837. ret = q6audio_validate_port(port_id);
  3838. if (ret < 0) {
  3839. pr_err("%s: Invalid port 0x%x ret %d",
  3840. __func__, port_id, ret);
  3841. return -EINVAL;
  3842. }
  3843. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3844. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3845. stop.hdr.pkt_size = sizeof(stop);
  3846. stop.hdr.src_port = 0;
  3847. stop.hdr.dest_port = 0;
  3848. stop.hdr.token = 0;
  3849. stop.hdr.opcode = AFE_PSEUDOPORT_CMD_STOP;
  3850. stop.port_id = port_id;
  3851. stop.reserved = 0;
  3852. stop.hdr.token = index;
  3853. ret = afe_apr_send_pkt(&stop, NULL);
  3854. if (ret)
  3855. pr_err("%s: AFE close failed %d\n", __func__, ret);
  3856. return ret;
  3857. }
  3858. int afe_port_group_set_param(u16 group_id,
  3859. union afe_port_group_config *afe_group_config)
  3860. {
  3861. int ret;
  3862. struct afe_port_group_create config;
  3863. int cfg_type;
  3864. if (!afe_group_config) {
  3865. pr_err("%s: Error, no configuration data\n", __func__);
  3866. return -EINVAL;
  3867. }
  3868. pr_debug("%s: group id: 0x%x\n", __func__, group_id);
  3869. ret = afe_q6_interface_prepare();
  3870. if (ret != 0) {
  3871. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3872. return ret;
  3873. }
  3874. switch (group_id) {
  3875. case AFE_GROUP_DEVICE_ID_PRIMARY_TDM_RX:
  3876. case AFE_GROUP_DEVICE_ID_PRIMARY_TDM_TX:
  3877. case AFE_GROUP_DEVICE_ID_SECONDARY_TDM_RX:
  3878. case AFE_GROUP_DEVICE_ID_SECONDARY_TDM_TX:
  3879. case AFE_GROUP_DEVICE_ID_TERTIARY_TDM_RX:
  3880. case AFE_GROUP_DEVICE_ID_TERTIARY_TDM_TX:
  3881. case AFE_GROUP_DEVICE_ID_QUATERNARY_TDM_RX:
  3882. case AFE_GROUP_DEVICE_ID_QUATERNARY_TDM_TX:
  3883. case AFE_GROUP_DEVICE_ID_QUINARY_TDM_RX:
  3884. case AFE_GROUP_DEVICE_ID_QUINARY_TDM_TX:
  3885. cfg_type = AFE_PARAM_ID_GROUP_DEVICE_TDM_CONFIG;
  3886. break;
  3887. default:
  3888. pr_err("%s: Invalid group id 0x%x\n", __func__, group_id);
  3889. return -EINVAL;
  3890. }
  3891. memset(&config, 0, sizeof(config));
  3892. config.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3893. APR_HDR_LEN(APR_HDR_SIZE),
  3894. APR_PKT_VER);
  3895. config.hdr.pkt_size = sizeof(config);
  3896. config.hdr.src_port = 0;
  3897. config.hdr.dest_port = 0;
  3898. config.hdr.token = IDX_GLOBAL_CFG;
  3899. config.hdr.opcode = AFE_SVC_CMD_SET_PARAM;
  3900. config.param.payload_size = sizeof(config) - sizeof(struct apr_hdr) -
  3901. sizeof(config.param);
  3902. config.param.payload_address_lsw = 0x00;
  3903. config.param.payload_address_msw = 0x00;
  3904. config.param.mem_map_handle = 0x00;
  3905. config.pdata.module_id = AFE_MODULE_GROUP_DEVICE;
  3906. config.pdata.param_id = cfg_type;
  3907. config.pdata.param_size = sizeof(config.data);
  3908. config.data = *afe_group_config;
  3909. ret = afe_apr_send_pkt(&config, &this_afe.wait[IDX_GLOBAL_CFG]);
  3910. if (ret)
  3911. pr_err("%s: AFE_PARAM_ID_GROUP_DEVICE_CFG failed %d\n",
  3912. __func__, ret);
  3913. return ret;
  3914. }
  3915. /**
  3916. * afe_port_group_enable -
  3917. * command to enable AFE port group
  3918. *
  3919. * @group_id: group ID for AFE port group
  3920. * @afe_group_config: config for AFE group
  3921. * @enable: flag to indicate enable or disable
  3922. *
  3923. * Returns 0 on success or error on failure
  3924. */
  3925. int afe_port_group_enable(u16 group_id,
  3926. union afe_port_group_config *afe_group_config,
  3927. u16 enable)
  3928. {
  3929. int ret;
  3930. struct afe_port_group_create config;
  3931. pr_debug("%s: group id: 0x%x enable: %d\n", __func__,
  3932. group_id, enable);
  3933. ret = afe_q6_interface_prepare();
  3934. if (ret != 0) {
  3935. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3936. return ret;
  3937. }
  3938. if (enable) {
  3939. ret = afe_port_group_set_param(group_id, afe_group_config);
  3940. if (ret < 0) {
  3941. pr_err("%s: afe send failed %d\n", __func__, ret);
  3942. return ret;
  3943. }
  3944. }
  3945. memset(&config, 0, sizeof(config));
  3946. config.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3947. APR_HDR_LEN(APR_HDR_SIZE),
  3948. APR_PKT_VER);
  3949. config.hdr.pkt_size = sizeof(config);
  3950. config.hdr.src_port = 0;
  3951. config.hdr.dest_port = 0;
  3952. config.hdr.token = IDX_GLOBAL_CFG;
  3953. config.hdr.opcode = AFE_SVC_CMD_SET_PARAM;
  3954. config.param.payload_size = sizeof(config) - sizeof(struct apr_hdr) -
  3955. sizeof(config.param);
  3956. config.param.payload_address_lsw = 0x00;
  3957. config.param.payload_address_msw = 0x00;
  3958. config.param.mem_map_handle = 0x00;
  3959. config.pdata.module_id = AFE_MODULE_GROUP_DEVICE;
  3960. config.pdata.param_id = AFE_PARAM_ID_GROUP_DEVICE_ENABLE;
  3961. config.pdata.param_size = sizeof(config.data);
  3962. config.data.group_enable.group_id = group_id;
  3963. config.data.group_enable.enable = enable;
  3964. ret = afe_apr_send_pkt(&config, &this_afe.wait[IDX_GLOBAL_CFG]);
  3965. if (ret)
  3966. pr_err("%s: AFE_PARAM_ID_GROUP_DEVICE_ENABLE failed %d\n",
  3967. __func__, ret);
  3968. return ret;
  3969. }
  3970. EXPORT_SYMBOL(afe_port_group_enable);
  3971. int afe_stop_pseudo_port(u16 port_id)
  3972. {
  3973. int ret = 0;
  3974. struct afe_pseudoport_stop_command stop;
  3975. int index = 0;
  3976. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  3977. if (this_afe.apr == NULL) {
  3978. pr_err("%s: AFE is already closed\n", __func__);
  3979. return -EINVAL;
  3980. }
  3981. index = q6audio_get_port_index(port_id);
  3982. if (index < 0 || index >= AFE_MAX_PORTS) {
  3983. pr_err("%s: AFE port index[%d] invalid!\n",
  3984. __func__, index);
  3985. return -EINVAL;
  3986. }
  3987. ret = q6audio_validate_port(port_id);
  3988. if (ret < 0) {
  3989. pr_err("%s: Invalid port 0x%x ret %d\n",
  3990. __func__, port_id, ret);
  3991. return -EINVAL;
  3992. }
  3993. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3994. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3995. stop.hdr.pkt_size = sizeof(stop);
  3996. stop.hdr.src_port = 0;
  3997. stop.hdr.dest_port = 0;
  3998. stop.hdr.token = 0;
  3999. stop.hdr.opcode = AFE_PSEUDOPORT_CMD_STOP;
  4000. stop.port_id = port_id;
  4001. stop.reserved = 0;
  4002. stop.hdr.token = index;
  4003. ret = afe_apr_send_pkt(&stop, &this_afe.wait[index]);
  4004. if (ret)
  4005. pr_err("%s: AFE close failed %d\n", __func__, ret);
  4006. return ret;
  4007. }
  4008. /**
  4009. * afe_req_mmap_handle -
  4010. * Retrieve AFE memory map handle
  4011. *
  4012. * @ac: AFE audio client
  4013. *
  4014. * Returns memory map handle
  4015. */
  4016. uint32_t afe_req_mmap_handle(struct afe_audio_client *ac)
  4017. {
  4018. return ac->mem_map_handle;
  4019. }
  4020. EXPORT_SYMBOL(afe_req_mmap_handle);
  4021. /**
  4022. * q6afe_audio_client_alloc -
  4023. * Assign new AFE audio client
  4024. *
  4025. * @priv: privata data to hold for audio client
  4026. *
  4027. * Returns ac pointer on success or NULL on failure
  4028. */
  4029. struct afe_audio_client *q6afe_audio_client_alloc(void *priv)
  4030. {
  4031. struct afe_audio_client *ac;
  4032. int lcnt = 0;
  4033. ac = kzalloc(sizeof(struct afe_audio_client), GFP_KERNEL);
  4034. if (!ac)
  4035. return NULL;
  4036. ac->priv = priv;
  4037. init_waitqueue_head(&ac->cmd_wait);
  4038. INIT_LIST_HEAD(&ac->port[0].mem_map_handle);
  4039. INIT_LIST_HEAD(&ac->port[1].mem_map_handle);
  4040. pr_debug("%s: mem_map_handle list init'ed\n", __func__);
  4041. mutex_init(&ac->cmd_lock);
  4042. for (lcnt = 0; lcnt <= OUT; lcnt++) {
  4043. mutex_init(&ac->port[lcnt].lock);
  4044. spin_lock_init(&ac->port[lcnt].dsp_lock);
  4045. }
  4046. atomic_set(&ac->cmd_state, 0);
  4047. return ac;
  4048. }
  4049. EXPORT_SYMBOL(q6afe_audio_client_alloc);
  4050. /**
  4051. * q6afe_audio_client_buf_alloc_contiguous -
  4052. * Allocate contiguous shared buffers
  4053. *
  4054. * @dir: RX or TX direction of AFE port
  4055. * @ac: AFE audio client handle
  4056. * @bufsz: size of each shared buffer
  4057. * @bufcnt: number of buffers
  4058. *
  4059. * Returns 0 on success or error on failure
  4060. */
  4061. int q6afe_audio_client_buf_alloc_contiguous(unsigned int dir,
  4062. struct afe_audio_client *ac,
  4063. unsigned int bufsz,
  4064. unsigned int bufcnt)
  4065. {
  4066. int cnt = 0;
  4067. int rc = 0;
  4068. struct afe_audio_buffer *buf;
  4069. size_t len;
  4070. if (!(ac) || ((dir != IN) && (dir != OUT))) {
  4071. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  4072. return -EINVAL;
  4073. }
  4074. pr_debug("%s: bufsz[%d]bufcnt[%d]\n",
  4075. __func__,
  4076. bufsz, bufcnt);
  4077. if (ac->port[dir].buf) {
  4078. pr_debug("%s: buffer already allocated\n", __func__);
  4079. return 0;
  4080. }
  4081. mutex_lock(&ac->cmd_lock);
  4082. buf = kzalloc(((sizeof(struct afe_audio_buffer))*bufcnt),
  4083. GFP_KERNEL);
  4084. if (!buf) {
  4085. pr_err("%s: null buf\n", __func__);
  4086. mutex_unlock(&ac->cmd_lock);
  4087. goto fail;
  4088. }
  4089. ac->port[dir].buf = buf;
  4090. rc = msm_audio_ion_alloc(&buf[0].dma_buf,
  4091. bufsz * bufcnt,
  4092. &buf[0].phys, &len,
  4093. &buf[0].data);
  4094. if (rc) {
  4095. pr_err("%s: audio ION alloc failed, rc = %d\n",
  4096. __func__, rc);
  4097. mutex_unlock(&ac->cmd_lock);
  4098. goto fail;
  4099. }
  4100. buf[0].used = dir ^ 1;
  4101. buf[0].size = bufsz;
  4102. buf[0].actual_size = bufsz;
  4103. cnt = 1;
  4104. while (cnt < bufcnt) {
  4105. if (bufsz > 0) {
  4106. buf[cnt].data = buf[0].data + (cnt * bufsz);
  4107. buf[cnt].phys = buf[0].phys + (cnt * bufsz);
  4108. if (!buf[cnt].data) {
  4109. pr_err("%s: Buf alloc failed\n",
  4110. __func__);
  4111. mutex_unlock(&ac->cmd_lock);
  4112. goto fail;
  4113. }
  4114. buf[cnt].used = dir ^ 1;
  4115. buf[cnt].size = bufsz;
  4116. buf[cnt].actual_size = bufsz;
  4117. pr_debug("%s: data[%pK]phys[%pK][%pK]\n", __func__,
  4118. buf[cnt].data,
  4119. &buf[cnt].phys,
  4120. &buf[cnt].phys);
  4121. }
  4122. cnt++;
  4123. }
  4124. ac->port[dir].max_buf_cnt = cnt;
  4125. mutex_unlock(&ac->cmd_lock);
  4126. return 0;
  4127. fail:
  4128. pr_err("%s: jump fail\n", __func__);
  4129. q6afe_audio_client_buf_free_contiguous(dir, ac);
  4130. return -EINVAL;
  4131. }
  4132. EXPORT_SYMBOL(q6afe_audio_client_buf_alloc_contiguous);
  4133. /**
  4134. * afe_memory_map -
  4135. * command to map shared buffers to AFE
  4136. *
  4137. * @dma_addr_p: DMA physical address
  4138. * @dma_buf_sz: shared DMA buffer size
  4139. * @ac: AFE audio client handle
  4140. *
  4141. * Returns 0 on success or error on failure
  4142. */
  4143. int afe_memory_map(phys_addr_t dma_addr_p, u32 dma_buf_sz,
  4144. struct afe_audio_client *ac)
  4145. {
  4146. int ret = 0;
  4147. mutex_lock(&this_afe.afe_cmd_lock);
  4148. ac->mem_map_handle = 0;
  4149. ret = afe_cmd_memory_map(dma_addr_p, dma_buf_sz);
  4150. if (ret < 0) {
  4151. pr_err("%s: afe_cmd_memory_map failed %d\n",
  4152. __func__, ret);
  4153. mutex_unlock(&this_afe.afe_cmd_lock);
  4154. return ret;
  4155. }
  4156. ac->mem_map_handle = this_afe.mmap_handle;
  4157. mutex_unlock(&this_afe.afe_cmd_lock);
  4158. return ret;
  4159. }
  4160. EXPORT_SYMBOL(afe_memory_map);
  4161. int afe_cmd_memory_map(phys_addr_t dma_addr_p, u32 dma_buf_sz)
  4162. {
  4163. int ret = 0;
  4164. int cmd_size = 0;
  4165. void *payload = NULL;
  4166. void *mmap_region_cmd = NULL;
  4167. struct afe_service_cmd_shared_mem_map_regions *mregion = NULL;
  4168. struct afe_service_shared_map_region_payload *mregion_pl = NULL;
  4169. int index = 0;
  4170. pr_debug("%s:\n", __func__);
  4171. if (this_afe.apr == NULL) {
  4172. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4173. 0xFFFFFFFF, &this_afe);
  4174. pr_debug("%s: Register AFE\n", __func__);
  4175. if (this_afe.apr == NULL) {
  4176. pr_err("%s: Unable to register AFE\n", __func__);
  4177. ret = -ENODEV;
  4178. return ret;
  4179. }
  4180. rtac_set_afe_handle(this_afe.apr);
  4181. }
  4182. if (dma_buf_sz % SZ_4K != 0) {
  4183. /*
  4184. * The memory allocated by msm_audio_ion_alloc is always 4kB
  4185. * aligned, ADSP expects the size to be 4kB aligned as well
  4186. * so re-adjusts the buffer size before passing to ADSP.
  4187. */
  4188. dma_buf_sz = PAGE_ALIGN(dma_buf_sz);
  4189. }
  4190. cmd_size = sizeof(struct afe_service_cmd_shared_mem_map_regions)
  4191. + sizeof(struct afe_service_shared_map_region_payload);
  4192. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  4193. if (!mmap_region_cmd)
  4194. return -ENOMEM;
  4195. mregion = (struct afe_service_cmd_shared_mem_map_regions *)
  4196. mmap_region_cmd;
  4197. mregion->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4198. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4199. mregion->hdr.pkt_size = cmd_size;
  4200. mregion->hdr.src_port = 0;
  4201. mregion->hdr.dest_port = 0;
  4202. mregion->hdr.token = 0;
  4203. mregion->hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS;
  4204. mregion->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  4205. mregion->num_regions = 1;
  4206. mregion->property_flag = 0x00;
  4207. /* Todo */
  4208. index = mregion->hdr.token = IDX_RSVD_2;
  4209. payload = ((u8 *) mmap_region_cmd +
  4210. sizeof(struct afe_service_cmd_shared_mem_map_regions));
  4211. mregion_pl = (struct afe_service_shared_map_region_payload *)payload;
  4212. mregion_pl->shm_addr_lsw = lower_32_bits(dma_addr_p);
  4213. mregion_pl->shm_addr_msw = msm_audio_populate_upper_32_bits(dma_addr_p);
  4214. mregion_pl->mem_size_bytes = dma_buf_sz;
  4215. pr_debug("%s: dma_addr_p 0x%pK , size %d\n", __func__,
  4216. &dma_addr_p, dma_buf_sz);
  4217. atomic_set(&this_afe.state, 1);
  4218. atomic_set(&this_afe.status, 0);
  4219. this_afe.mmap_handle = 0;
  4220. ret = apr_send_pkt(this_afe.apr, (uint32_t *) mmap_region_cmd);
  4221. if (ret < 0) {
  4222. pr_err("%s: AFE memory map cmd failed %d\n",
  4223. __func__, ret);
  4224. ret = -EINVAL;
  4225. goto fail_cmd;
  4226. }
  4227. ret = wait_event_timeout(this_afe.wait[index],
  4228. (atomic_read(&this_afe.state) == 0),
  4229. msecs_to_jiffies(TIMEOUT_MS));
  4230. if (!ret) {
  4231. pr_err("%s: wait_event timeout\n", __func__);
  4232. ret = -EINVAL;
  4233. goto fail_cmd;
  4234. }
  4235. if (atomic_read(&this_afe.status) > 0) {
  4236. pr_err("%s: config cmd failed [%s]\n",
  4237. __func__, adsp_err_get_err_str(
  4238. atomic_read(&this_afe.status)));
  4239. ret = adsp_err_get_lnx_err_code(
  4240. atomic_read(&this_afe.status));
  4241. goto fail_cmd;
  4242. }
  4243. kfree(mmap_region_cmd);
  4244. return 0;
  4245. fail_cmd:
  4246. kfree(mmap_region_cmd);
  4247. pr_err("%s: fail_cmd\n", __func__);
  4248. return ret;
  4249. }
  4250. int afe_cmd_memory_map_nowait(int port_id, phys_addr_t dma_addr_p,
  4251. u32 dma_buf_sz)
  4252. {
  4253. int ret = 0;
  4254. int cmd_size = 0;
  4255. void *payload = NULL;
  4256. void *mmap_region_cmd = NULL;
  4257. struct afe_service_cmd_shared_mem_map_regions *mregion = NULL;
  4258. struct afe_service_shared_map_region_payload *mregion_pl = NULL;
  4259. int index = 0;
  4260. pr_debug("%s:\n", __func__);
  4261. if (this_afe.apr == NULL) {
  4262. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4263. 0xFFFFFFFF, &this_afe);
  4264. pr_debug("%s: Register AFE\n", __func__);
  4265. if (this_afe.apr == NULL) {
  4266. pr_err("%s: Unable to register AFE\n", __func__);
  4267. ret = -ENODEV;
  4268. return ret;
  4269. }
  4270. rtac_set_afe_handle(this_afe.apr);
  4271. }
  4272. index = q6audio_get_port_index(port_id);
  4273. if (index < 0 || index >= AFE_MAX_PORTS) {
  4274. pr_err("%s: AFE port index[%d] invalid!\n",
  4275. __func__, index);
  4276. return -EINVAL;
  4277. }
  4278. ret = q6audio_validate_port(port_id);
  4279. if (ret < 0) {
  4280. pr_err("%s: Invalid port 0x%x ret %d",
  4281. __func__, port_id, ret);
  4282. return -EINVAL;
  4283. }
  4284. cmd_size = sizeof(struct afe_service_cmd_shared_mem_map_regions)
  4285. + sizeof(struct afe_service_shared_map_region_payload);
  4286. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  4287. if (!mmap_region_cmd)
  4288. return -ENOMEM;
  4289. mregion = (struct afe_service_cmd_shared_mem_map_regions *)
  4290. mmap_region_cmd;
  4291. mregion->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4292. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4293. mregion->hdr.pkt_size = sizeof(mregion);
  4294. mregion->hdr.src_port = 0;
  4295. mregion->hdr.dest_port = 0;
  4296. mregion->hdr.token = 0;
  4297. mregion->hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS;
  4298. mregion->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  4299. mregion->num_regions = 1;
  4300. mregion->property_flag = 0x00;
  4301. payload = ((u8 *) mmap_region_cmd +
  4302. sizeof(struct afe_service_cmd_shared_mem_map_regions));
  4303. mregion_pl = (struct afe_service_shared_map_region_payload *)payload;
  4304. mregion_pl->shm_addr_lsw = lower_32_bits(dma_addr_p);
  4305. mregion_pl->shm_addr_msw = msm_audio_populate_upper_32_bits(dma_addr_p);
  4306. mregion_pl->mem_size_bytes = dma_buf_sz;
  4307. ret = afe_apr_send_pkt(mmap_region_cmd, NULL);
  4308. if (ret)
  4309. pr_err("%s: AFE memory map cmd failed %d\n",
  4310. __func__, ret);
  4311. kfree(mmap_region_cmd);
  4312. return ret;
  4313. }
  4314. /**
  4315. * q6afe_audio_client_buf_free_contiguous -
  4316. * frees the shared contiguous memory
  4317. *
  4318. * @dir: RX or TX direction of port
  4319. * @ac: AFE audio client handle
  4320. *
  4321. */
  4322. int q6afe_audio_client_buf_free_contiguous(unsigned int dir,
  4323. struct afe_audio_client *ac)
  4324. {
  4325. struct afe_audio_port_data *port;
  4326. int cnt = 0;
  4327. mutex_lock(&ac->cmd_lock);
  4328. port = &ac->port[dir];
  4329. if (!port->buf) {
  4330. pr_err("%s: buf is null\n", __func__);
  4331. mutex_unlock(&ac->cmd_lock);
  4332. return 0;
  4333. }
  4334. cnt = port->max_buf_cnt - 1;
  4335. if (port->buf[0].data) {
  4336. pr_debug("%s: data[%pK], phys[%pK], dma_buf[%pK]\n",
  4337. __func__,
  4338. port->buf[0].data,
  4339. &port->buf[0].phys,
  4340. port->buf[0].dma_buf);
  4341. msm_audio_ion_free(port->buf[0].dma_buf);
  4342. port->buf[0].dma_buf = NULL;
  4343. }
  4344. while (cnt >= 0) {
  4345. port->buf[cnt].data = NULL;
  4346. port->buf[cnt].phys = 0;
  4347. cnt--;
  4348. }
  4349. port->max_buf_cnt = 0;
  4350. kfree(port->buf);
  4351. port->buf = NULL;
  4352. mutex_unlock(&ac->cmd_lock);
  4353. return 0;
  4354. }
  4355. EXPORT_SYMBOL(q6afe_audio_client_buf_free_contiguous);
  4356. /**
  4357. * q6afe_audio_client_free -
  4358. * frees the audio client from AFE
  4359. *
  4360. * @ac: AFE audio client handle
  4361. *
  4362. */
  4363. void q6afe_audio_client_free(struct afe_audio_client *ac)
  4364. {
  4365. int loopcnt;
  4366. struct afe_audio_port_data *port;
  4367. if (!ac) {
  4368. pr_err("%s: audio client is NULL\n", __func__);
  4369. return;
  4370. }
  4371. for (loopcnt = 0; loopcnt <= OUT; loopcnt++) {
  4372. port = &ac->port[loopcnt];
  4373. if (!port->buf)
  4374. continue;
  4375. pr_debug("%s: loopcnt = %d\n", __func__, loopcnt);
  4376. q6afe_audio_client_buf_free_contiguous(loopcnt, ac);
  4377. }
  4378. kfree(ac);
  4379. }
  4380. EXPORT_SYMBOL(q6afe_audio_client_free);
  4381. /**
  4382. * afe_cmd_memory_unmap -
  4383. * command to unmap memory for AFE shared buffer
  4384. *
  4385. * @mem_map_handle: memory map handle to be unmapped
  4386. *
  4387. * Returns 0 on success or error on failure
  4388. */
  4389. int afe_cmd_memory_unmap(u32 mem_map_handle)
  4390. {
  4391. int ret = 0;
  4392. struct afe_service_cmd_shared_mem_unmap_regions mregion;
  4393. int index = 0;
  4394. pr_debug("%s: handle 0x%x\n", __func__, mem_map_handle);
  4395. if (this_afe.apr == NULL) {
  4396. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4397. 0xFFFFFFFF, &this_afe);
  4398. pr_debug("%s: Register AFE\n", __func__);
  4399. if (this_afe.apr == NULL) {
  4400. pr_err("%s: Unable to register AFE\n", __func__);
  4401. ret = -ENODEV;
  4402. return ret;
  4403. }
  4404. rtac_set_afe_handle(this_afe.apr);
  4405. }
  4406. mregion.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4407. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4408. mregion.hdr.pkt_size = sizeof(mregion);
  4409. mregion.hdr.src_port = 0;
  4410. mregion.hdr.dest_port = 0;
  4411. mregion.hdr.token = 0;
  4412. mregion.hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS;
  4413. mregion.mem_map_handle = mem_map_handle;
  4414. /* Todo */
  4415. index = mregion.hdr.token = IDX_RSVD_2;
  4416. atomic_set(&this_afe.status, 0);
  4417. ret = afe_apr_send_pkt(&mregion, &this_afe.wait[index]);
  4418. if (ret)
  4419. pr_err("%s: AFE memory unmap cmd failed %d\n",
  4420. __func__, ret);
  4421. return ret;
  4422. }
  4423. EXPORT_SYMBOL(afe_cmd_memory_unmap);
  4424. int afe_cmd_memory_unmap_nowait(u32 mem_map_handle)
  4425. {
  4426. int ret = 0;
  4427. struct afe_service_cmd_shared_mem_unmap_regions mregion;
  4428. pr_debug("%s: handle 0x%x\n", __func__, mem_map_handle);
  4429. if (this_afe.apr == NULL) {
  4430. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4431. 0xFFFFFFFF, &this_afe);
  4432. pr_debug("%s: Register AFE\n", __func__);
  4433. if (this_afe.apr == NULL) {
  4434. pr_err("%s: Unable to register AFE\n", __func__);
  4435. ret = -ENODEV;
  4436. return ret;
  4437. }
  4438. rtac_set_afe_handle(this_afe.apr);
  4439. }
  4440. mregion.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4441. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4442. mregion.hdr.pkt_size = sizeof(mregion);
  4443. mregion.hdr.src_port = 0;
  4444. mregion.hdr.dest_port = 0;
  4445. mregion.hdr.token = 0;
  4446. mregion.hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS;
  4447. mregion.mem_map_handle = mem_map_handle;
  4448. ret = afe_apr_send_pkt(&mregion, NULL);
  4449. if (ret)
  4450. pr_err("%s: AFE memory unmap cmd failed %d\n",
  4451. __func__, ret);
  4452. return ret;
  4453. }
  4454. /**
  4455. * afe_register_get_events -
  4456. * register for events from proxy port
  4457. *
  4458. * @port_id: Port ID to register events
  4459. * @cb: callback function to invoke for events from proxy port
  4460. * @private_data: private data to sent back in callback fn
  4461. *
  4462. * Returns 0 on success or error on failure
  4463. */
  4464. int afe_register_get_events(u16 port_id,
  4465. void (*cb)(uint32_t opcode,
  4466. uint32_t token, uint32_t *payload, void *priv),
  4467. void *private_data)
  4468. {
  4469. int ret = 0;
  4470. struct afe_service_cmd_register_rt_port_driver rtproxy;
  4471. pr_debug("%s: port_id: 0x%x\n", __func__, port_id);
  4472. if (this_afe.apr == NULL) {
  4473. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4474. 0xFFFFFFFF, &this_afe);
  4475. pr_debug("%s: Register AFE\n", __func__);
  4476. if (this_afe.apr == NULL) {
  4477. pr_err("%s: Unable to register AFE\n", __func__);
  4478. ret = -ENODEV;
  4479. return ret;
  4480. }
  4481. rtac_set_afe_handle(this_afe.apr);
  4482. }
  4483. if ((port_id == RT_PROXY_DAI_002_RX) ||
  4484. (port_id == RT_PROXY_DAI_001_TX)) {
  4485. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4486. } else {
  4487. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  4488. return -EINVAL;
  4489. }
  4490. if (port_id == RT_PROXY_PORT_001_TX) {
  4491. this_afe.tx_cb = cb;
  4492. this_afe.tx_private_data = private_data;
  4493. } else if (port_id == RT_PROXY_PORT_001_RX) {
  4494. this_afe.rx_cb = cb;
  4495. this_afe.rx_private_data = private_data;
  4496. }
  4497. rtproxy.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4498. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4499. rtproxy.hdr.pkt_size = sizeof(rtproxy);
  4500. rtproxy.hdr.src_port = 1;
  4501. rtproxy.hdr.dest_port = 1;
  4502. rtproxy.hdr.opcode = AFE_SERVICE_CMD_REGISTER_RT_PORT_DRIVER;
  4503. rtproxy.port_id = port_id;
  4504. rtproxy.reserved = 0;
  4505. ret = afe_apr_send_pkt(&rtproxy, NULL);
  4506. if (ret)
  4507. pr_err("%s: AFE reg. rtproxy_event failed %d\n",
  4508. __func__, ret);
  4509. return ret;
  4510. }
  4511. EXPORT_SYMBOL(afe_register_get_events);
  4512. /**
  4513. * afe_unregister_get_events -
  4514. * unregister for events from proxy port
  4515. *
  4516. * @port_id: Port ID to unregister events
  4517. *
  4518. * Returns 0 on success or error on failure
  4519. */
  4520. int afe_unregister_get_events(u16 port_id)
  4521. {
  4522. int ret = 0;
  4523. struct afe_service_cmd_unregister_rt_port_driver rtproxy;
  4524. int index = 0;
  4525. pr_debug("%s:\n", __func__);
  4526. if (this_afe.apr == NULL) {
  4527. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4528. 0xFFFFFFFF, &this_afe);
  4529. pr_debug("%s: Register AFE\n", __func__);
  4530. if (this_afe.apr == NULL) {
  4531. pr_err("%s: Unable to register AFE\n", __func__);
  4532. ret = -ENODEV;
  4533. return ret;
  4534. }
  4535. rtac_set_afe_handle(this_afe.apr);
  4536. }
  4537. if ((port_id == RT_PROXY_DAI_002_RX) ||
  4538. (port_id == RT_PROXY_DAI_001_TX)) {
  4539. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4540. } else {
  4541. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  4542. return -EINVAL;
  4543. }
  4544. index = q6audio_get_port_index(port_id);
  4545. if (index < 0 || index >= AFE_MAX_PORTS) {
  4546. pr_err("%s: AFE port index[%d] invalid!\n",
  4547. __func__, index);
  4548. return -EINVAL;
  4549. }
  4550. ret = q6audio_validate_port(port_id);
  4551. if (ret < 0) {
  4552. pr_err("%s: Invalid port 0x%x ret %d", __func__, port_id, ret);
  4553. return -EINVAL;
  4554. }
  4555. rtproxy.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4556. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4557. rtproxy.hdr.pkt_size = sizeof(rtproxy);
  4558. rtproxy.hdr.src_port = 0;
  4559. rtproxy.hdr.dest_port = 0;
  4560. rtproxy.hdr.token = 0;
  4561. rtproxy.hdr.opcode = AFE_SERVICE_CMD_UNREGISTER_RT_PORT_DRIVER;
  4562. rtproxy.port_id = port_id;
  4563. rtproxy.reserved = 0;
  4564. rtproxy.hdr.token = index;
  4565. if (port_id == RT_PROXY_PORT_001_TX) {
  4566. this_afe.tx_cb = NULL;
  4567. this_afe.tx_private_data = NULL;
  4568. } else if (port_id == RT_PROXY_PORT_001_RX) {
  4569. this_afe.rx_cb = NULL;
  4570. this_afe.rx_private_data = NULL;
  4571. }
  4572. ret = afe_apr_send_pkt(&rtproxy, &this_afe.wait[index]);
  4573. if (ret)
  4574. pr_err("%s: AFE enable Unreg. rtproxy_event failed %d\n",
  4575. __func__, ret);
  4576. return ret;
  4577. }
  4578. EXPORT_SYMBOL(afe_unregister_get_events);
  4579. /**
  4580. * afe_rt_proxy_port_write -
  4581. * command for AFE RT proxy port write
  4582. *
  4583. * @buf_addr_p: Physical buffer address with
  4584. * playback data to proxy port
  4585. * @mem_map_handle: memory map handle of write buffer
  4586. * @bytes: number of bytes to write
  4587. *
  4588. * Returns 0 on success or error on failure
  4589. */
  4590. int afe_rt_proxy_port_write(phys_addr_t buf_addr_p,
  4591. u32 mem_map_handle, int bytes)
  4592. {
  4593. int ret = 0;
  4594. struct afe_port_data_cmd_rt_proxy_port_write_v2 afecmd_wr;
  4595. if (this_afe.apr == NULL) {
  4596. pr_err("%s: register to AFE is not done\n", __func__);
  4597. ret = -ENODEV;
  4598. return ret;
  4599. }
  4600. pr_debug("%s: buf_addr_p = 0x%pK bytes = %d\n", __func__,
  4601. &buf_addr_p, bytes);
  4602. afecmd_wr.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4603. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4604. afecmd_wr.hdr.pkt_size = sizeof(afecmd_wr);
  4605. afecmd_wr.hdr.src_port = 0;
  4606. afecmd_wr.hdr.dest_port = 0;
  4607. afecmd_wr.hdr.token = 0;
  4608. afecmd_wr.hdr.opcode = AFE_PORT_DATA_CMD_RT_PROXY_PORT_WRITE_V2;
  4609. afecmd_wr.port_id = RT_PROXY_PORT_001_TX;
  4610. afecmd_wr.buffer_address_lsw = lower_32_bits(buf_addr_p);
  4611. afecmd_wr.buffer_address_msw =
  4612. msm_audio_populate_upper_32_bits(buf_addr_p);
  4613. afecmd_wr.mem_map_handle = mem_map_handle;
  4614. afecmd_wr.available_bytes = bytes;
  4615. afecmd_wr.reserved = 0;
  4616. ret = afe_apr_send_pkt(&afecmd_wr, NULL);
  4617. if (ret)
  4618. pr_err("%s: AFE rtproxy write to port 0x%x failed %d\n",
  4619. __func__, afecmd_wr.port_id, ret);
  4620. return ret;
  4621. }
  4622. EXPORT_SYMBOL(afe_rt_proxy_port_write);
  4623. /**
  4624. * afe_rt_proxy_port_read -
  4625. * command for AFE RT proxy port read
  4626. *
  4627. * @buf_addr_p: Physical buffer address to fill read data
  4628. * @mem_map_handle: memory map handle for buffer read
  4629. * @bytes: number of bytes to read
  4630. *
  4631. * Returns 0 on success or error on failure
  4632. */
  4633. int afe_rt_proxy_port_read(phys_addr_t buf_addr_p,
  4634. u32 mem_map_handle, int bytes)
  4635. {
  4636. int ret = 0;
  4637. struct afe_port_data_cmd_rt_proxy_port_read_v2 afecmd_rd;
  4638. if (this_afe.apr == NULL) {
  4639. pr_err("%s: register to AFE is not done\n", __func__);
  4640. ret = -ENODEV;
  4641. return ret;
  4642. }
  4643. pr_debug("%s: buf_addr_p = 0x%pK bytes = %d\n", __func__,
  4644. &buf_addr_p, bytes);
  4645. afecmd_rd.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4646. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4647. afecmd_rd.hdr.pkt_size = sizeof(afecmd_rd);
  4648. afecmd_rd.hdr.src_port = 0;
  4649. afecmd_rd.hdr.dest_port = 0;
  4650. afecmd_rd.hdr.token = 0;
  4651. afecmd_rd.hdr.opcode = AFE_PORT_DATA_CMD_RT_PROXY_PORT_READ_V2;
  4652. afecmd_rd.port_id = RT_PROXY_PORT_001_RX;
  4653. afecmd_rd.buffer_address_lsw = lower_32_bits(buf_addr_p);
  4654. afecmd_rd.buffer_address_msw =
  4655. msm_audio_populate_upper_32_bits(buf_addr_p);
  4656. afecmd_rd.available_bytes = bytes;
  4657. afecmd_rd.mem_map_handle = mem_map_handle;
  4658. ret = afe_apr_send_pkt(&afecmd_rd, NULL);
  4659. if (ret)
  4660. pr_err("%s: AFE rtproxy read cmd to port 0x%x failed %d\n",
  4661. __func__, afecmd_rd.port_id, ret);
  4662. return ret;
  4663. }
  4664. EXPORT_SYMBOL(afe_rt_proxy_port_read);
  4665. #ifdef CONFIG_DEBUG_FS
  4666. static struct dentry *debugfs_afelb;
  4667. static struct dentry *debugfs_afelb_gain;
  4668. static int afe_debug_open(struct inode *inode, struct file *file)
  4669. {
  4670. file->private_data = inode->i_private;
  4671. pr_info("%s: debug intf %s\n", __func__, (char *) file->private_data);
  4672. return 0;
  4673. }
  4674. static int afe_get_parameters(char *buf, long int *param1, int num_of_par)
  4675. {
  4676. char *token;
  4677. int base, cnt;
  4678. token = strsep(&buf, " ");
  4679. for (cnt = 0; cnt < num_of_par; cnt++) {
  4680. if (token != NULL) {
  4681. if ((token[1] == 'x') || (token[1] == 'X'))
  4682. base = 16;
  4683. else
  4684. base = 10;
  4685. if (kstrtoul(token, base, &param1[cnt]) != 0) {
  4686. pr_err("%s: kstrtoul failed\n",
  4687. __func__);
  4688. return -EINVAL;
  4689. }
  4690. token = strsep(&buf, " ");
  4691. } else {
  4692. pr_err("%s: token NULL\n", __func__);
  4693. return -EINVAL;
  4694. }
  4695. }
  4696. return 0;
  4697. }
  4698. #define AFE_LOOPBACK_ON (1)
  4699. #define AFE_LOOPBACK_OFF (0)
  4700. static ssize_t afe_debug_write(struct file *filp,
  4701. const char __user *ubuf, size_t cnt, loff_t *ppos)
  4702. {
  4703. char *lb_str = filp->private_data;
  4704. char lbuf[32];
  4705. int rc;
  4706. unsigned long param[5];
  4707. if (cnt > sizeof(lbuf) - 1) {
  4708. pr_err("%s: cnt %zd size %zd\n", __func__, cnt, sizeof(lbuf)-1);
  4709. return -EINVAL;
  4710. }
  4711. rc = copy_from_user(lbuf, ubuf, cnt);
  4712. if (rc) {
  4713. pr_err("%s: copy from user failed %d\n", __func__, rc);
  4714. return -EFAULT;
  4715. }
  4716. lbuf[cnt] = '\0';
  4717. if (!strcmp(lb_str, "afe_loopback")) {
  4718. rc = afe_get_parameters(lbuf, param, 3);
  4719. if (!rc) {
  4720. pr_info("%s: %lu %lu %lu\n", lb_str, param[0], param[1],
  4721. param[2]);
  4722. if ((param[0] != AFE_LOOPBACK_ON) && (param[0] !=
  4723. AFE_LOOPBACK_OFF)) {
  4724. pr_err("%s: Error, parameter 0 incorrect\n",
  4725. __func__);
  4726. rc = -EINVAL;
  4727. goto afe_error;
  4728. }
  4729. if ((q6audio_validate_port(param[1]) < 0) ||
  4730. (q6audio_validate_port(param[2])) < 0) {
  4731. pr_err("%s: Error, invalid afe port\n",
  4732. __func__);
  4733. }
  4734. if (this_afe.apr == NULL) {
  4735. pr_err("%s: Error, AFE not opened\n", __func__);
  4736. rc = -EINVAL;
  4737. } else {
  4738. rc = afe_loopback(param[0], param[1], param[2]);
  4739. }
  4740. } else {
  4741. pr_err("%s: Error, invalid parameters\n", __func__);
  4742. rc = -EINVAL;
  4743. }
  4744. } else if (!strcmp(lb_str, "afe_loopback_gain")) {
  4745. rc = afe_get_parameters(lbuf, param, 2);
  4746. if (!rc) {
  4747. pr_info("%s: %s %lu %lu\n",
  4748. __func__, lb_str, param[0], param[1]);
  4749. rc = q6audio_validate_port(param[0]);
  4750. if (rc < 0) {
  4751. pr_err("%s: Error, invalid afe port %d %lu\n",
  4752. __func__, rc, param[0]);
  4753. rc = -EINVAL;
  4754. goto afe_error;
  4755. }
  4756. if (param[1] > 100) {
  4757. pr_err("%s: Error, volume should be 0 to 100 percentage param = %lu\n",
  4758. __func__, param[1]);
  4759. rc = -EINVAL;
  4760. goto afe_error;
  4761. }
  4762. param[1] = (Q6AFE_MAX_VOLUME * param[1]) / 100;
  4763. if (this_afe.apr == NULL) {
  4764. pr_err("%s: Error, AFE not opened\n", __func__);
  4765. rc = -EINVAL;
  4766. } else {
  4767. rc = afe_loopback_gain(param[0], param[1]);
  4768. }
  4769. } else {
  4770. pr_err("%s: Error, invalid parameters\n", __func__);
  4771. rc = -EINVAL;
  4772. }
  4773. }
  4774. afe_error:
  4775. if (rc == 0)
  4776. rc = cnt;
  4777. else
  4778. pr_err("%s: rc = %d\n", __func__, rc);
  4779. return rc;
  4780. }
  4781. static const struct file_operations afe_debug_fops = {
  4782. .open = afe_debug_open,
  4783. .write = afe_debug_write
  4784. };
  4785. static void config_debug_fs_init(void)
  4786. {
  4787. debugfs_afelb = debugfs_create_file("afe_loopback",
  4788. 0664, NULL, (void *) "afe_loopback",
  4789. &afe_debug_fops);
  4790. debugfs_afelb_gain = debugfs_create_file("afe_loopback_gain",
  4791. 0664, NULL, (void *) "afe_loopback_gain",
  4792. &afe_debug_fops);
  4793. }
  4794. static void config_debug_fs_exit(void)
  4795. {
  4796. debugfs_remove(debugfs_afelb);
  4797. debugfs_remove(debugfs_afelb_gain);
  4798. }
  4799. #else
  4800. static void config_debug_fs_init(void)
  4801. {
  4802. }
  4803. static void config_debug_fs_exit(void)
  4804. {
  4805. }
  4806. #endif
  4807. /**
  4808. * afe_set_dtmf_gen_rx_portid -
  4809. * Set port_id for DTMF tone generation
  4810. *
  4811. * @port_id: AFE port id
  4812. * @set: set or reset port id value for dtmf gen
  4813. *
  4814. */
  4815. void afe_set_dtmf_gen_rx_portid(u16 port_id, int set)
  4816. {
  4817. if (set)
  4818. this_afe.dtmf_gen_rx_portid = port_id;
  4819. else if (this_afe.dtmf_gen_rx_portid == port_id)
  4820. this_afe.dtmf_gen_rx_portid = -1;
  4821. }
  4822. EXPORT_SYMBOL(afe_set_dtmf_gen_rx_portid);
  4823. /**
  4824. * afe_dtmf_generate_rx - command to generate AFE DTMF RX
  4825. *
  4826. * @duration_in_ms: Duration in ms for dtmf tone
  4827. * @high_freq: Higher frequency for dtmf
  4828. * @low_freq: lower frequency for dtmf
  4829. * @gain: Gain value for DTMF tone
  4830. *
  4831. * Returns 0 on success, appropriate error code otherwise
  4832. */
  4833. int afe_dtmf_generate_rx(int64_t duration_in_ms,
  4834. uint16_t high_freq,
  4835. uint16_t low_freq, uint16_t gain)
  4836. {
  4837. int ret = 0;
  4838. int index = 0;
  4839. struct afe_dtmf_generation_command cmd_dtmf;
  4840. pr_debug("%s: DTMF AFE Gen\n", __func__);
  4841. if (afe_validate_port(this_afe.dtmf_gen_rx_portid) < 0) {
  4842. pr_err("%s: Failed : Invalid Port id = 0x%x\n",
  4843. __func__, this_afe.dtmf_gen_rx_portid);
  4844. ret = -EINVAL;
  4845. goto fail_cmd;
  4846. }
  4847. if (this_afe.apr == NULL) {
  4848. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4849. 0xFFFFFFFF, &this_afe);
  4850. pr_debug("%s: Register AFE\n", __func__);
  4851. if (this_afe.apr == NULL) {
  4852. pr_err("%s: Unable to register AFE\n", __func__);
  4853. ret = -ENODEV;
  4854. return ret;
  4855. }
  4856. rtac_set_afe_handle(this_afe.apr);
  4857. }
  4858. pr_debug("%s: dur=%lld: hfreq=%d lfreq=%d gain=%d portid=0x%x\n",
  4859. __func__,
  4860. duration_in_ms, high_freq, low_freq, gain,
  4861. this_afe.dtmf_gen_rx_portid);
  4862. cmd_dtmf.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4863. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4864. cmd_dtmf.hdr.pkt_size = sizeof(cmd_dtmf);
  4865. cmd_dtmf.hdr.src_port = 0;
  4866. cmd_dtmf.hdr.dest_port = 0;
  4867. cmd_dtmf.hdr.token = 0;
  4868. cmd_dtmf.hdr.opcode = AFE_PORTS_CMD_DTMF_CTL;
  4869. cmd_dtmf.duration_in_ms = duration_in_ms;
  4870. cmd_dtmf.high_freq = high_freq;
  4871. cmd_dtmf.low_freq = low_freq;
  4872. cmd_dtmf.gain = gain;
  4873. cmd_dtmf.num_ports = 1;
  4874. cmd_dtmf.port_ids = q6audio_get_port_id(this_afe.dtmf_gen_rx_portid);
  4875. atomic_set(&this_afe.state, 1);
  4876. atomic_set(&this_afe.status, 0);
  4877. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &cmd_dtmf);
  4878. if (ret < 0) {
  4879. pr_err("%s: AFE DTMF failed for num_ports:%d ids:0x%x\n",
  4880. __func__, cmd_dtmf.num_ports, cmd_dtmf.port_ids);
  4881. ret = -EINVAL;
  4882. goto fail_cmd;
  4883. }
  4884. index = q6audio_get_port_index(this_afe.dtmf_gen_rx_portid);
  4885. if (index < 0 || index >= AFE_MAX_PORTS) {
  4886. pr_err("%s: AFE port index[%d] invalid!\n",
  4887. __func__, index);
  4888. ret = -EINVAL;
  4889. goto fail_cmd;
  4890. }
  4891. ret = wait_event_timeout(this_afe.wait[index],
  4892. (atomic_read(&this_afe.state) == 0),
  4893. msecs_to_jiffies(TIMEOUT_MS));
  4894. if (!ret) {
  4895. pr_err("%s: wait_event timeout\n", __func__);
  4896. ret = -EINVAL;
  4897. goto fail_cmd;
  4898. }
  4899. if (atomic_read(&this_afe.status) > 0) {
  4900. pr_err("%s: config cmd failed [%s]\n",
  4901. __func__, adsp_err_get_err_str(
  4902. atomic_read(&this_afe.status)));
  4903. ret = adsp_err_get_lnx_err_code(
  4904. atomic_read(&this_afe.status));
  4905. goto fail_cmd;
  4906. }
  4907. return 0;
  4908. fail_cmd:
  4909. pr_err("%s: failed %d\n", __func__, ret);
  4910. return ret;
  4911. }
  4912. EXPORT_SYMBOL(afe_dtmf_generate_rx);
  4913. static int afe_sidetone_iir(u16 tx_port_id)
  4914. {
  4915. struct afe_loopback_iir_cfg_v2 iir_sidetone;
  4916. int ret;
  4917. int index = 0;
  4918. uint16_t size = 0;
  4919. int cal_index = AFE_SIDETONE_IIR_CAL;
  4920. int iir_pregain = 0;
  4921. int iir_num_biquad_stages = 0;
  4922. int iir_enable;
  4923. struct cal_block_data *cal_block;
  4924. int mid;
  4925. memset(&iir_sidetone, 0, sizeof(iir_sidetone));
  4926. index = q6audio_get_port_index(tx_port_id);
  4927. iir_sidetone.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4928. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4929. iir_sidetone.hdr.pkt_size = sizeof(iir_sidetone);
  4930. iir_sidetone.hdr.src_port = 0;
  4931. iir_sidetone.hdr.dest_port = 0;
  4932. iir_sidetone.hdr.token = index;
  4933. iir_sidetone.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  4934. iir_sidetone.param.port_id = tx_port_id;
  4935. iir_sidetone.param.payload_address_lsw = 0x00;
  4936. iir_sidetone.param.payload_address_msw = 0x00;
  4937. iir_sidetone.param.mem_map_handle = 0x00;
  4938. if (this_afe.cal_data[cal_index] == NULL) {
  4939. pr_err("%s: cal data is NULL\n", __func__);
  4940. ret = -EINVAL;
  4941. goto done;
  4942. }
  4943. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  4944. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  4945. if (cal_block == NULL) {
  4946. pr_err("%s: cal_block not found\n ", __func__);
  4947. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  4948. ret = -EINVAL;
  4949. goto done;
  4950. }
  4951. iir_pregain = ((struct audio_cal_info_sidetone_iir *)
  4952. cal_block->cal_info)->pregain;
  4953. iir_enable = ((struct audio_cal_info_sidetone_iir *)
  4954. cal_block->cal_info)->iir_enable;
  4955. iir_num_biquad_stages = ((struct audio_cal_info_sidetone_iir *)
  4956. cal_block->cal_info)->num_biquad_stages;
  4957. mid = ((struct audio_cal_info_sidetone_iir *)
  4958. cal_block->cal_info)->mid;
  4959. /*
  4960. * calculate the actual size of payload based on no of stages
  4961. * enabled in calibration
  4962. */
  4963. size = (MAX_SIDETONE_IIR_DATA_SIZE / MAX_NO_IIR_FILTER_STAGE) *
  4964. iir_num_biquad_stages;
  4965. /*
  4966. * For an odd number of stages, 2 bytes of padding are
  4967. * required at the end of the payload.
  4968. */
  4969. if (iir_num_biquad_stages % 2) {
  4970. pr_debug("%s: adding 2 to size:%d\n", __func__, size);
  4971. size = size + 2;
  4972. }
  4973. memcpy(&iir_sidetone.st_iir_filter_config_data.iir_config,
  4974. &((struct audio_cal_info_sidetone_iir *)
  4975. cal_block->cal_info)->iir_config,
  4976. sizeof(iir_sidetone.st_iir_filter_config_data.iir_config));
  4977. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  4978. /*
  4979. * Calculate the payload size for setparams command
  4980. */
  4981. iir_sidetone.param.payload_size = (sizeof(iir_sidetone) -
  4982. sizeof(struct apr_hdr) -
  4983. sizeof(struct afe_port_cmd_set_param_v2) -
  4984. (MAX_SIDETONE_IIR_DATA_SIZE - size));
  4985. pr_debug("%s: payload size :%d\n", __func__,
  4986. iir_sidetone.param.payload_size);
  4987. /*
  4988. * Set IIR enable params
  4989. */
  4990. iir_sidetone.st_iir_enable_pdata.module_id = mid;
  4991. iir_sidetone.st_iir_enable_pdata.param_id =
  4992. AFE_PARAM_ID_ENABLE;
  4993. iir_sidetone.st_iir_enable_pdata.param_size =
  4994. sizeof(iir_sidetone.st_iir_mode_enable_data);
  4995. iir_sidetone.st_iir_mode_enable_data.enable = iir_enable;
  4996. /*
  4997. * Set IIR filter config params
  4998. */
  4999. iir_sidetone.st_iir_filter_config_pdata.module_id = mid;
  5000. iir_sidetone.st_iir_filter_config_pdata.param_id =
  5001. AFE_PARAM_ID_SIDETONE_IIR_FILTER_CONFIG;
  5002. iir_sidetone.st_iir_filter_config_pdata.param_size =
  5003. sizeof(iir_sidetone.st_iir_filter_config_data.num_biquad_stages)
  5004. +
  5005. sizeof(iir_sidetone.st_iir_filter_config_data.pregain) + size;
  5006. iir_sidetone.st_iir_filter_config_pdata.reserved = 0;
  5007. iir_sidetone.st_iir_filter_config_data.num_biquad_stages =
  5008. iir_num_biquad_stages;
  5009. iir_sidetone.st_iir_filter_config_data.pregain = iir_pregain;
  5010. pr_debug("%s: tx(0x%x)mid(0x%x)iir_en(%d)stg(%d)gain(0x%x)size(%d)\n",
  5011. __func__, tx_port_id, mid,
  5012. iir_sidetone.st_iir_mode_enable_data.enable,
  5013. iir_sidetone.st_iir_filter_config_data.num_biquad_stages,
  5014. iir_sidetone.st_iir_filter_config_data.pregain,
  5015. iir_sidetone.st_iir_filter_config_pdata.param_size);
  5016. ret = afe_apr_send_pkt(&iir_sidetone, &this_afe.wait[index]);
  5017. if (ret)
  5018. pr_err("%s: AFE sidetone failed for tx_port(0x%x)\n",
  5019. __func__, tx_port_id);
  5020. done:
  5021. return ret;
  5022. }
  5023. static int afe_sidetone(u16 tx_port_id, u16 rx_port_id, bool enable)
  5024. {
  5025. struct afe_st_loopback_cfg_v1 cmd_sidetone;
  5026. int ret;
  5027. int index;
  5028. int cal_index = AFE_SIDETONE_CAL;
  5029. int sidetone_gain;
  5030. int sidetone_enable;
  5031. struct cal_block_data *cal_block;
  5032. int mid = 0;
  5033. memset(&cmd_sidetone, 0, sizeof(cmd_sidetone));
  5034. if (this_afe.cal_data[cal_index] == NULL) {
  5035. pr_err("%s: cal data is NULL\n", __func__);
  5036. ret = -EINVAL;
  5037. goto done;
  5038. }
  5039. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  5040. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  5041. if (cal_block == NULL) {
  5042. pr_err("%s: cal_block not found\n", __func__);
  5043. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  5044. ret = -EINVAL;
  5045. goto done;
  5046. }
  5047. sidetone_gain = ((struct audio_cal_info_sidetone *)
  5048. cal_block->cal_info)->gain;
  5049. sidetone_enable = ((struct audio_cal_info_sidetone *)
  5050. cal_block->cal_info)->enable;
  5051. mid = ((struct audio_cal_info_sidetone *)
  5052. cal_block->cal_info)->mid;
  5053. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  5054. index = q6audio_get_port_index(tx_port_id);
  5055. cmd_sidetone.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5056. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5057. cmd_sidetone.hdr.pkt_size = sizeof(cmd_sidetone);
  5058. cmd_sidetone.hdr.src_port = 0;
  5059. cmd_sidetone.hdr.dest_port = 0;
  5060. cmd_sidetone.hdr.token = index;
  5061. cmd_sidetone.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  5062. cmd_sidetone.param.port_id = tx_port_id;
  5063. cmd_sidetone.param.payload_size = (sizeof(cmd_sidetone) -
  5064. sizeof(struct apr_hdr) -
  5065. sizeof(struct afe_port_cmd_set_param_v2));
  5066. cmd_sidetone.param.payload_address_lsw = 0x00;
  5067. cmd_sidetone.param.payload_address_msw = 0x00;
  5068. cmd_sidetone.param.mem_map_handle = 0x00;
  5069. cmd_sidetone.gain_pdata.module_id = AFE_MODULE_LOOPBACK;
  5070. cmd_sidetone.gain_pdata.param_id = AFE_PARAM_ID_LOOPBACK_GAIN_PER_PATH;
  5071. /*
  5072. * size of actual payload only
  5073. */
  5074. cmd_sidetone.gain_pdata.param_size = sizeof(
  5075. struct afe_loopback_sidetone_gain);
  5076. cmd_sidetone.gain_data.rx_port_id = rx_port_id;
  5077. cmd_sidetone.gain_data.gain = sidetone_gain;
  5078. cmd_sidetone.cfg_pdata.module_id = AFE_MODULE_LOOPBACK;
  5079. cmd_sidetone.cfg_pdata.param_id = AFE_PARAM_ID_LOOPBACK_CONFIG;
  5080. /*
  5081. * size of actual payload only
  5082. */
  5083. cmd_sidetone.cfg_pdata.param_size = sizeof(struct loopback_cfg_data);
  5084. cmd_sidetone.cfg_data.loopback_cfg_minor_version =
  5085. AFE_API_VERSION_LOOPBACK_CONFIG;
  5086. cmd_sidetone.cfg_data.dst_port_id = rx_port_id;
  5087. cmd_sidetone.cfg_data.routing_mode = LB_MODE_SIDETONE;
  5088. cmd_sidetone.cfg_data.enable = enable;
  5089. pr_debug("%s rx(0x%x) tx(0x%x) enable(%d) mid(0x%x) gain(%d) sidetone_enable(%d)\n",
  5090. __func__, rx_port_id, tx_port_id,
  5091. enable, mid, sidetone_gain, sidetone_enable);
  5092. ret = afe_apr_send_pkt(&cmd_sidetone, &this_afe.wait[index]);
  5093. if (ret)
  5094. pr_err("%s: AFE sidetone send failed for tx_port:%d rx_port:%d ret:%d\n",
  5095. __func__, tx_port_id, rx_port_id, ret);
  5096. done:
  5097. return ret;
  5098. }
  5099. int afe_sidetone_enable(u16 tx_port_id, u16 rx_port_id, bool enable)
  5100. {
  5101. int ret;
  5102. int index;
  5103. index = q6audio_get_port_index(rx_port_id);
  5104. if (index < 0 || index >= AFE_MAX_PORTS) {
  5105. pr_err("%s: AFE port index[%d] invalid!\n",
  5106. __func__, index);
  5107. ret = -EINVAL;
  5108. goto done;
  5109. }
  5110. if (q6audio_validate_port(rx_port_id) < 0) {
  5111. pr_err("%s: Invalid port 0x%x\n",
  5112. __func__, rx_port_id);
  5113. ret = -EINVAL;
  5114. goto done;
  5115. }
  5116. index = q6audio_get_port_index(tx_port_id);
  5117. if (index < 0 || index >= AFE_MAX_PORTS) {
  5118. pr_err("%s: AFE port index[%d] invalid!\n",
  5119. __func__, index);
  5120. ret = -EINVAL;
  5121. goto done;
  5122. }
  5123. if (q6audio_validate_port(tx_port_id) < 0) {
  5124. pr_err("%s: Invalid port 0x%x\n",
  5125. __func__, tx_port_id);
  5126. ret = -EINVAL;
  5127. goto done;
  5128. }
  5129. if (enable) {
  5130. ret = afe_sidetone_iir(tx_port_id);
  5131. if (ret)
  5132. goto done;
  5133. }
  5134. ret = afe_sidetone(tx_port_id, rx_port_id, enable);
  5135. done:
  5136. return ret;
  5137. }
  5138. int afe_validate_port(u16 port_id)
  5139. {
  5140. int ret;
  5141. switch (port_id) {
  5142. case PRIMARY_I2S_RX:
  5143. case PRIMARY_I2S_TX:
  5144. case AFE_PORT_ID_PRIMARY_PCM_RX:
  5145. case AFE_PORT_ID_PRIMARY_PCM_TX:
  5146. case AFE_PORT_ID_SECONDARY_PCM_RX:
  5147. case AFE_PORT_ID_SECONDARY_PCM_TX:
  5148. case AFE_PORT_ID_TERTIARY_PCM_RX:
  5149. case AFE_PORT_ID_TERTIARY_PCM_TX:
  5150. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  5151. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  5152. case AFE_PORT_ID_QUINARY_PCM_RX:
  5153. case AFE_PORT_ID_QUINARY_PCM_TX:
  5154. case SECONDARY_I2S_RX:
  5155. case SECONDARY_I2S_TX:
  5156. case MI2S_RX:
  5157. case MI2S_TX:
  5158. case HDMI_RX:
  5159. case DISPLAY_PORT_RX:
  5160. case AFE_PORT_ID_SPDIF_RX:
  5161. case RSVD_2:
  5162. case RSVD_3:
  5163. case DIGI_MIC_TX:
  5164. case VOICE_RECORD_RX:
  5165. case VOICE_RECORD_TX:
  5166. case VOICE_PLAYBACK_TX:
  5167. case VOICE2_PLAYBACK_TX:
  5168. case SLIMBUS_0_RX:
  5169. case SLIMBUS_0_TX:
  5170. case SLIMBUS_1_RX:
  5171. case SLIMBUS_1_TX:
  5172. case SLIMBUS_2_RX:
  5173. case SLIMBUS_2_TX:
  5174. case SLIMBUS_3_RX:
  5175. case INT_BT_SCO_RX:
  5176. case INT_BT_SCO_TX:
  5177. case INT_BT_A2DP_RX:
  5178. case INT_FM_RX:
  5179. case INT_FM_TX:
  5180. case RT_PROXY_PORT_001_RX:
  5181. case RT_PROXY_PORT_001_TX:
  5182. case SLIMBUS_4_RX:
  5183. case SLIMBUS_4_TX:
  5184. case SLIMBUS_5_RX:
  5185. case SLIMBUS_6_RX:
  5186. case SLIMBUS_6_TX:
  5187. case SLIMBUS_7_RX:
  5188. case SLIMBUS_7_TX:
  5189. case SLIMBUS_8_RX:
  5190. case SLIMBUS_8_TX:
  5191. case AFE_PORT_ID_USB_RX:
  5192. case AFE_PORT_ID_USB_TX:
  5193. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  5194. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  5195. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  5196. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  5197. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  5198. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  5199. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  5200. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  5201. case AFE_PORT_ID_QUINARY_MI2S_RX:
  5202. case AFE_PORT_ID_QUINARY_MI2S_TX:
  5203. case AFE_PORT_ID_SENARY_MI2S_TX:
  5204. case AFE_PORT_ID_PRIMARY_TDM_RX:
  5205. case AFE_PORT_ID_PRIMARY_TDM_TX:
  5206. case AFE_PORT_ID_PRIMARY_TDM_RX_1:
  5207. case AFE_PORT_ID_PRIMARY_TDM_TX_1:
  5208. case AFE_PORT_ID_PRIMARY_TDM_RX_2:
  5209. case AFE_PORT_ID_PRIMARY_TDM_TX_2:
  5210. case AFE_PORT_ID_PRIMARY_TDM_RX_3:
  5211. case AFE_PORT_ID_PRIMARY_TDM_TX_3:
  5212. case AFE_PORT_ID_PRIMARY_TDM_RX_4:
  5213. case AFE_PORT_ID_PRIMARY_TDM_TX_4:
  5214. case AFE_PORT_ID_PRIMARY_TDM_RX_5:
  5215. case AFE_PORT_ID_PRIMARY_TDM_TX_5:
  5216. case AFE_PORT_ID_PRIMARY_TDM_RX_6:
  5217. case AFE_PORT_ID_PRIMARY_TDM_TX_6:
  5218. case AFE_PORT_ID_PRIMARY_TDM_RX_7:
  5219. case AFE_PORT_ID_PRIMARY_TDM_TX_7:
  5220. case AFE_PORT_ID_SECONDARY_TDM_RX:
  5221. case AFE_PORT_ID_SECONDARY_TDM_TX:
  5222. case AFE_PORT_ID_SECONDARY_TDM_RX_1:
  5223. case AFE_PORT_ID_SECONDARY_TDM_TX_1:
  5224. case AFE_PORT_ID_SECONDARY_TDM_RX_2:
  5225. case AFE_PORT_ID_SECONDARY_TDM_TX_2:
  5226. case AFE_PORT_ID_SECONDARY_TDM_RX_3:
  5227. case AFE_PORT_ID_SECONDARY_TDM_TX_3:
  5228. case AFE_PORT_ID_SECONDARY_TDM_RX_4:
  5229. case AFE_PORT_ID_SECONDARY_TDM_TX_4:
  5230. case AFE_PORT_ID_SECONDARY_TDM_RX_5:
  5231. case AFE_PORT_ID_SECONDARY_TDM_TX_5:
  5232. case AFE_PORT_ID_SECONDARY_TDM_RX_6:
  5233. case AFE_PORT_ID_SECONDARY_TDM_TX_6:
  5234. case AFE_PORT_ID_SECONDARY_TDM_RX_7:
  5235. case AFE_PORT_ID_SECONDARY_TDM_TX_7:
  5236. case AFE_PORT_ID_TERTIARY_TDM_RX:
  5237. case AFE_PORT_ID_TERTIARY_TDM_TX:
  5238. case AFE_PORT_ID_TERTIARY_TDM_RX_1:
  5239. case AFE_PORT_ID_TERTIARY_TDM_TX_1:
  5240. case AFE_PORT_ID_TERTIARY_TDM_RX_2:
  5241. case AFE_PORT_ID_TERTIARY_TDM_TX_2:
  5242. case AFE_PORT_ID_TERTIARY_TDM_RX_3:
  5243. case AFE_PORT_ID_TERTIARY_TDM_TX_3:
  5244. case AFE_PORT_ID_TERTIARY_TDM_RX_4:
  5245. case AFE_PORT_ID_TERTIARY_TDM_TX_4:
  5246. case AFE_PORT_ID_TERTIARY_TDM_RX_5:
  5247. case AFE_PORT_ID_TERTIARY_TDM_TX_5:
  5248. case AFE_PORT_ID_TERTIARY_TDM_RX_6:
  5249. case AFE_PORT_ID_TERTIARY_TDM_TX_6:
  5250. case AFE_PORT_ID_TERTIARY_TDM_RX_7:
  5251. case AFE_PORT_ID_TERTIARY_TDM_TX_7:
  5252. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  5253. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  5254. case AFE_PORT_ID_QUATERNARY_TDM_RX_1:
  5255. case AFE_PORT_ID_QUATERNARY_TDM_TX_1:
  5256. case AFE_PORT_ID_QUATERNARY_TDM_RX_2:
  5257. case AFE_PORT_ID_QUATERNARY_TDM_TX_2:
  5258. case AFE_PORT_ID_QUATERNARY_TDM_RX_3:
  5259. case AFE_PORT_ID_QUATERNARY_TDM_TX_3:
  5260. case AFE_PORT_ID_QUATERNARY_TDM_RX_4:
  5261. case AFE_PORT_ID_QUATERNARY_TDM_TX_4:
  5262. case AFE_PORT_ID_QUATERNARY_TDM_RX_5:
  5263. case AFE_PORT_ID_QUATERNARY_TDM_TX_5:
  5264. case AFE_PORT_ID_QUATERNARY_TDM_RX_6:
  5265. case AFE_PORT_ID_QUATERNARY_TDM_TX_6:
  5266. case AFE_PORT_ID_QUATERNARY_TDM_RX_7:
  5267. case AFE_PORT_ID_QUATERNARY_TDM_TX_7:
  5268. case AFE_PORT_ID_QUINARY_TDM_RX:
  5269. case AFE_PORT_ID_QUINARY_TDM_TX:
  5270. case AFE_PORT_ID_QUINARY_TDM_RX_1:
  5271. case AFE_PORT_ID_QUINARY_TDM_TX_1:
  5272. case AFE_PORT_ID_QUINARY_TDM_RX_2:
  5273. case AFE_PORT_ID_QUINARY_TDM_TX_2:
  5274. case AFE_PORT_ID_QUINARY_TDM_RX_3:
  5275. case AFE_PORT_ID_QUINARY_TDM_TX_3:
  5276. case AFE_PORT_ID_QUINARY_TDM_RX_4:
  5277. case AFE_PORT_ID_QUINARY_TDM_TX_4:
  5278. case AFE_PORT_ID_QUINARY_TDM_RX_5:
  5279. case AFE_PORT_ID_QUINARY_TDM_TX_5:
  5280. case AFE_PORT_ID_QUINARY_TDM_RX_6:
  5281. case AFE_PORT_ID_QUINARY_TDM_TX_6:
  5282. case AFE_PORT_ID_QUINARY_TDM_RX_7:
  5283. case AFE_PORT_ID_QUINARY_TDM_TX_7:
  5284. case AFE_PORT_ID_INT0_MI2S_RX:
  5285. case AFE_PORT_ID_INT1_MI2S_RX:
  5286. case AFE_PORT_ID_INT2_MI2S_RX:
  5287. case AFE_PORT_ID_INT3_MI2S_RX:
  5288. case AFE_PORT_ID_INT4_MI2S_RX:
  5289. case AFE_PORT_ID_INT5_MI2S_RX:
  5290. case AFE_PORT_ID_INT6_MI2S_RX:
  5291. case AFE_PORT_ID_INT0_MI2S_TX:
  5292. case AFE_PORT_ID_INT1_MI2S_TX:
  5293. case AFE_PORT_ID_INT2_MI2S_TX:
  5294. case AFE_PORT_ID_INT3_MI2S_TX:
  5295. case AFE_PORT_ID_INT4_MI2S_TX:
  5296. case AFE_PORT_ID_INT5_MI2S_TX:
  5297. case AFE_PORT_ID_INT6_MI2S_TX:
  5298. {
  5299. ret = 0;
  5300. break;
  5301. }
  5302. default:
  5303. pr_err("%s: default ret 0x%x\n", __func__, port_id);
  5304. ret = -EINVAL;
  5305. }
  5306. return ret;
  5307. }
  5308. int afe_convert_virtual_to_portid(u16 port_id)
  5309. {
  5310. int ret;
  5311. /*
  5312. * if port_id is virtual, convert to physical..
  5313. * if port_id is already physical, return physical
  5314. */
  5315. if (afe_validate_port(port_id) < 0) {
  5316. if (port_id == RT_PROXY_DAI_001_RX ||
  5317. port_id == RT_PROXY_DAI_001_TX ||
  5318. port_id == RT_PROXY_DAI_002_RX ||
  5319. port_id == RT_PROXY_DAI_002_TX) {
  5320. ret = VIRTUAL_ID_TO_PORTID(port_id);
  5321. } else {
  5322. pr_err("%s: wrong port 0x%x\n",
  5323. __func__, port_id);
  5324. ret = -EINVAL;
  5325. }
  5326. } else
  5327. ret = port_id;
  5328. return ret;
  5329. }
  5330. int afe_port_stop_nowait(int port_id)
  5331. {
  5332. struct afe_port_cmd_device_stop stop;
  5333. int ret = 0;
  5334. if (this_afe.apr == NULL) {
  5335. pr_err("%s: AFE is already closed\n", __func__);
  5336. ret = -EINVAL;
  5337. goto fail_cmd;
  5338. }
  5339. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  5340. port_id = q6audio_convert_virtual_to_portid(port_id);
  5341. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5342. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5343. stop.hdr.pkt_size = sizeof(stop);
  5344. stop.hdr.src_port = 0;
  5345. stop.hdr.dest_port = 0;
  5346. stop.hdr.token = 0;
  5347. stop.hdr.opcode = AFE_PORT_CMD_DEVICE_STOP;
  5348. stop.port_id = port_id;
  5349. stop.reserved = 0;
  5350. ret = afe_apr_send_pkt(&stop, NULL);
  5351. if (ret)
  5352. pr_err("%s: AFE close failed %d\n", __func__, ret);
  5353. fail_cmd:
  5354. return ret;
  5355. }
  5356. /**
  5357. * afe_close - command to close AFE port
  5358. *
  5359. * @port_id: AFE port id
  5360. *
  5361. * Returns 0 on success, appropriate error code otherwise
  5362. */
  5363. int afe_close(int port_id)
  5364. {
  5365. struct afe_port_cmd_device_stop stop;
  5366. enum afe_mad_type mad_type;
  5367. int ret = 0;
  5368. int index = 0;
  5369. uint16_t port_index;
  5370. if (this_afe.apr == NULL) {
  5371. pr_err("%s: AFE is already closed\n", __func__);
  5372. if ((port_id == RT_PROXY_DAI_001_RX) ||
  5373. (port_id == RT_PROXY_DAI_002_TX))
  5374. pcm_afe_instance[port_id & 0x1] = 0;
  5375. if ((port_id == RT_PROXY_DAI_002_RX) ||
  5376. (port_id == RT_PROXY_DAI_001_TX))
  5377. proxy_afe_instance[port_id & 0x1] = 0;
  5378. afe_close_done[port_id & 0x1] = true;
  5379. ret = -EINVAL;
  5380. goto fail_cmd;
  5381. }
  5382. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  5383. if ((port_id == RT_PROXY_DAI_001_RX) ||
  5384. (port_id == RT_PROXY_DAI_002_TX)) {
  5385. pr_debug("%s: before decrementing pcm_afe_instance %d\n",
  5386. __func__, pcm_afe_instance[port_id & 0x1]);
  5387. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  5388. pcm_afe_instance[port_id & 0x1]--;
  5389. if ((!(pcm_afe_instance[port_id & 0x1] == 0 &&
  5390. proxy_afe_instance[port_id & 0x1] == 0)) ||
  5391. afe_close_done[port_id & 0x1] == true)
  5392. return 0;
  5393. afe_close_done[port_id & 0x1] = true;
  5394. }
  5395. if ((port_id == RT_PROXY_DAI_002_RX) ||
  5396. (port_id == RT_PROXY_DAI_001_TX)) {
  5397. pr_debug("%s: before decrementing proxy_afe_instance %d\n",
  5398. __func__, proxy_afe_instance[port_id & 0x1]);
  5399. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  5400. proxy_afe_instance[port_id & 0x1]--;
  5401. if ((!(pcm_afe_instance[port_id & 0x1] == 0 &&
  5402. proxy_afe_instance[port_id & 0x1] == 0)) ||
  5403. afe_close_done[port_id & 0x1] == true)
  5404. return 0;
  5405. afe_close_done[port_id & 0x1] = true;
  5406. }
  5407. port_id = q6audio_convert_virtual_to_portid(port_id);
  5408. index = q6audio_get_port_index(port_id);
  5409. if (index < 0 || index >= AFE_MAX_PORTS) {
  5410. pr_err("%s: AFE port index[%d] invalid!\n",
  5411. __func__, index);
  5412. return -EINVAL;
  5413. }
  5414. ret = q6audio_validate_port(port_id);
  5415. if (ret < 0) {
  5416. pr_warn("%s: Not a valid port id 0x%x ret %d\n",
  5417. __func__, port_id, ret);
  5418. return -EINVAL;
  5419. }
  5420. mad_type = afe_port_get_mad_type(port_id);
  5421. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  5422. mad_type);
  5423. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  5424. pr_debug("%s: Turn off MAD\n", __func__);
  5425. ret = afe_turn_onoff_hw_mad(mad_type, false);
  5426. if (ret) {
  5427. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  5428. __func__, ret);
  5429. return ret;
  5430. }
  5431. } else {
  5432. pr_debug("%s: Not a MAD port\n", __func__);
  5433. }
  5434. port_index = afe_get_port_index(port_id);
  5435. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  5436. this_afe.afe_sample_rates[port_index] = 0;
  5437. this_afe.topology[port_index] = 0;
  5438. this_afe.dev_acdb_id[port_index] = 0;
  5439. } else {
  5440. pr_err("%s: port %d\n", __func__, port_index);
  5441. ret = -EINVAL;
  5442. goto fail_cmd;
  5443. }
  5444. if ((port_id == this_afe.aanc_info.aanc_tx_port) &&
  5445. (this_afe.aanc_info.aanc_active)) {
  5446. memset(&this_afe.aanc_info, 0x00, sizeof(this_afe.aanc_info));
  5447. ret = afe_aanc_mod_enable(this_afe.apr, port_id, 0);
  5448. if (ret)
  5449. pr_err("%s: AFE mod disable failed %d\n",
  5450. __func__, ret);
  5451. }
  5452. /*
  5453. * even if ramp down configuration failed it is not serious enough to
  5454. * warrant bailaing out.
  5455. */
  5456. if (afe_spk_ramp_dn_cfg(port_id) < 0)
  5457. pr_err("%s: ramp down configuration failed\n", __func__);
  5458. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5459. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5460. stop.hdr.pkt_size = sizeof(stop);
  5461. stop.hdr.src_port = 0;
  5462. stop.hdr.dest_port = 0;
  5463. stop.hdr.token = index;
  5464. stop.hdr.opcode = AFE_PORT_CMD_DEVICE_STOP;
  5465. stop.port_id = q6audio_get_port_id(port_id);
  5466. stop.reserved = 0;
  5467. ret = afe_apr_send_pkt(&stop, &this_afe.wait[index]);
  5468. if (ret)
  5469. pr_err("%s: AFE close failed %d\n", __func__, ret);
  5470. fail_cmd:
  5471. return ret;
  5472. }
  5473. EXPORT_SYMBOL(afe_close);
  5474. int afe_set_digital_codec_core_clock(u16 port_id,
  5475. struct afe_digital_clk_cfg *cfg)
  5476. {
  5477. struct afe_lpass_digital_clk_config_command clk_cfg;
  5478. int index = 0;
  5479. int ret = 0;
  5480. if (!cfg) {
  5481. pr_err("%s: clock cfg is NULL\n", __func__);
  5482. ret = -EINVAL;
  5483. return ret;
  5484. }
  5485. ret = afe_q6_interface_prepare();
  5486. if (ret != 0) {
  5487. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5488. return ret;
  5489. }
  5490. clk_cfg.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5491. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5492. clk_cfg.hdr.pkt_size = sizeof(clk_cfg);
  5493. clk_cfg.hdr.src_port = 0;
  5494. clk_cfg.hdr.dest_port = 0;
  5495. clk_cfg.hdr.token = index;
  5496. clk_cfg.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  5497. /*default rx port is taken to enable the codec digital clock*/
  5498. clk_cfg.param.port_id = q6audio_get_port_id(port_id);
  5499. clk_cfg.param.payload_size = sizeof(clk_cfg) - sizeof(struct apr_hdr)
  5500. - sizeof(clk_cfg.param);
  5501. clk_cfg.param.payload_address_lsw = 0x00;
  5502. clk_cfg.param.payload_address_msw = 0x00;
  5503. clk_cfg.param.mem_map_handle = 0x00;
  5504. clk_cfg.pdata.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5505. clk_cfg.pdata.param_id = AFE_PARAM_ID_INTERNAL_DIGIATL_CDC_CLK_CONFIG;
  5506. clk_cfg.pdata.param_size = sizeof(clk_cfg.clk_cfg);
  5507. clk_cfg.clk_cfg = *cfg;
  5508. pr_debug("%s: Minor version =0x%x clk val = %d\n"
  5509. "clk root = 0x%x resrv = 0x%x\n",
  5510. __func__, cfg->i2s_cfg_minor_version,
  5511. cfg->clk_val, cfg->clk_root, cfg->reserved);
  5512. atomic_set(&this_afe.state, 1);
  5513. atomic_set(&this_afe.status, 0);
  5514. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &clk_cfg);
  5515. if (ret < 0) {
  5516. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  5517. __func__, port_id, ret);
  5518. ret = -EINVAL;
  5519. goto fail_cmd;
  5520. }
  5521. ret = wait_event_timeout(this_afe.wait[index],
  5522. (atomic_read(&this_afe.state) == 0),
  5523. msecs_to_jiffies(TIMEOUT_MS));
  5524. if (!ret) {
  5525. pr_err("%s: wait_event timeout\n", __func__);
  5526. ret = -EINVAL;
  5527. goto fail_cmd;
  5528. }
  5529. if (atomic_read(&this_afe.status) > 0) {
  5530. pr_err("%s: config cmd failed [%s]\n",
  5531. __func__, adsp_err_get_err_str(
  5532. atomic_read(&this_afe.status)));
  5533. ret = adsp_err_get_lnx_err_code(
  5534. atomic_read(&this_afe.status));
  5535. goto fail_cmd;
  5536. }
  5537. fail_cmd:
  5538. return ret;
  5539. }
  5540. /**
  5541. * afe_set_lpass_clock - Enable AFE lpass clock
  5542. *
  5543. * @port_id: AFE port id
  5544. * @cfg: pointer to clk set struct
  5545. *
  5546. * Returns 0 on success, appropriate error code otherwise
  5547. */
  5548. int afe_set_lpass_clock(u16 port_id, struct afe_clk_cfg *cfg)
  5549. {
  5550. struct afe_lpass_clk_config_command clk_cfg;
  5551. int index = 0;
  5552. int ret = 0;
  5553. if (!cfg) {
  5554. pr_err("%s: clock cfg is NULL\n", __func__);
  5555. ret = -EINVAL;
  5556. return ret;
  5557. }
  5558. index = q6audio_get_port_index(port_id);
  5559. if (index < 0 || index >= AFE_MAX_PORTS) {
  5560. pr_err("%s: AFE port index[%d] invalid!\n",
  5561. __func__, index);
  5562. return -EINVAL;
  5563. }
  5564. ret = q6audio_is_digital_pcm_interface(port_id);
  5565. if (ret < 0) {
  5566. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  5567. __func__, ret);
  5568. return -EINVAL;
  5569. }
  5570. ret = afe_q6_interface_prepare();
  5571. if (ret != 0) {
  5572. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5573. return ret;
  5574. }
  5575. mutex_lock(&this_afe.afe_cmd_lock);
  5576. clk_cfg.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5577. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5578. clk_cfg.hdr.pkt_size = sizeof(clk_cfg);
  5579. clk_cfg.hdr.src_port = 0;
  5580. clk_cfg.hdr.dest_port = 0;
  5581. clk_cfg.hdr.token = index;
  5582. clk_cfg.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  5583. clk_cfg.param.port_id = q6audio_get_port_id(port_id);
  5584. clk_cfg.param.payload_size = sizeof(clk_cfg) - sizeof(struct apr_hdr)
  5585. - sizeof(clk_cfg.param);
  5586. clk_cfg.param.payload_address_lsw = 0x00;
  5587. clk_cfg.param.payload_address_msw = 0x00;
  5588. clk_cfg.param.mem_map_handle = 0x00;
  5589. clk_cfg.pdata.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5590. clk_cfg.pdata.param_id = AFE_PARAM_ID_LPAIF_CLK_CONFIG;
  5591. clk_cfg.pdata.param_size = sizeof(clk_cfg.clk_cfg);
  5592. clk_cfg.clk_cfg = *cfg;
  5593. pr_debug("%s: Minor version =0x%x clk val1 = %d\n"
  5594. "clk val2 = %d, clk src = 0x%x\n"
  5595. "clk root = 0x%x clk mode = 0x%x resrv = 0x%x\n"
  5596. "port id = 0x%x\n",
  5597. __func__, cfg->i2s_cfg_minor_version,
  5598. cfg->clk_val1, cfg->clk_val2, cfg->clk_src,
  5599. cfg->clk_root, cfg->clk_set_mode,
  5600. cfg->reserved, q6audio_get_port_id(port_id));
  5601. atomic_set(&this_afe.state, 1);
  5602. atomic_set(&this_afe.status, 0);
  5603. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &clk_cfg);
  5604. if (ret < 0) {
  5605. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  5606. __func__, port_id, ret);
  5607. ret = -EINVAL;
  5608. goto fail_cmd;
  5609. }
  5610. ret = wait_event_timeout(this_afe.wait[index],
  5611. (atomic_read(&this_afe.state) == 0),
  5612. msecs_to_jiffies(TIMEOUT_MS));
  5613. if (!ret) {
  5614. pr_err("%s: wait_event timeout\n", __func__);
  5615. ret = -EINVAL;
  5616. goto fail_cmd;
  5617. }
  5618. if (atomic_read(&this_afe.status) > 0) {
  5619. pr_err("%s: config cmd failed [%s]\n",
  5620. __func__, adsp_err_get_err_str(
  5621. atomic_read(&this_afe.status)));
  5622. ret = adsp_err_get_lnx_err_code(
  5623. atomic_read(&this_afe.status));
  5624. goto fail_cmd;
  5625. }
  5626. fail_cmd:
  5627. mutex_unlock(&this_afe.afe_cmd_lock);
  5628. return ret;
  5629. }
  5630. EXPORT_SYMBOL(afe_set_lpass_clock);
  5631. /**
  5632. * afe_set_lpass_clk_cfg - Set AFE clk config
  5633. *
  5634. * @index: port index
  5635. * @cfg: pointer to clk set struct
  5636. *
  5637. * Returns 0 on success, appropriate error code otherwise
  5638. */
  5639. int afe_set_lpass_clk_cfg(int index, struct afe_clk_set *cfg)
  5640. {
  5641. struct afe_lpass_clk_config_command_v2 clk_cfg;
  5642. int ret = 0;
  5643. if (!cfg) {
  5644. pr_err("%s: clock cfg is NULL\n", __func__);
  5645. ret = -EINVAL;
  5646. return ret;
  5647. }
  5648. if (index < 0 || index >= AFE_MAX_PORTS) {
  5649. pr_err("%s: index[%d] invalid!\n", __func__, index);
  5650. return -EINVAL;
  5651. }
  5652. ret = afe_q6_interface_prepare();
  5653. if (ret != 0) {
  5654. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5655. return ret;
  5656. }
  5657. mutex_lock(&this_afe.afe_cmd_lock);
  5658. clk_cfg.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5659. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5660. clk_cfg.hdr.pkt_size = sizeof(clk_cfg);
  5661. clk_cfg.hdr.src_port = 0;
  5662. clk_cfg.hdr.dest_port = 0;
  5663. clk_cfg.hdr.token = index;
  5664. clk_cfg.hdr.opcode = AFE_SVC_CMD_SET_PARAM;
  5665. clk_cfg.param.payload_size = sizeof(clk_cfg) - sizeof(struct apr_hdr)
  5666. - sizeof(clk_cfg.param);
  5667. clk_cfg.param.payload_address_lsw = 0x00;
  5668. clk_cfg.param.payload_address_msw = 0x00;
  5669. clk_cfg.param.mem_map_handle = 0x00;
  5670. clk_cfg.pdata.module_id = AFE_MODULE_CLOCK_SET;
  5671. clk_cfg.pdata.param_id = AFE_PARAM_ID_CLOCK_SET;
  5672. clk_cfg.pdata.param_size = sizeof(clk_cfg.clk_cfg);
  5673. clk_cfg.clk_cfg = *cfg;
  5674. pr_debug("%s: Minor version =0x%x clk id = %d\n"
  5675. "clk freq (Hz) = %d, clk attri = 0x%x\n"
  5676. "clk root = 0x%x clk enable = 0x%x\n",
  5677. __func__, cfg->clk_set_minor_version,
  5678. cfg->clk_id, cfg->clk_freq_in_hz, cfg->clk_attri,
  5679. cfg->clk_root, cfg->enable);
  5680. atomic_set(&this_afe.state, 1);
  5681. atomic_set(&this_afe.status, 0);
  5682. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &clk_cfg);
  5683. if (ret < 0) {
  5684. pr_err("%s: AFE clk cfg failed with ret %d\n",
  5685. __func__, ret);
  5686. ret = -EINVAL;
  5687. goto fail_cmd;
  5688. }
  5689. ret = wait_event_timeout(this_afe.wait[index],
  5690. (atomic_read(&this_afe.state) == 0),
  5691. msecs_to_jiffies(TIMEOUT_MS));
  5692. if (!ret) {
  5693. pr_err("%s: wait_event timeout\n", __func__);
  5694. ret = -EINVAL;
  5695. goto fail_cmd;
  5696. } else {
  5697. /* set ret to 0 as no timeout happened */
  5698. ret = 0;
  5699. }
  5700. if (atomic_read(&this_afe.status) != 0) {
  5701. pr_err("%s: config cmd failed\n", __func__);
  5702. ret = -EINVAL;
  5703. goto fail_cmd;
  5704. }
  5705. fail_cmd:
  5706. mutex_unlock(&this_afe.afe_cmd_lock);
  5707. return ret;
  5708. }
  5709. EXPORT_SYMBOL(afe_set_lpass_clk_cfg);
  5710. /**
  5711. * afe_set_lpass_clock_v2 - Enable AFE lpass clock
  5712. *
  5713. * @port_id: AFE port id
  5714. * @cfg: pointer to clk set struct
  5715. *
  5716. * Returns 0 on success, appropriate error code otherwise
  5717. */
  5718. int afe_set_lpass_clock_v2(u16 port_id, struct afe_clk_set *cfg)
  5719. {
  5720. int index = 0;
  5721. int ret = 0;
  5722. index = q6audio_get_port_index(port_id);
  5723. if (index < 0 || index >= AFE_MAX_PORTS) {
  5724. pr_err("%s: AFE port index[%d] invalid!\n",
  5725. __func__, index);
  5726. return -EINVAL;
  5727. }
  5728. ret = q6audio_is_digital_pcm_interface(port_id);
  5729. if (ret < 0) {
  5730. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  5731. __func__, ret);
  5732. return -EINVAL;
  5733. }
  5734. ret = afe_set_lpass_clk_cfg(index, cfg);
  5735. if (ret)
  5736. pr_err("%s: afe_set_lpass_clk_cfg_v2 failed %d\n",
  5737. __func__, ret);
  5738. return ret;
  5739. }
  5740. EXPORT_SYMBOL(afe_set_lpass_clock_v2);
  5741. int afe_set_lpass_internal_digital_codec_clock(u16 port_id,
  5742. struct afe_digital_clk_cfg *cfg)
  5743. {
  5744. struct afe_lpass_digital_clk_config_command clk_cfg;
  5745. int index = 0;
  5746. int ret = 0;
  5747. if (!cfg) {
  5748. pr_err("%s: clock cfg is NULL\n", __func__);
  5749. ret = -EINVAL;
  5750. return ret;
  5751. }
  5752. index = q6audio_get_port_index(port_id);
  5753. if (index < 0 || index >= AFE_MAX_PORTS) {
  5754. pr_err("%s: AFE port index[%d] invalid!\n",
  5755. __func__, index);
  5756. return -EINVAL;
  5757. }
  5758. ret = q6audio_is_digital_pcm_interface(port_id);
  5759. if (ret < 0) {
  5760. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  5761. __func__, ret);
  5762. return -EINVAL;
  5763. }
  5764. ret = afe_q6_interface_prepare();
  5765. if (ret != 0) {
  5766. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5767. return ret;
  5768. }
  5769. clk_cfg.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5770. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5771. clk_cfg.hdr.pkt_size = sizeof(clk_cfg);
  5772. clk_cfg.hdr.src_port = 0;
  5773. clk_cfg.hdr.dest_port = 0;
  5774. clk_cfg.hdr.token = index;
  5775. clk_cfg.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  5776. clk_cfg.param.port_id = q6audio_get_port_id(port_id);
  5777. clk_cfg.param.payload_size = sizeof(clk_cfg) - sizeof(struct apr_hdr)
  5778. - sizeof(clk_cfg.param);
  5779. clk_cfg.param.payload_address_lsw = 0x00;
  5780. clk_cfg.param.payload_address_msw = 0x00;
  5781. clk_cfg.param.mem_map_handle = 0x00;
  5782. clk_cfg.pdata.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5783. clk_cfg.pdata.param_id = AFE_PARAM_ID_INTERNAL_DIGIATL_CDC_CLK_CONFIG;
  5784. clk_cfg.pdata.param_size = sizeof(clk_cfg.clk_cfg);
  5785. clk_cfg.clk_cfg = *cfg;
  5786. pr_debug("%s: Minor version =0x%x clk val = %d\n"
  5787. "clk root = 0x%x resrv = 0x%x port id = 0x%x\n",
  5788. __func__, cfg->i2s_cfg_minor_version,
  5789. cfg->clk_val, cfg->clk_root, cfg->reserved,
  5790. q6audio_get_port_id(port_id));
  5791. atomic_set(&this_afe.state, 1);
  5792. atomic_set(&this_afe.status, 0);
  5793. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &clk_cfg);
  5794. if (ret < 0) {
  5795. pr_err("%s: AFE enable for port 0x0x%x ret %d\n",
  5796. __func__, port_id, ret);
  5797. ret = -EINVAL;
  5798. goto fail_cmd;
  5799. }
  5800. ret = wait_event_timeout(this_afe.wait[index],
  5801. (atomic_read(&this_afe.state) == 0),
  5802. msecs_to_jiffies(TIMEOUT_MS));
  5803. if (!ret) {
  5804. pr_err("%s: wait_event timeout\n", __func__);
  5805. ret = -EINVAL;
  5806. goto fail_cmd;
  5807. }
  5808. if (atomic_read(&this_afe.status) > 0) {
  5809. pr_err("%s: config cmd failed [%s]\n",
  5810. __func__, adsp_err_get_err_str(
  5811. atomic_read(&this_afe.status)));
  5812. ret = adsp_err_get_lnx_err_code(
  5813. atomic_read(&this_afe.status));
  5814. goto fail_cmd;
  5815. }
  5816. fail_cmd:
  5817. return ret;
  5818. }
  5819. int afe_enable_lpass_core_shared_clock(u16 port_id, u32 enable)
  5820. {
  5821. struct afe_lpass_core_shared_clk_config_command clk_cfg;
  5822. int index = 0;
  5823. int ret = 0;
  5824. index = q6audio_get_port_index(port_id);
  5825. if (index < 0 || index >= AFE_MAX_PORTS) {
  5826. pr_err("%s: AFE port index[%d] invalid!\n",
  5827. __func__, index);
  5828. return -EINVAL;
  5829. }
  5830. ret = q6audio_is_digital_pcm_interface(port_id);
  5831. if (ret < 0) {
  5832. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  5833. __func__, ret);
  5834. return -EINVAL;
  5835. }
  5836. ret = afe_q6_interface_prepare();
  5837. if (ret != 0) {
  5838. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5839. return ret;
  5840. }
  5841. mutex_lock(&this_afe.afe_cmd_lock);
  5842. clk_cfg.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5843. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5844. clk_cfg.hdr.pkt_size = sizeof(clk_cfg);
  5845. clk_cfg.hdr.src_port = 0;
  5846. clk_cfg.hdr.dest_port = 0;
  5847. clk_cfg.hdr.token = index;
  5848. clk_cfg.hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  5849. clk_cfg.param.port_id = q6audio_get_port_id(port_id);
  5850. clk_cfg.param.payload_size = sizeof(clk_cfg) - sizeof(struct apr_hdr)
  5851. - sizeof(clk_cfg.param);
  5852. clk_cfg.param.payload_address_lsw = 0x00;
  5853. clk_cfg.param.payload_address_msw = 0x00;
  5854. clk_cfg.param.mem_map_handle = 0x00;
  5855. clk_cfg.pdata.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5856. clk_cfg.pdata.param_id = AFE_PARAM_ID_LPASS_CORE_SHARED_CLOCK_CONFIG;
  5857. clk_cfg.pdata.param_size = sizeof(clk_cfg.clk_cfg);
  5858. clk_cfg.clk_cfg.lpass_core_shared_clk_cfg_minor_version =
  5859. AFE_API_VERSION_LPASS_CORE_SHARED_CLK_CONFIG;
  5860. clk_cfg.clk_cfg.enable = enable;
  5861. pr_debug("%s: port id = %d, enable = %d\n",
  5862. __func__, q6audio_get_port_id(port_id), enable);
  5863. atomic_set(&this_afe.state, 1);
  5864. atomic_set(&this_afe.status, 0);
  5865. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &clk_cfg);
  5866. if (ret < 0) {
  5867. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  5868. __func__, port_id, ret);
  5869. ret = -EINVAL;
  5870. goto fail_cmd;
  5871. }
  5872. ret = wait_event_timeout(this_afe.wait[index],
  5873. (atomic_read(&this_afe.state) == 0),
  5874. msecs_to_jiffies(TIMEOUT_MS));
  5875. if (!ret) {
  5876. pr_err("%s: wait_event timeout\n", __func__);
  5877. ret = -EINVAL;
  5878. goto fail_cmd;
  5879. }
  5880. if (atomic_read(&this_afe.status) > 0) {
  5881. pr_err("%s: config cmd failed [%s]\n",
  5882. __func__, adsp_err_get_err_str(
  5883. atomic_read(&this_afe.status)));
  5884. ret = adsp_err_get_lnx_err_code(
  5885. atomic_read(&this_afe.status));
  5886. goto fail_cmd;
  5887. }
  5888. fail_cmd:
  5889. mutex_unlock(&this_afe.afe_cmd_lock);
  5890. return ret;
  5891. }
  5892. int q6afe_check_osr_clk_freq(u32 freq)
  5893. {
  5894. int ret = 0;
  5895. switch (freq) {
  5896. case Q6AFE_LPASS_OSR_CLK_12_P288_MHZ:
  5897. case Q6AFE_LPASS_OSR_CLK_9_P600_MHZ:
  5898. case Q6AFE_LPASS_OSR_CLK_8_P192_MHZ:
  5899. case Q6AFE_LPASS_OSR_CLK_6_P144_MHZ:
  5900. case Q6AFE_LPASS_OSR_CLK_4_P096_MHZ:
  5901. case Q6AFE_LPASS_OSR_CLK_3_P072_MHZ:
  5902. case Q6AFE_LPASS_OSR_CLK_2_P048_MHZ:
  5903. case Q6AFE_LPASS_OSR_CLK_1_P536_MHZ:
  5904. case Q6AFE_LPASS_OSR_CLK_1_P024_MHZ:
  5905. case Q6AFE_LPASS_OSR_CLK_768_kHZ:
  5906. case Q6AFE_LPASS_OSR_CLK_512_kHZ:
  5907. break;
  5908. default:
  5909. pr_err("%s: deafault freq 0x%x\n",
  5910. __func__, freq);
  5911. ret = -EINVAL;
  5912. }
  5913. return ret;
  5914. }
  5915. int afe_get_sp_th_vi_ftm_data(struct afe_sp_th_vi_get_param *th_vi)
  5916. {
  5917. int ret = -EINVAL;
  5918. int index = 0, port = SLIMBUS_4_TX;
  5919. if (!th_vi) {
  5920. pr_err("%s: Invalid params\n", __func__);
  5921. goto done;
  5922. }
  5923. if (this_afe.vi_tx_port != -1)
  5924. port = this_afe.vi_tx_port;
  5925. ret = q6audio_validate_port(port);
  5926. if (ret < 0) {
  5927. pr_err("%s: invalid port 0x%x ret %d\n", __func__, port, ret);
  5928. goto done;
  5929. }
  5930. index = q6audio_get_port_index(port);
  5931. if (index < 0) {
  5932. pr_err("%s: invalid port 0x%x, index %d\n",
  5933. __func__, port, index);
  5934. ret = -EINVAL;
  5935. goto done;
  5936. }
  5937. th_vi->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5938. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5939. th_vi->hdr.pkt_size = sizeof(*th_vi);
  5940. th_vi->hdr.src_port = 0;
  5941. th_vi->hdr.dest_port = 0;
  5942. th_vi->hdr.token = index;
  5943. th_vi->hdr.opcode = AFE_PORT_CMD_GET_PARAM_V2;
  5944. th_vi->get_param.mem_map_handle = 0;
  5945. th_vi->get_param.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  5946. th_vi->get_param.param_id = AFE_PARAM_ID_SP_V2_TH_VI_FTM_PARAMS;
  5947. th_vi->get_param.payload_address_lsw = 0;
  5948. th_vi->get_param.payload_address_msw = 0;
  5949. th_vi->get_param.payload_size = sizeof(*th_vi)
  5950. - sizeof(th_vi->get_param) - sizeof(th_vi->hdr);
  5951. th_vi->get_param.port_id = q6audio_get_port_id(port);
  5952. th_vi->pdata.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  5953. th_vi->pdata.param_id = AFE_PARAM_ID_SP_V2_TH_VI_FTM_PARAMS;
  5954. th_vi->pdata.param_size = sizeof(th_vi->param);
  5955. atomic_set(&this_afe.status, 0);
  5956. atomic_set(&this_afe.state, 1);
  5957. ret = apr_send_pkt(this_afe.apr, (uint32_t *)th_vi);
  5958. if (ret < 0) {
  5959. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  5960. __func__, port, th_vi->get_param.param_id, ret);
  5961. goto done;
  5962. }
  5963. ret = wait_event_timeout(this_afe.wait[index],
  5964. (atomic_read(&this_afe.state) == 0),
  5965. msecs_to_jiffies(TIMEOUT_MS));
  5966. if (!ret) {
  5967. pr_err("%s: wait_event timeout\n", __func__);
  5968. ret = -EINVAL;
  5969. goto done;
  5970. }
  5971. if (atomic_read(&this_afe.status) > 0) {
  5972. pr_err("%s: config cmd failed [%s]\n",
  5973. __func__, adsp_err_get_err_str(
  5974. atomic_read(&this_afe.status)));
  5975. ret = adsp_err_get_lnx_err_code(atomic_read(&this_afe.status));
  5976. goto done;
  5977. }
  5978. memcpy(&th_vi->param, &this_afe.th_vi_resp.param,
  5979. sizeof(this_afe.th_vi_resp.param));
  5980. pr_debug("%s: DC resistance %d %d temp %d %d status %d %d\n",
  5981. __func__, th_vi->param.dc_res_q24[SP_V2_SPKR_1],
  5982. th_vi->param.dc_res_q24[SP_V2_SPKR_2],
  5983. th_vi->param.temp_q22[SP_V2_SPKR_1],
  5984. th_vi->param.temp_q22[SP_V2_SPKR_2],
  5985. th_vi->param.status[SP_V2_SPKR_1],
  5986. th_vi->param.status[SP_V2_SPKR_2]);
  5987. ret = 0;
  5988. done:
  5989. return ret;
  5990. }
  5991. int afe_get_sp_ex_vi_ftm_data(struct afe_sp_ex_vi_get_param *ex_vi)
  5992. {
  5993. int ret = -EINVAL;
  5994. int index = 0, port = SLIMBUS_4_TX;
  5995. if (!ex_vi) {
  5996. pr_err("%s: Invalid params\n", __func__);
  5997. goto done;
  5998. }
  5999. if (this_afe.vi_tx_port != -1)
  6000. port = this_afe.vi_tx_port;
  6001. ret = q6audio_validate_port(port);
  6002. if (ret < 0) {
  6003. pr_err("%s: invalid port 0x%x ret %d\n", __func__, port, ret);
  6004. goto done;
  6005. }
  6006. index = q6audio_get_port_index(port);
  6007. if (index < 0) {
  6008. pr_err("%s: invalid index %d port 0x%x\n", __func__,
  6009. index, port);
  6010. ret = -EINVAL;
  6011. goto done;
  6012. }
  6013. ex_vi->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6014. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6015. ex_vi->hdr.pkt_size = sizeof(*ex_vi);
  6016. ex_vi->hdr.src_port = 0;
  6017. ex_vi->hdr.dest_port = 0;
  6018. ex_vi->hdr.token = index;
  6019. ex_vi->hdr.opcode = AFE_PORT_CMD_GET_PARAM_V2;
  6020. ex_vi->get_param.mem_map_handle = 0;
  6021. ex_vi->get_param.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI;
  6022. ex_vi->get_param.param_id = AFE_PARAM_ID_SP_V2_EX_VI_FTM_PARAMS;
  6023. ex_vi->get_param.payload_address_lsw = 0;
  6024. ex_vi->get_param.payload_address_msw = 0;
  6025. ex_vi->get_param.payload_size = sizeof(*ex_vi)
  6026. - sizeof(ex_vi->get_param) - sizeof(ex_vi->hdr);
  6027. ex_vi->get_param.port_id = q6audio_get_port_id(port);
  6028. ex_vi->pdata.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI;
  6029. ex_vi->pdata.param_id = AFE_PARAM_ID_SP_V2_EX_VI_FTM_PARAMS;
  6030. ex_vi->pdata.param_size = sizeof(ex_vi->param);
  6031. atomic_set(&this_afe.status, 0);
  6032. atomic_set(&this_afe.state, 1);
  6033. ret = apr_send_pkt(this_afe.apr, (uint32_t *)ex_vi);
  6034. if (ret < 0) {
  6035. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  6036. __func__, port, ex_vi->get_param.param_id, ret);
  6037. goto done;
  6038. }
  6039. ret = wait_event_timeout(this_afe.wait[index],
  6040. (atomic_read(&this_afe.state) == 0),
  6041. msecs_to_jiffies(TIMEOUT_MS));
  6042. if (!ret) {
  6043. pr_err("%s: wait_event timeout\n", __func__);
  6044. ret = -EINVAL;
  6045. goto done;
  6046. }
  6047. if (atomic_read(&this_afe.status) > 0) {
  6048. pr_err("%s: config cmd failed [%s]\n",
  6049. __func__, adsp_err_get_err_str(
  6050. atomic_read(&this_afe.status)));
  6051. ret = adsp_err_get_lnx_err_code(atomic_read(&this_afe.status));
  6052. goto done;
  6053. }
  6054. memcpy(&ex_vi->param, &this_afe.ex_vi_resp.param,
  6055. sizeof(this_afe.ex_vi_resp.param));
  6056. pr_debug("%s: freq %d %d resistance %d %d qfactor %d %d state %d %d\n",
  6057. __func__, ex_vi->param.freq_q20[SP_V2_SPKR_1],
  6058. ex_vi->param.freq_q20[SP_V2_SPKR_2],
  6059. ex_vi->param.resis_q24[SP_V2_SPKR_1],
  6060. ex_vi->param.resis_q24[SP_V2_SPKR_2],
  6061. ex_vi->param.qmct_q24[SP_V2_SPKR_1],
  6062. ex_vi->param.qmct_q24[SP_V2_SPKR_2],
  6063. ex_vi->param.status[SP_V2_SPKR_1],
  6064. ex_vi->param.status[SP_V2_SPKR_2]);
  6065. ret = 0;
  6066. done:
  6067. return ret;
  6068. }
  6069. /**
  6070. * afe_get_av_dev_drift -
  6071. * command to retrieve AV drift
  6072. *
  6073. * @timing_stats: timing stats to be updated with AV drift values
  6074. * @port: AFE port ID
  6075. *
  6076. * Returns 0 on success or error on failure
  6077. */
  6078. int afe_get_av_dev_drift(struct afe_param_id_dev_timing_stats *timing_stats,
  6079. u16 port)
  6080. {
  6081. int ret = -EINVAL;
  6082. int index = 0;
  6083. struct afe_av_dev_drift_get_param av_dev_drift;
  6084. if (!timing_stats) {
  6085. pr_err("%s: Invalid params\n", __func__);
  6086. goto exit;
  6087. }
  6088. ret = q6audio_validate_port(port);
  6089. if (ret < 0) {
  6090. pr_err("%s: invalid port 0x%x ret %d\n", __func__, port, ret);
  6091. ret = -EINVAL;
  6092. goto exit;
  6093. }
  6094. index = q6audio_get_port_index(port);
  6095. if (index < 0 || index >= AFE_MAX_PORTS) {
  6096. pr_err("%s: Invalid AFE port index[%d]\n",
  6097. __func__, index);
  6098. ret = -EINVAL;
  6099. goto exit;
  6100. }
  6101. memset(&av_dev_drift, 0, sizeof(struct afe_av_dev_drift_get_param));
  6102. av_dev_drift.hdr.hdr_field =
  6103. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6104. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6105. av_dev_drift.hdr.pkt_size = sizeof(av_dev_drift);
  6106. av_dev_drift.hdr.src_port = 0;
  6107. av_dev_drift.hdr.dest_port = 0;
  6108. av_dev_drift.hdr.token = index;
  6109. av_dev_drift.hdr.opcode = AFE_PORT_CMD_GET_PARAM_V2;
  6110. av_dev_drift.get_param.mem_map_handle = 0;
  6111. av_dev_drift.get_param.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6112. av_dev_drift.get_param.param_id = AFE_PARAM_ID_DEV_TIMING_STATS;
  6113. av_dev_drift.get_param.payload_address_lsw = 0;
  6114. av_dev_drift.get_param.payload_address_msw = 0;
  6115. av_dev_drift.get_param.payload_size = sizeof(av_dev_drift)
  6116. - sizeof(av_dev_drift.get_param) - sizeof(av_dev_drift.hdr);
  6117. av_dev_drift.get_param.port_id = q6audio_get_port_id(port);
  6118. av_dev_drift.pdata.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6119. av_dev_drift.pdata.param_id = AFE_PARAM_ID_DEV_TIMING_STATS;
  6120. av_dev_drift.pdata.param_size = sizeof(av_dev_drift.timing_stats);
  6121. atomic_set(&this_afe.status, 0);
  6122. atomic_set(&this_afe.state, 1);
  6123. ret = apr_send_pkt(this_afe.apr, (uint32_t *)&av_dev_drift);
  6124. if (ret < 0) {
  6125. pr_err("%s: get param port 0x%x param id[0x%x] failed %d\n",
  6126. __func__, port, av_dev_drift.get_param.param_id, ret);
  6127. goto exit;
  6128. }
  6129. ret = wait_event_timeout(this_afe.wait[index],
  6130. (atomic_read(&this_afe.state) == 0),
  6131. msecs_to_jiffies(TIMEOUT_MS));
  6132. if (!ret) {
  6133. pr_err("%s: wait_event timeout\n", __func__);
  6134. ret = -EINVAL;
  6135. goto exit;
  6136. }
  6137. if (atomic_read(&this_afe.status) > 0) {
  6138. pr_err("%s: config cmd failed [%s]\n",
  6139. __func__, adsp_err_get_err_str(
  6140. atomic_read(&this_afe.status)));
  6141. ret = adsp_err_get_lnx_err_code(
  6142. atomic_read(&this_afe.status));
  6143. goto exit;
  6144. }
  6145. memcpy(timing_stats, &this_afe.av_dev_drift_resp.timing_stats,
  6146. sizeof(this_afe.av_dev_drift_resp.timing_stats));
  6147. ret = 0;
  6148. exit:
  6149. return ret;
  6150. }
  6151. EXPORT_SYMBOL(afe_get_av_dev_drift);
  6152. int afe_spk_prot_get_calib_data(struct afe_spkr_prot_get_vi_calib *calib_resp)
  6153. {
  6154. int ret = -EINVAL;
  6155. int index = 0, port = SLIMBUS_4_TX;
  6156. if (!calib_resp) {
  6157. pr_err("%s: Invalid params\n", __func__);
  6158. goto fail_cmd;
  6159. }
  6160. if (this_afe.vi_tx_port != -1)
  6161. port = this_afe.vi_tx_port;
  6162. ret = q6audio_validate_port(port);
  6163. if (ret < 0) {
  6164. pr_err("%s: invalid port 0x%x ret %d\n", __func__, port, ret);
  6165. ret = -EINVAL;
  6166. goto fail_cmd;
  6167. }
  6168. index = q6audio_get_port_index(port);
  6169. if (index < 0 || index >= AFE_MAX_PORTS) {
  6170. pr_err("%s: AFE port index[%d] invalid!\n",
  6171. __func__, index);
  6172. ret = -EINVAL;
  6173. goto fail_cmd;
  6174. }
  6175. calib_resp->hdr.hdr_field =
  6176. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6177. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6178. calib_resp->hdr.pkt_size = sizeof(*calib_resp);
  6179. calib_resp->hdr.src_port = 0;
  6180. calib_resp->hdr.dest_port = 0;
  6181. calib_resp->hdr.token = index;
  6182. calib_resp->hdr.opcode = AFE_PORT_CMD_GET_PARAM_V2;
  6183. calib_resp->get_param.mem_map_handle = 0;
  6184. calib_resp->get_param.module_id = AFE_MODULE_FB_SPKR_PROT_VI_PROC_V2;
  6185. calib_resp->get_param.param_id = AFE_PARAM_ID_CALIB_RES_CFG_V2;
  6186. calib_resp->get_param.payload_address_lsw = 0;
  6187. calib_resp->get_param.payload_address_msw = 0;
  6188. calib_resp->get_param.payload_size = sizeof(*calib_resp)
  6189. - sizeof(calib_resp->get_param) - sizeof(calib_resp->hdr);
  6190. calib_resp->get_param.port_id = q6audio_get_port_id(port);
  6191. calib_resp->pdata.module_id = AFE_MODULE_FB_SPKR_PROT_VI_PROC_V2;
  6192. calib_resp->pdata.param_id = AFE_PARAM_ID_CALIB_RES_CFG_V2;
  6193. calib_resp->pdata.param_size = sizeof(calib_resp->res_cfg);
  6194. atomic_set(&this_afe.status, 0);
  6195. atomic_set(&this_afe.state, 1);
  6196. ret = apr_send_pkt(this_afe.apr, (uint32_t *)calib_resp);
  6197. if (ret < 0) {
  6198. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  6199. __func__, port, calib_resp->get_param.param_id, ret);
  6200. goto fail_cmd;
  6201. }
  6202. ret = wait_event_timeout(this_afe.wait[index],
  6203. (atomic_read(&this_afe.state) == 0),
  6204. msecs_to_jiffies(TIMEOUT_MS));
  6205. if (!ret) {
  6206. pr_err("%s: wait_event timeout\n", __func__);
  6207. ret = -EINVAL;
  6208. goto fail_cmd;
  6209. }
  6210. if (atomic_read(&this_afe.status) > 0) {
  6211. pr_err("%s: config cmd failed [%s]\n",
  6212. __func__, adsp_err_get_err_str(
  6213. atomic_read(&this_afe.status)));
  6214. ret = adsp_err_get_lnx_err_code(
  6215. atomic_read(&this_afe.status));
  6216. goto fail_cmd;
  6217. }
  6218. memcpy(&calib_resp->res_cfg, &this_afe.calib_data.res_cfg,
  6219. sizeof(this_afe.calib_data.res_cfg));
  6220. pr_info("%s: state %s resistance %d %d\n", __func__,
  6221. fbsp_state[calib_resp->res_cfg.th_vi_ca_state],
  6222. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_1],
  6223. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_2]);
  6224. ret = 0;
  6225. fail_cmd:
  6226. return ret;
  6227. }
  6228. /**
  6229. * afe_spk_prot_feed_back_cfg -
  6230. * command to setup spk protection feedback config
  6231. *
  6232. * @src_port: source port id
  6233. * @dst_port: destination port id
  6234. * @l_ch: left speaker active or not
  6235. * @r_ch: right speaker active or not
  6236. * @enable: flag to enable or disable
  6237. *
  6238. * Returns 0 on success or error on failure
  6239. */
  6240. int afe_spk_prot_feed_back_cfg(int src_port, int dst_port,
  6241. int l_ch, int r_ch, u32 enable)
  6242. {
  6243. int ret = -EINVAL;
  6244. union afe_spkr_prot_config prot_config;
  6245. int index = 0;
  6246. if (!enable) {
  6247. pr_debug("%s: Disable Feedback tx path", __func__);
  6248. this_afe.vi_tx_port = -1;
  6249. this_afe.vi_rx_port = -1;
  6250. return 0;
  6251. }
  6252. if ((q6audio_validate_port(src_port) < 0) ||
  6253. (q6audio_validate_port(dst_port) < 0)) {
  6254. pr_err("%s: invalid ports src 0x%x dst 0x%x",
  6255. __func__, src_port, dst_port);
  6256. goto fail_cmd;
  6257. }
  6258. if (!l_ch && !r_ch) {
  6259. pr_err("%s: error ch values zero\n", __func__);
  6260. goto fail_cmd;
  6261. }
  6262. pr_debug("%s: src_port 0x%x dst_port 0x%x l_ch %d r_ch %d\n",
  6263. __func__, src_port, dst_port, l_ch, r_ch);
  6264. memset(&prot_config, 0, sizeof(prot_config));
  6265. prot_config.feedback_path_cfg.dst_portid =
  6266. q6audio_get_port_id(dst_port);
  6267. if (l_ch) {
  6268. prot_config.feedback_path_cfg.chan_info[index++] = 1;
  6269. prot_config.feedback_path_cfg.chan_info[index++] = 2;
  6270. }
  6271. if (r_ch) {
  6272. prot_config.feedback_path_cfg.chan_info[index++] = 3;
  6273. prot_config.feedback_path_cfg.chan_info[index++] = 4;
  6274. }
  6275. prot_config.feedback_path_cfg.num_channels = index;
  6276. pr_debug("%s no of channels: %d\n", __func__, index);
  6277. prot_config.feedback_path_cfg.minor_version = 1;
  6278. ret = afe_spk_prot_prepare(src_port, dst_port,
  6279. AFE_PARAM_ID_FEEDBACK_PATH_CFG, &prot_config);
  6280. fail_cmd:
  6281. return ret;
  6282. }
  6283. EXPORT_SYMBOL(afe_spk_prot_feed_back_cfg);
  6284. static int get_cal_type_index(int32_t cal_type)
  6285. {
  6286. int ret = -EINVAL;
  6287. switch (cal_type) {
  6288. case AFE_COMMON_RX_CAL_TYPE:
  6289. ret = AFE_COMMON_RX_CAL;
  6290. break;
  6291. case AFE_COMMON_TX_CAL_TYPE:
  6292. ret = AFE_COMMON_TX_CAL;
  6293. break;
  6294. case AFE_LSM_TX_CAL_TYPE:
  6295. ret = AFE_LSM_TX_CAL;
  6296. break;
  6297. case AFE_AANC_CAL_TYPE:
  6298. ret = AFE_AANC_CAL;
  6299. break;
  6300. case AFE_HW_DELAY_CAL_TYPE:
  6301. ret = AFE_HW_DELAY_CAL;
  6302. break;
  6303. case AFE_FB_SPKR_PROT_CAL_TYPE:
  6304. ret = AFE_FB_SPKR_PROT_CAL;
  6305. break;
  6306. case AFE_SIDETONE_CAL_TYPE:
  6307. ret = AFE_SIDETONE_CAL;
  6308. break;
  6309. case AFE_SIDETONE_IIR_CAL_TYPE:
  6310. ret = AFE_SIDETONE_IIR_CAL;
  6311. break;
  6312. case AFE_TOPOLOGY_CAL_TYPE:
  6313. ret = AFE_TOPOLOGY_CAL;
  6314. break;
  6315. case AFE_LSM_TOPOLOGY_CAL_TYPE:
  6316. ret = AFE_LSM_TOPOLOGY_CAL;
  6317. break;
  6318. case AFE_CUST_TOPOLOGY_CAL_TYPE:
  6319. ret = AFE_CUST_TOPOLOGY_CAL;
  6320. break;
  6321. default:
  6322. pr_err("%s: invalid cal type %d!\n", __func__, cal_type);
  6323. }
  6324. return ret;
  6325. }
  6326. int afe_alloc_cal(int32_t cal_type, size_t data_size,
  6327. void *data)
  6328. {
  6329. int ret = 0;
  6330. int cal_index;
  6331. cal_index = get_cal_type_index(cal_type);
  6332. pr_debug("%s: cal_type = %d cal_index = %d\n",
  6333. __func__, cal_type, cal_index);
  6334. if (cal_index < 0) {
  6335. pr_err("%s: could not get cal index %d!\n",
  6336. __func__, cal_index);
  6337. ret = -EINVAL;
  6338. goto done;
  6339. }
  6340. ret = cal_utils_alloc_cal(data_size, data,
  6341. this_afe.cal_data[cal_index], 0, NULL);
  6342. if (ret < 0) {
  6343. pr_err("%s: cal_utils_alloc_block failed, ret = %d, cal type = %d!\n",
  6344. __func__, ret, cal_type);
  6345. ret = -EINVAL;
  6346. goto done;
  6347. }
  6348. done:
  6349. return ret;
  6350. }
  6351. static int afe_dealloc_cal(int32_t cal_type, size_t data_size,
  6352. void *data)
  6353. {
  6354. int ret = 0;
  6355. int cal_index;
  6356. pr_debug("%s:\n", __func__);
  6357. cal_index = get_cal_type_index(cal_type);
  6358. if (cal_index < 0) {
  6359. pr_err("%s: could not get cal index %d!\n",
  6360. __func__, cal_index);
  6361. ret = -EINVAL;
  6362. goto done;
  6363. }
  6364. ret = cal_utils_dealloc_cal(data_size, data,
  6365. this_afe.cal_data[cal_index]);
  6366. if (ret < 0) {
  6367. pr_err("%s: cal_utils_dealloc_block failed, ret = %d, cal type = %d!\n",
  6368. __func__, ret, cal_type);
  6369. ret = -EINVAL;
  6370. goto done;
  6371. }
  6372. done:
  6373. return ret;
  6374. }
  6375. static int afe_set_cal(int32_t cal_type, size_t data_size,
  6376. void *data)
  6377. {
  6378. int ret = 0;
  6379. int cal_index;
  6380. pr_debug("%s:\n", __func__);
  6381. cal_index = get_cal_type_index(cal_type);
  6382. if (cal_index < 0) {
  6383. pr_err("%s: could not get cal index %d!\n",
  6384. __func__, cal_index);
  6385. ret = -EINVAL;
  6386. goto done;
  6387. }
  6388. ret = cal_utils_set_cal(data_size, data,
  6389. this_afe.cal_data[cal_index], 0, NULL);
  6390. if (ret < 0) {
  6391. pr_err("%s: cal_utils_set_cal failed, ret = %d, cal type = %d!\n",
  6392. __func__, ret, cal_type);
  6393. ret = -EINVAL;
  6394. goto done;
  6395. }
  6396. if (cal_index == AFE_CUST_TOPOLOGY_CAL) {
  6397. mutex_lock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  6398. this_afe.set_custom_topology = 1;
  6399. pr_debug("%s:[AFE_CUSTOM_TOPOLOGY] ret = %d, cal type = %d!\n",
  6400. __func__, ret, cal_type);
  6401. mutex_unlock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  6402. }
  6403. done:
  6404. return ret;
  6405. }
  6406. static struct cal_block_data *afe_find_hw_delay_by_path(
  6407. struct cal_type_data *cal_type, int path)
  6408. {
  6409. struct list_head *ptr, *next;
  6410. struct cal_block_data *cal_block = NULL;
  6411. pr_debug("%s:\n", __func__);
  6412. list_for_each_safe(ptr, next,
  6413. &cal_type->cal_blocks) {
  6414. cal_block = list_entry(ptr,
  6415. struct cal_block_data, list);
  6416. if (((struct audio_cal_info_hw_delay *)cal_block->cal_info)
  6417. ->path == path) {
  6418. return cal_block;
  6419. }
  6420. }
  6421. return NULL;
  6422. }
  6423. static int afe_get_cal_hw_delay(int32_t path,
  6424. struct audio_cal_hw_delay_entry *entry)
  6425. {
  6426. int ret = 0;
  6427. int i;
  6428. struct cal_block_data *cal_block = NULL;
  6429. struct audio_cal_hw_delay_data *hw_delay_info = NULL;
  6430. pr_debug("%s:\n", __func__);
  6431. if (this_afe.cal_data[AFE_HW_DELAY_CAL] == NULL) {
  6432. pr_err("%s: AFE_HW_DELAY_CAL not initialized\n", __func__);
  6433. ret = -EINVAL;
  6434. goto done;
  6435. }
  6436. if (entry == NULL) {
  6437. pr_err("%s: entry is NULL\n", __func__);
  6438. ret = -EINVAL;
  6439. goto done;
  6440. }
  6441. if ((path >= MAX_PATH_TYPE) || (path < 0)) {
  6442. pr_err("%s: bad path: %d\n",
  6443. __func__, path);
  6444. ret = -EINVAL;
  6445. goto done;
  6446. }
  6447. mutex_lock(&this_afe.cal_data[AFE_HW_DELAY_CAL]->lock);
  6448. cal_block = afe_find_hw_delay_by_path(
  6449. this_afe.cal_data[AFE_HW_DELAY_CAL], path);
  6450. if (cal_block == NULL)
  6451. goto unlock;
  6452. hw_delay_info = &((struct audio_cal_info_hw_delay *)
  6453. cal_block->cal_info)->data;
  6454. if (hw_delay_info->num_entries > MAX_HW_DELAY_ENTRIES) {
  6455. pr_err("%s: invalid num entries: %d\n",
  6456. __func__, hw_delay_info->num_entries);
  6457. ret = -EINVAL;
  6458. goto unlock;
  6459. }
  6460. for (i = 0; i < hw_delay_info->num_entries; i++) {
  6461. if (hw_delay_info->entry[i].sample_rate ==
  6462. entry->sample_rate) {
  6463. entry->delay_usec = hw_delay_info->entry[i].delay_usec;
  6464. break;
  6465. }
  6466. }
  6467. if (i == hw_delay_info->num_entries) {
  6468. pr_err("%s: Unable to find delay for sample rate %d\n",
  6469. __func__, entry->sample_rate);
  6470. ret = -EFAULT;
  6471. goto unlock;
  6472. }
  6473. pr_debug("%s: Path = %d samplerate = %u usec = %u status %d\n",
  6474. __func__, path, entry->sample_rate, entry->delay_usec, ret);
  6475. unlock:
  6476. mutex_unlock(&this_afe.cal_data[AFE_HW_DELAY_CAL]->lock);
  6477. done:
  6478. return ret;
  6479. }
  6480. static int afe_set_cal_sp_th_vi_ftm_cfg(int32_t cal_type, size_t data_size,
  6481. void *data)
  6482. {
  6483. int ret = 0;
  6484. struct audio_cal_type_sp_th_vi_ftm_cfg *cal_data = data;
  6485. if (this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  6486. cal_data == NULL ||
  6487. data_size != sizeof(*cal_data))
  6488. goto done;
  6489. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  6490. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  6491. memcpy(&this_afe.th_ftm_cfg, &cal_data->cal_info,
  6492. sizeof(this_afe.th_ftm_cfg));
  6493. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  6494. done:
  6495. return ret;
  6496. }
  6497. static int afe_set_cal_sp_ex_vi_ftm_cfg(int32_t cal_type, size_t data_size,
  6498. void *data)
  6499. {
  6500. int ret = 0;
  6501. struct audio_cal_type_sp_ex_vi_ftm_cfg *cal_data = data;
  6502. if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL ||
  6503. cal_data == NULL ||
  6504. data_size != sizeof(*cal_data))
  6505. goto done;
  6506. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  6507. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  6508. memcpy(&this_afe.ex_ftm_cfg, &cal_data->cal_info,
  6509. sizeof(this_afe.ex_ftm_cfg));
  6510. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  6511. done:
  6512. return ret;
  6513. }
  6514. static int afe_set_cal_fb_spkr_prot(int32_t cal_type, size_t data_size,
  6515. void *data)
  6516. {
  6517. int ret = 0;
  6518. struct audio_cal_type_fb_spk_prot_cfg *cal_data = data;
  6519. pr_debug("%s:\n", __func__);
  6520. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  6521. goto done;
  6522. if (cal_data == NULL)
  6523. goto done;
  6524. if (data_size != sizeof(*cal_data))
  6525. goto done;
  6526. if (cal_data->cal_info.mode == MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS)
  6527. __pm_wakeup_event(&wl.ws, jiffies_to_msecs(WAKELOCK_TIMEOUT));
  6528. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  6529. memcpy(&this_afe.prot_cfg, &cal_data->cal_info,
  6530. sizeof(this_afe.prot_cfg));
  6531. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  6532. done:
  6533. return ret;
  6534. }
  6535. static int afe_get_cal_sp_th_vi_ftm_param(int32_t cal_type, size_t data_size,
  6536. void *data)
  6537. {
  6538. int i, ret = 0;
  6539. struct audio_cal_type_sp_th_vi_param *cal_data = data;
  6540. struct afe_sp_th_vi_get_param th_vi;
  6541. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  6542. if (this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  6543. cal_data == NULL ||
  6544. data_size != sizeof(*cal_data))
  6545. goto done;
  6546. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  6547. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  6548. cal_data->cal_info.status[i] = -EINVAL;
  6549. cal_data->cal_info.r_dc_q24[i] = -1;
  6550. cal_data->cal_info.temp_q22[i] = -1;
  6551. }
  6552. if (!afe_get_sp_th_vi_ftm_data(&th_vi)) {
  6553. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  6554. pr_debug("%s: ftm param status = %d\n",
  6555. __func__, th_vi.param.status[i]);
  6556. if (th_vi.param.status[i] == FBSP_IN_PROGRESS) {
  6557. cal_data->cal_info.status[i] = -EAGAIN;
  6558. } else if (th_vi.param.status[i] == FBSP_SUCCESS) {
  6559. cal_data->cal_info.status[i] = 0;
  6560. cal_data->cal_info.r_dc_q24[i] =
  6561. th_vi.param.dc_res_q24[i];
  6562. cal_data->cal_info.temp_q22[i] =
  6563. th_vi.param.temp_q22[i];
  6564. }
  6565. }
  6566. }
  6567. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  6568. done:
  6569. return ret;
  6570. }
  6571. static int afe_get_cal_sp_ex_vi_ftm_param(int32_t cal_type, size_t data_size,
  6572. void *data)
  6573. {
  6574. int i, ret = 0;
  6575. struct audio_cal_type_sp_ex_vi_param *cal_data = data;
  6576. struct afe_sp_ex_vi_get_param ex_vi;
  6577. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  6578. if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL ||
  6579. cal_data == NULL ||
  6580. data_size != sizeof(*cal_data))
  6581. goto done;
  6582. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  6583. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  6584. cal_data->cal_info.status[i] = -EINVAL;
  6585. cal_data->cal_info.freq_q20[i] = -1;
  6586. cal_data->cal_info.resis_q24[i] = -1;
  6587. cal_data->cal_info.qmct_q24[i] = -1;
  6588. }
  6589. if (!afe_get_sp_ex_vi_ftm_data(&ex_vi)) {
  6590. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  6591. pr_debug("%s: ftm param status = %d\n",
  6592. __func__, ex_vi.param.status[i]);
  6593. if (ex_vi.param.status[i] == FBSP_IN_PROGRESS) {
  6594. cal_data->cal_info.status[i] = -EAGAIN;
  6595. } else if (ex_vi.param.status[i] == FBSP_SUCCESS) {
  6596. cal_data->cal_info.status[i] = 0;
  6597. cal_data->cal_info.freq_q20[i] =
  6598. ex_vi.param.freq_q20[i];
  6599. cal_data->cal_info.resis_q24[i] =
  6600. ex_vi.param.resis_q24[i];
  6601. cal_data->cal_info.qmct_q24[i] =
  6602. ex_vi.param.qmct_q24[i];
  6603. }
  6604. }
  6605. }
  6606. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  6607. done:
  6608. return ret;
  6609. }
  6610. static int afe_get_cal_fb_spkr_prot(int32_t cal_type, size_t data_size,
  6611. void *data)
  6612. {
  6613. int ret = 0;
  6614. struct audio_cal_type_fb_spk_prot_status *cal_data = data;
  6615. struct afe_spkr_prot_get_vi_calib calib_resp;
  6616. pr_debug("%s:\n", __func__);
  6617. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  6618. goto done;
  6619. if (cal_data == NULL)
  6620. goto done;
  6621. if (data_size != sizeof(*cal_data))
  6622. goto done;
  6623. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  6624. if (this_afe.prot_cfg.mode == MSM_SPKR_PROT_CALIBRATED) {
  6625. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  6626. this_afe.prot_cfg.r0[SP_V2_SPKR_1];
  6627. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  6628. this_afe.prot_cfg.r0[SP_V2_SPKR_2];
  6629. cal_data->cal_info.status = 0;
  6630. } else if (this_afe.prot_cfg.mode ==
  6631. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS) {
  6632. /*Call AFE to query the status*/
  6633. cal_data->cal_info.status = -EINVAL;
  6634. cal_data->cal_info.r0[SP_V2_SPKR_1] = -1;
  6635. cal_data->cal_info.r0[SP_V2_SPKR_2] = -1;
  6636. if (!afe_spk_prot_get_calib_data(&calib_resp)) {
  6637. if (calib_resp.res_cfg.th_vi_ca_state ==
  6638. FBSP_IN_PROGRESS)
  6639. cal_data->cal_info.status = -EAGAIN;
  6640. else if (calib_resp.res_cfg.th_vi_ca_state ==
  6641. FBSP_SUCCESS) {
  6642. cal_data->cal_info.status = 0;
  6643. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  6644. calib_resp.res_cfg.r0_cali_q24[SP_V2_SPKR_1];
  6645. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  6646. calib_resp.res_cfg.r0_cali_q24[SP_V2_SPKR_2];
  6647. }
  6648. }
  6649. if (!cal_data->cal_info.status) {
  6650. this_afe.prot_cfg.mode =
  6651. MSM_SPKR_PROT_CALIBRATED;
  6652. this_afe.prot_cfg.r0[SP_V2_SPKR_1] =
  6653. cal_data->cal_info.r0[SP_V2_SPKR_1];
  6654. this_afe.prot_cfg.r0[SP_V2_SPKR_2] =
  6655. cal_data->cal_info.r0[SP_V2_SPKR_2];
  6656. }
  6657. } else {
  6658. /*Indicates calibration data is invalid*/
  6659. cal_data->cal_info.status = -EINVAL;
  6660. cal_data->cal_info.r0[SP_V2_SPKR_1] = -1;
  6661. cal_data->cal_info.r0[SP_V2_SPKR_2] = -1;
  6662. }
  6663. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  6664. __pm_relax(&wl.ws);
  6665. done:
  6666. return ret;
  6667. }
  6668. static int afe_map_cal_data(int32_t cal_type,
  6669. struct cal_block_data *cal_block)
  6670. {
  6671. int ret = 0;
  6672. int cal_index;
  6673. pr_debug("%s:\n", __func__);
  6674. cal_index = get_cal_type_index(cal_type);
  6675. if (cal_index < 0) {
  6676. pr_err("%s: could not get cal index %d!\n",
  6677. __func__, cal_index);
  6678. ret = -EINVAL;
  6679. goto done;
  6680. }
  6681. mutex_lock(&this_afe.afe_cmd_lock);
  6682. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  6683. ret = afe_cmd_memory_map(cal_block->cal_data.paddr,
  6684. cal_block->map_data.map_size);
  6685. atomic_set(&this_afe.mem_map_cal_index, -1);
  6686. if (ret < 0) {
  6687. pr_err("%s: mmap did not work! size = %zd ret %d\n",
  6688. __func__,
  6689. cal_block->map_data.map_size, ret);
  6690. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %zd\n",
  6691. __func__,
  6692. &cal_block->cal_data.paddr,
  6693. cal_block->map_data.map_size);
  6694. mutex_unlock(&this_afe.afe_cmd_lock);
  6695. goto done;
  6696. }
  6697. cal_block->map_data.q6map_handle = atomic_read(&this_afe.
  6698. mem_map_cal_handles[cal_index]);
  6699. mutex_unlock(&this_afe.afe_cmd_lock);
  6700. done:
  6701. return ret;
  6702. }
  6703. static int afe_unmap_cal_data(int32_t cal_type,
  6704. struct cal_block_data *cal_block)
  6705. {
  6706. int ret = 0;
  6707. int cal_index;
  6708. pr_debug("%s:\n", __func__);
  6709. cal_index = get_cal_type_index(cal_type);
  6710. if (cal_index < 0) {
  6711. pr_err("%s: could not get cal index %d!\n",
  6712. __func__, cal_index);
  6713. ret = -EINVAL;
  6714. goto done;
  6715. }
  6716. if (cal_block == NULL) {
  6717. pr_err("%s: Cal block is NULL!\n",
  6718. __func__);
  6719. goto done;
  6720. }
  6721. if (cal_block->map_data.q6map_handle == 0) {
  6722. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  6723. __func__);
  6724. goto done;
  6725. }
  6726. atomic_set(&this_afe.mem_map_cal_handles[cal_index],
  6727. cal_block->map_data.q6map_handle);
  6728. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  6729. ret = afe_cmd_memory_unmap_nowait(
  6730. cal_block->map_data.q6map_handle);
  6731. atomic_set(&this_afe.mem_map_cal_index, -1);
  6732. if (ret < 0) {
  6733. pr_err("%s: unmap did not work! cal_type %i ret %d\n",
  6734. __func__, cal_index, ret);
  6735. }
  6736. cal_block->map_data.q6map_handle = 0;
  6737. done:
  6738. return ret;
  6739. }
  6740. static void afe_delete_cal_data(void)
  6741. {
  6742. pr_debug("%s:\n", __func__);
  6743. cal_utils_destroy_cal_types(MAX_AFE_CAL_TYPES, this_afe.cal_data);
  6744. }
  6745. static int afe_init_cal_data(void)
  6746. {
  6747. int ret = 0;
  6748. struct cal_type_info cal_type_info[] = {
  6749. {{AFE_COMMON_RX_CAL_TYPE,
  6750. {afe_alloc_cal, afe_dealloc_cal, NULL,
  6751. afe_set_cal, NULL, NULL} },
  6752. {afe_map_cal_data, afe_unmap_cal_data,
  6753. cal_utils_match_buf_num} },
  6754. {{AFE_COMMON_TX_CAL_TYPE,
  6755. {afe_alloc_cal, afe_dealloc_cal, NULL,
  6756. afe_set_cal, NULL, NULL} },
  6757. {afe_map_cal_data, afe_unmap_cal_data,
  6758. cal_utils_match_buf_num} },
  6759. {{AFE_LSM_TX_CAL_TYPE,
  6760. {afe_alloc_cal, afe_dealloc_cal, NULL,
  6761. afe_set_cal, NULL, NULL} },
  6762. {afe_map_cal_data, afe_unmap_cal_data,
  6763. cal_utils_match_buf_num} },
  6764. {{AFE_AANC_CAL_TYPE,
  6765. {afe_alloc_cal, afe_dealloc_cal, NULL,
  6766. afe_set_cal, NULL, NULL} },
  6767. {afe_map_cal_data, afe_unmap_cal_data,
  6768. cal_utils_match_buf_num} },
  6769. {{AFE_FB_SPKR_PROT_CAL_TYPE,
  6770. {NULL, NULL, NULL, afe_set_cal_fb_spkr_prot,
  6771. afe_get_cal_fb_spkr_prot, NULL} },
  6772. {NULL, NULL, cal_utils_match_buf_num} },
  6773. {{AFE_HW_DELAY_CAL_TYPE,
  6774. {NULL, NULL, NULL,
  6775. afe_set_cal, NULL, NULL} },
  6776. {NULL, NULL, cal_utils_match_buf_num} },
  6777. {{AFE_SIDETONE_CAL_TYPE,
  6778. {NULL, NULL, NULL,
  6779. afe_set_cal, NULL, NULL} },
  6780. {NULL, NULL, cal_utils_match_buf_num} },
  6781. {{AFE_SIDETONE_IIR_CAL_TYPE,
  6782. {NULL, NULL, NULL,
  6783. afe_set_cal, NULL, NULL} },
  6784. {NULL, NULL, cal_utils_match_buf_num} },
  6785. {{AFE_TOPOLOGY_CAL_TYPE,
  6786. {NULL, NULL, NULL,
  6787. afe_set_cal, NULL, NULL} },
  6788. {NULL, NULL,
  6789. cal_utils_match_buf_num} },
  6790. {{AFE_LSM_TOPOLOGY_CAL_TYPE,
  6791. {NULL, NULL, NULL,
  6792. afe_set_cal, NULL, NULL} },
  6793. {NULL, NULL,
  6794. cal_utils_match_buf_num} },
  6795. {{AFE_CUST_TOPOLOGY_CAL_TYPE,
  6796. {afe_alloc_cal, afe_dealloc_cal, NULL,
  6797. afe_set_cal, NULL, NULL} },
  6798. {afe_map_cal_data, afe_unmap_cal_data,
  6799. cal_utils_match_buf_num} },
  6800. {{AFE_FB_SPKR_PROT_TH_VI_CAL_TYPE,
  6801. {NULL, NULL, NULL, afe_set_cal_sp_th_vi_ftm_cfg,
  6802. afe_get_cal_sp_th_vi_ftm_param, NULL} },
  6803. {NULL, NULL, cal_utils_match_buf_num} },
  6804. {{AFE_FB_SPKR_PROT_EX_VI_CAL_TYPE,
  6805. {NULL, NULL, NULL, afe_set_cal_sp_ex_vi_ftm_cfg,
  6806. afe_get_cal_sp_ex_vi_ftm_param, NULL} },
  6807. {NULL, NULL, cal_utils_match_buf_num} },
  6808. };
  6809. pr_debug("%s:\n", __func__);
  6810. ret = cal_utils_create_cal_types(MAX_AFE_CAL_TYPES, this_afe.cal_data,
  6811. cal_type_info);
  6812. if (ret < 0) {
  6813. pr_err("%s: could not create cal type! %d\n",
  6814. __func__, ret);
  6815. ret = -EINVAL;
  6816. goto err;
  6817. }
  6818. return ret;
  6819. err:
  6820. afe_delete_cal_data();
  6821. return ret;
  6822. }
  6823. int afe_map_rtac_block(struct rtac_cal_block_data *cal_block)
  6824. {
  6825. int result = 0;
  6826. pr_debug("%s:\n", __func__);
  6827. if (cal_block == NULL) {
  6828. pr_err("%s: cal_block is NULL!\n",
  6829. __func__);
  6830. result = -EINVAL;
  6831. goto done;
  6832. }
  6833. if (cal_block->cal_data.paddr == 0) {
  6834. pr_debug("%s: No address to map!\n",
  6835. __func__);
  6836. result = -EINVAL;
  6837. goto done;
  6838. }
  6839. if (cal_block->map_data.map_size == 0) {
  6840. pr_debug("%s: map size is 0!\n",
  6841. __func__);
  6842. result = -EINVAL;
  6843. goto done;
  6844. }
  6845. result = afe_cmd_memory_map(cal_block->cal_data.paddr,
  6846. cal_block->map_data.map_size);
  6847. if (result < 0) {
  6848. pr_err("%s: afe_cmd_memory_map failed for addr = 0x%pK, size = %d, err %d\n",
  6849. __func__, &cal_block->cal_data.paddr,
  6850. cal_block->map_data.map_size, result);
  6851. return result;
  6852. }
  6853. cal_block->map_data.map_handle = this_afe.mmap_handle;
  6854. done:
  6855. return result;
  6856. }
  6857. int afe_unmap_rtac_block(uint32_t *mem_map_handle)
  6858. {
  6859. int result = 0;
  6860. pr_debug("%s:\n", __func__);
  6861. if (mem_map_handle == NULL) {
  6862. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  6863. __func__);
  6864. goto done;
  6865. }
  6866. if (*mem_map_handle == 0) {
  6867. pr_debug("%s: Map handle is 0, nothing to unmap\n",
  6868. __func__);
  6869. goto done;
  6870. }
  6871. result = afe_cmd_memory_unmap(*mem_map_handle);
  6872. if (result) {
  6873. pr_err("%s: AFE memory unmap failed %d, handle 0x%x\n",
  6874. __func__, result, *mem_map_handle);
  6875. goto done;
  6876. } else {
  6877. *mem_map_handle = 0;
  6878. }
  6879. done:
  6880. return result;
  6881. }
  6882. int __init afe_init(void)
  6883. {
  6884. int i = 0, ret;
  6885. atomic_set(&this_afe.state, 0);
  6886. atomic_set(&this_afe.status, 0);
  6887. atomic_set(&this_afe.mem_map_cal_index, -1);
  6888. this_afe.apr = NULL;
  6889. this_afe.dtmf_gen_rx_portid = -1;
  6890. this_afe.mmap_handle = 0;
  6891. this_afe.vi_tx_port = -1;
  6892. this_afe.vi_rx_port = -1;
  6893. this_afe.prot_cfg.mode = MSM_SPKR_PROT_DISABLED;
  6894. this_afe.th_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  6895. this_afe.ex_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  6896. mutex_init(&this_afe.afe_cmd_lock);
  6897. for (i = 0; i < AFE_MAX_PORTS; i++) {
  6898. this_afe.afe_cal_mode[i] = AFE_CAL_MODE_DEFAULT;
  6899. this_afe.afe_sample_rates[i] = 0;
  6900. this_afe.dev_acdb_id[i] = 0;
  6901. init_waitqueue_head(&this_afe.wait[i]);
  6902. }
  6903. wakeup_source_init(&wl.ws, "spkr-prot");
  6904. ret = afe_init_cal_data();
  6905. if (ret)
  6906. pr_err("%s: could not init cal data! %d\n", __func__, ret);
  6907. config_debug_fs_init();
  6908. return 0;
  6909. }
  6910. void afe_exit(void)
  6911. {
  6912. if (this_afe.apr) {
  6913. apr_reset(this_afe.apr);
  6914. atomic_set(&this_afe.state, 0);
  6915. this_afe.apr = NULL;
  6916. rtac_set_afe_handle(this_afe.apr);
  6917. }
  6918. afe_delete_cal_data();
  6919. config_debug_fs_exit();
  6920. mutex_destroy(&this_afe.afe_cmd_lock);
  6921. wakeup_source_trash(&wl.ws);
  6922. }