q6afe.c 215 KB

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