q6asm.c 299 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2012-2019, The Linux Foundation. All rights reserved.
  4. * Author: Brian Swetland <[email protected]>
  5. *
  6. * This software is licensed under the terms of the GNU General Public
  7. * License version 2, as published by the Free Software Foundation, and
  8. * may be copied, distributed, and modified under those terms.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. */
  16. #include <linux/fs.h>
  17. #include <linux/mutex.h>
  18. #include <linux/wait.h>
  19. #include <linux/miscdevice.h>
  20. #include <linux/uaccess.h>
  21. #include <linux/sched.h>
  22. #include <linux/dma-mapping.h>
  23. #include <linux/miscdevice.h>
  24. #include <linux/delay.h>
  25. #include <linux/slab.h>
  26. #include <linux/debugfs.h>
  27. #include <linux/time.h>
  28. #include <linux/atomic.h>
  29. #include <linux/mm.h>
  30. #include <asm/ioctls.h>
  31. #include <linux/memory.h>
  32. #include <sound/compress_params.h>
  33. #include <dsp/msm_audio_ion.h>
  34. #include <dsp/apr_audio-v2.h>
  35. #include <dsp/audio_cal_utils.h>
  36. #include <dsp/q6asm-v2.h>
  37. #include <dsp/q6audio-v2.h>
  38. #include <dsp/q6common.h>
  39. #include <dsp/q6core.h>
  40. #include "adsp_err.h"
  41. #define TIMEOUT_MS 1000
  42. #define TRUE 0x01
  43. #define FALSE 0x00
  44. #define SESSION_MAX 8
  45. #define ENC_FRAMES_PER_BUFFER 0x01
  46. enum {
  47. ASM_TOPOLOGY_CAL = 0,
  48. ASM_CUSTOM_TOP_CAL,
  49. ASM_AUDSTRM_CAL,
  50. ASM_RTAC_APR_CAL,
  51. ASM_MAX_CAL_TYPES
  52. };
  53. union asm_token_struct {
  54. struct {
  55. u8 stream_id;
  56. u8 session_id;
  57. u8 buf_index;
  58. u8 flags;
  59. } _token;
  60. u32 token;
  61. } __packed;
  62. enum {
  63. ASM_DIRECTION_OFFSET,
  64. ASM_CMD_NO_WAIT_OFFSET,
  65. /*
  66. * Offset is limited to 7 because flags is stored in u8
  67. * field in asm_token_structure defined above. The offset
  68. * starts from 0.
  69. */
  70. ASM_MAX_OFFSET = 7,
  71. };
  72. enum {
  73. WAIT_CMD,
  74. NO_WAIT_CMD
  75. };
  76. #define ASM_SET_BIT(n, x) (n |= 1 << x)
  77. #define ASM_TEST_BIT(n, x) ((n >> x) & 1)
  78. /* TODO, combine them together */
  79. static DEFINE_MUTEX(session_lock);
  80. struct asm_mmap {
  81. atomic_t ref_cnt;
  82. void *apr;
  83. };
  84. static struct asm_mmap this_mmap;
  85. struct audio_session {
  86. struct audio_client *ac;
  87. spinlock_t session_lock;
  88. struct mutex mutex_lock_per_session;
  89. };
  90. /* session id: 0 reserved */
  91. static struct audio_session session[ASM_ACTIVE_STREAMS_ALLOWED + 1];
  92. struct asm_buffer_node {
  93. struct list_head list;
  94. phys_addr_t buf_phys_addr;
  95. uint32_t mmap_hdl;
  96. };
  97. static int32_t q6asm_srvc_callback(struct apr_client_data *data, void *priv);
  98. static int32_t q6asm_callback(struct apr_client_data *data, void *priv);
  99. static void q6asm_add_hdr(struct audio_client *ac, struct apr_hdr *hdr,
  100. uint32_t pkt_size, uint32_t cmd_flg);
  101. static void q6asm_add_hdr_custom_topology(struct audio_client *ac,
  102. struct apr_hdr *hdr,
  103. uint32_t pkt_size);
  104. static void q6asm_add_hdr_async(struct audio_client *ac, struct apr_hdr *hdr,
  105. uint32_t pkt_size, uint32_t cmd_flg);
  106. static int q6asm_memory_map_regions(struct audio_client *ac, int dir,
  107. uint32_t bufsz, uint32_t bufcnt,
  108. bool is_contiguous);
  109. static int q6asm_memory_unmap_regions(struct audio_client *ac, int dir);
  110. static void q6asm_reset_buf_state(struct audio_client *ac);
  111. void *q6asm_mmap_apr_reg(void);
  112. static int q6asm_is_valid_session(struct apr_client_data *data, void *priv);
  113. static int q6asm_get_asm_topology_apptype(struct q6asm_cal_info *cal_info);
  114. /* for ASM custom topology */
  115. static struct cal_type_data *cal_data[ASM_MAX_CAL_TYPES];
  116. static struct audio_buffer common_buf[2];
  117. static struct audio_client common_client;
  118. static int set_custom_topology;
  119. static int topology_map_handle;
  120. struct generic_get_data_ {
  121. int valid;
  122. int is_inband;
  123. int size_in_ints;
  124. int ints[];
  125. };
  126. static struct generic_get_data_ *generic_get_data;
  127. #ifdef CONFIG_DEBUG_FS
  128. #define OUT_BUFFER_SIZE 56
  129. #define IN_BUFFER_SIZE 24
  130. static struct timeval out_cold_tv;
  131. static struct timeval out_warm_tv;
  132. static struct timeval out_cont_tv;
  133. static struct timeval in_cont_tv;
  134. static long out_enable_flag;
  135. static long in_enable_flag;
  136. static struct dentry *out_dentry;
  137. static struct dentry *in_dentry;
  138. static int in_cont_index;
  139. /*This var is used to keep track of first write done for cold output latency */
  140. static int out_cold_index;
  141. static char *out_buffer;
  142. static char *in_buffer;
  143. static uint32_t adsp_reg_event_opcode[] = {
  144. ASM_STREAM_CMD_REGISTER_PP_EVENTS,
  145. ASM_STREAM_CMD_REGISTER_ENCDEC_EVENTS,
  146. ASM_STREAM_CMD_REGISTER_IEC_61937_FMT_UPDATE };
  147. static uint32_t adsp_raise_event_opcode[] = {
  148. ASM_STREAM_PP_EVENT,
  149. ASM_STREAM_CMD_ENCDEC_EVENTS,
  150. ASM_IEC_61937_MEDIA_FMT_EVENT };
  151. static int is_adsp_reg_event(uint32_t cmd)
  152. {
  153. int i;
  154. for (i = 0; i < ARRAY_SIZE(adsp_reg_event_opcode); i++) {
  155. if (cmd == adsp_reg_event_opcode[i])
  156. return i;
  157. }
  158. return -EINVAL;
  159. }
  160. static int is_adsp_raise_event(uint32_t cmd)
  161. {
  162. int i;
  163. for (i = 0; i < ARRAY_SIZE(adsp_raise_event_opcode); i++) {
  164. if (cmd == adsp_raise_event_opcode[i])
  165. return i;
  166. }
  167. return -EINVAL;
  168. }
  169. static inline void q6asm_set_flag_in_token(union asm_token_struct *asm_token,
  170. int flag, int flag_offset)
  171. {
  172. if (flag)
  173. ASM_SET_BIT(asm_token->_token.flags, flag_offset);
  174. }
  175. static inline int q6asm_get_flag_from_token(union asm_token_struct *asm_token,
  176. int flag_offset)
  177. {
  178. return ASM_TEST_BIT(asm_token->_token.flags, flag_offset);
  179. }
  180. static inline void q6asm_update_token(u32 *token, u8 session_id, u8 stream_id,
  181. u8 buf_index, u8 dir, u8 nowait_flag)
  182. {
  183. union asm_token_struct asm_token;
  184. asm_token.token = 0;
  185. asm_token._token.session_id = session_id;
  186. asm_token._token.stream_id = stream_id;
  187. asm_token._token.buf_index = buf_index;
  188. q6asm_set_flag_in_token(&asm_token, dir, ASM_DIRECTION_OFFSET);
  189. q6asm_set_flag_in_token(&asm_token, nowait_flag,
  190. ASM_CMD_NO_WAIT_OFFSET);
  191. *token = asm_token.token;
  192. }
  193. static inline uint32_t q6asm_get_pcm_format_id(uint32_t media_format_block_ver)
  194. {
  195. uint32_t pcm_format_id;
  196. switch (media_format_block_ver) {
  197. case PCM_MEDIA_FORMAT_V5:
  198. pcm_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V5;
  199. break;
  200. case PCM_MEDIA_FORMAT_V4:
  201. pcm_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V4;
  202. break;
  203. case PCM_MEDIA_FORMAT_V3:
  204. pcm_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V3;
  205. break;
  206. case PCM_MEDIA_FORMAT_V2:
  207. default:
  208. pcm_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V2;
  209. break;
  210. }
  211. return pcm_format_id;
  212. }
  213. /*
  214. * q6asm_get_buf_index_from_token:
  215. * Retrieve buffer index from token.
  216. *
  217. * @token: token value sent to ASM service on q6.
  218. * Returns buffer index in the read/write commands.
  219. */
  220. uint8_t q6asm_get_buf_index_from_token(uint32_t token)
  221. {
  222. union asm_token_struct asm_token;
  223. asm_token.token = token;
  224. return asm_token._token.buf_index;
  225. }
  226. EXPORT_SYMBOL(q6asm_get_buf_index_from_token);
  227. /*
  228. * q6asm_get_stream_id_from_token:
  229. * Retrieve stream id from token.
  230. *
  231. * @token: token value sent to ASM service on q6.
  232. * Returns stream id.
  233. */
  234. uint8_t q6asm_get_stream_id_from_token(uint32_t token)
  235. {
  236. union asm_token_struct asm_token;
  237. asm_token.token = token;
  238. return asm_token._token.stream_id;
  239. }
  240. EXPORT_SYMBOL(q6asm_get_stream_id_from_token);
  241. static int audio_output_latency_dbgfs_open(struct inode *inode,
  242. struct file *file)
  243. {
  244. file->private_data = inode->i_private;
  245. return 0;
  246. }
  247. static ssize_t audio_output_latency_dbgfs_read(struct file *file,
  248. char __user *buf, size_t count, loff_t *ppos)
  249. {
  250. if (out_buffer == NULL) {
  251. pr_err("%s: out_buffer is null\n", __func__);
  252. return 0;
  253. }
  254. if (count < OUT_BUFFER_SIZE) {
  255. pr_err("%s: read size %d exceeds buf size %zd\n", __func__,
  256. OUT_BUFFER_SIZE, count);
  257. return 0;
  258. }
  259. snprintf(out_buffer, OUT_BUFFER_SIZE, "%ld,%ld,%ld,%ld,%ld,%ld,",
  260. out_cold_tv.tv_sec, out_cold_tv.tv_usec, out_warm_tv.tv_sec,
  261. out_warm_tv.tv_usec, out_cont_tv.tv_sec, out_cont_tv.tv_usec);
  262. return simple_read_from_buffer(buf, OUT_BUFFER_SIZE, ppos,
  263. out_buffer, OUT_BUFFER_SIZE);
  264. }
  265. static ssize_t audio_output_latency_dbgfs_write(struct file *file,
  266. const char __user *buf, size_t count, loff_t *ppos)
  267. {
  268. char *temp;
  269. if (count > 2*sizeof(char)) {
  270. pr_err("%s: err count is more %zd\n", __func__, count);
  271. return -EINVAL;
  272. }
  273. temp = kmalloc(2*sizeof(char), GFP_KERNEL);
  274. out_cold_index = 0;
  275. if (temp) {
  276. if (copy_from_user(temp, buf, 2*sizeof(char))) {
  277. pr_err("%s: copy from user failed for size %zd\n",
  278. __func__, 2*sizeof(char));
  279. kfree(temp);
  280. return -EFAULT;
  281. }
  282. if (!kstrtol(temp, 10, &out_enable_flag)) {
  283. kfree(temp);
  284. return count;
  285. }
  286. kfree(temp);
  287. }
  288. return -EINVAL;
  289. }
  290. static const struct file_operations audio_output_latency_debug_fops = {
  291. .open = audio_output_latency_dbgfs_open,
  292. .read = audio_output_latency_dbgfs_read,
  293. .write = audio_output_latency_dbgfs_write
  294. };
  295. static int audio_input_latency_dbgfs_open(struct inode *inode,
  296. struct file *file)
  297. {
  298. file->private_data = inode->i_private;
  299. return 0;
  300. }
  301. static ssize_t audio_input_latency_dbgfs_read(struct file *file,
  302. char __user *buf, size_t count, loff_t *ppos)
  303. {
  304. if (in_buffer == NULL) {
  305. pr_err("%s: in_buffer is null\n", __func__);
  306. return 0;
  307. }
  308. if (count < IN_BUFFER_SIZE) {
  309. pr_err("%s: read size %d exceeds buf size %zd\n", __func__,
  310. IN_BUFFER_SIZE, count);
  311. return 0;
  312. }
  313. snprintf(in_buffer, IN_BUFFER_SIZE, "%ld,%ld,",
  314. in_cont_tv.tv_sec, in_cont_tv.tv_usec);
  315. return simple_read_from_buffer(buf, IN_BUFFER_SIZE, ppos,
  316. in_buffer, IN_BUFFER_SIZE);
  317. }
  318. static ssize_t audio_input_latency_dbgfs_write(struct file *file,
  319. const char __user *buf, size_t count, loff_t *ppos)
  320. {
  321. char *temp;
  322. if (count > 2*sizeof(char)) {
  323. pr_err("%s: err count is more %zd\n", __func__, count);
  324. return -EINVAL;
  325. }
  326. temp = kmalloc(2*sizeof(char), GFP_KERNEL);
  327. if (temp) {
  328. if (copy_from_user(temp, buf, 2*sizeof(char))) {
  329. pr_err("%s: copy from user failed for size %zd\n",
  330. __func__, 2*sizeof(char));
  331. kfree(temp);
  332. return -EFAULT;
  333. }
  334. if (!kstrtol(temp, 10, &in_enable_flag)) {
  335. kfree(temp);
  336. return count;
  337. }
  338. kfree(temp);
  339. }
  340. return -EINVAL;
  341. }
  342. static const struct file_operations audio_input_latency_debug_fops = {
  343. .open = audio_input_latency_dbgfs_open,
  344. .read = audio_input_latency_dbgfs_read,
  345. .write = audio_input_latency_dbgfs_write
  346. };
  347. static void config_debug_fs_write_cb(void)
  348. {
  349. if (out_enable_flag) {
  350. /* For first Write done log the time and reset
  351. * out_cold_index
  352. */
  353. if (out_cold_index != 1) {
  354. do_gettimeofday(&out_cold_tv);
  355. pr_debug("COLD: apr_send_pkt at %ld sec %ld microsec\n",
  356. out_cold_tv.tv_sec,
  357. out_cold_tv.tv_usec);
  358. out_cold_index = 1;
  359. }
  360. pr_debug("%s: out_enable_flag %ld\n",
  361. __func__, out_enable_flag);
  362. }
  363. }
  364. static void config_debug_fs_read_cb(void)
  365. {
  366. if (in_enable_flag) {
  367. /* when in_cont_index == 7, DSP would be
  368. * writing into the 8th 512 byte buffer and this
  369. * timestamp is tapped here.Once done it then writes
  370. * to 9th 512 byte buffer.These two buffers(8th, 9th)
  371. * reach the test application in 5th iteration and that
  372. * timestamp is tapped at user level. The difference
  373. * of these two timestamps gives us the time between
  374. * the time at which dsp started filling the sample
  375. * required and when it reached the test application.
  376. * Hence continuous input latency
  377. */
  378. if (in_cont_index == 7) {
  379. do_gettimeofday(&in_cont_tv);
  380. pr_info("%s: read buffer at %ld sec %ld microsec\n",
  381. __func__,
  382. in_cont_tv.tv_sec, in_cont_tv.tv_usec);
  383. }
  384. in_cont_index++;
  385. }
  386. }
  387. static void config_debug_fs_reset_index(void)
  388. {
  389. in_cont_index = 0;
  390. }
  391. static void config_debug_fs_run(void)
  392. {
  393. if (out_enable_flag) {
  394. do_gettimeofday(&out_cold_tv);
  395. pr_debug("%s: COLD apr_send_pkt at %ld sec %ld microsec\n",
  396. __func__, out_cold_tv.tv_sec, out_cold_tv.tv_usec);
  397. }
  398. }
  399. static void config_debug_fs_write(struct audio_buffer *ab)
  400. {
  401. if (out_enable_flag) {
  402. char zero_pattern[2] = {0x00, 0x00};
  403. /* If First two byte is non zero and last two byte
  404. * is zero then it is warm output pattern
  405. */
  406. if ((strcmp(((char *)ab->data), zero_pattern)) &&
  407. (!strcmp(((char *)ab->data + 2), zero_pattern))) {
  408. do_gettimeofday(&out_warm_tv);
  409. pr_debug("%s: WARM:apr_send_pkt at %ld sec %ld microsec\n",
  410. __func__,
  411. out_warm_tv.tv_sec,
  412. out_warm_tv.tv_usec);
  413. pr_debug("%s: Warm Pattern Matched\n", __func__);
  414. }
  415. /* If First two byte is zero and last two byte is
  416. * non zero then it is cont output pattern
  417. */
  418. else if ((!strcmp(((char *)ab->data), zero_pattern))
  419. && (strcmp(((char *)ab->data + 2), zero_pattern))) {
  420. do_gettimeofday(&out_cont_tv);
  421. pr_debug("%s: CONT:apr_send_pkt at %ld sec %ld microsec\n",
  422. __func__,
  423. out_cont_tv.tv_sec,
  424. out_cont_tv.tv_usec);
  425. pr_debug("%s: Cont Pattern Matched\n", __func__);
  426. }
  427. }
  428. }
  429. static void config_debug_fs_init(void)
  430. {
  431. out_buffer = kzalloc(OUT_BUFFER_SIZE, GFP_KERNEL);
  432. if (out_buffer == NULL)
  433. goto outbuf_fail;
  434. in_buffer = kzalloc(IN_BUFFER_SIZE, GFP_KERNEL);
  435. if (in_buffer == NULL)
  436. goto inbuf_fail;
  437. out_dentry = debugfs_create_file("audio_out_latency_measurement_node",
  438. 0664,
  439. NULL, NULL, &audio_output_latency_debug_fops);
  440. if (IS_ERR(out_dentry)) {
  441. pr_err("%s: debugfs_create_file failed\n", __func__);
  442. goto file_fail;
  443. }
  444. in_dentry = debugfs_create_file("audio_in_latency_measurement_node",
  445. 0664,
  446. NULL, NULL, &audio_input_latency_debug_fops);
  447. if (IS_ERR(in_dentry)) {
  448. pr_err("%s: debugfs_create_file failed\n", __func__);
  449. goto file_fail;
  450. }
  451. return;
  452. file_fail:
  453. kfree(in_buffer);
  454. inbuf_fail:
  455. kfree(out_buffer);
  456. outbuf_fail:
  457. in_buffer = NULL;
  458. out_buffer = NULL;
  459. }
  460. #else
  461. static void config_debug_fs_write(struct audio_buffer *ab)
  462. {
  463. }
  464. static void config_debug_fs_run(void)
  465. {
  466. }
  467. static void config_debug_fs_reset_index(void)
  468. {
  469. }
  470. static void config_debug_fs_read_cb(void)
  471. {
  472. }
  473. static void config_debug_fs_write_cb(void)
  474. {
  475. }
  476. static void config_debug_fs_init(void)
  477. {
  478. }
  479. #endif
  480. int q6asm_mmap_apr_dereg(void)
  481. {
  482. int c;
  483. c = atomic_sub_return(1, &this_mmap.ref_cnt);
  484. if (c == 0) {
  485. apr_deregister(this_mmap.apr);
  486. common_client.mmap_apr = NULL;
  487. pr_debug("%s: APR De-Register common port\n", __func__);
  488. } else if (c < 0) {
  489. pr_err("%s: APR Common Port Already Closed %d\n",
  490. __func__, c);
  491. atomic_set(&this_mmap.ref_cnt, 0);
  492. }
  493. return 0;
  494. }
  495. static int q6asm_session_alloc(struct audio_client *ac)
  496. {
  497. int n;
  498. for (n = 1; n <= ASM_ACTIVE_STREAMS_ALLOWED; n++) {
  499. if (!(session[n].ac)) {
  500. session[n].ac = ac;
  501. return n;
  502. }
  503. }
  504. pr_err("%s: session not available\n", __func__);
  505. return -ENOMEM;
  506. }
  507. static int q6asm_get_session_id_from_audio_client(struct audio_client *ac)
  508. {
  509. int n;
  510. for (n = 1; n <= ASM_ACTIVE_STREAMS_ALLOWED; n++) {
  511. if (session[n].ac == ac)
  512. return n;
  513. }
  514. pr_debug("%s: cannot find matching audio client. ac = %pK\n",
  515. __func__, ac);
  516. return 0;
  517. }
  518. static bool q6asm_is_valid_audio_client(struct audio_client *ac)
  519. {
  520. return q6asm_get_session_id_from_audio_client(ac) ? 1 : 0;
  521. }
  522. static void q6asm_session_free(struct audio_client *ac)
  523. {
  524. int session_id;
  525. unsigned long flags = 0;
  526. pr_debug("%s: sessionid[%d]\n", __func__, ac->session);
  527. session_id = ac->session;
  528. mutex_lock(&session[session_id].mutex_lock_per_session);
  529. rtac_remove_popp_from_adm_devices(ac->session);
  530. spin_lock_irqsave(&(session[session_id].session_lock), flags);
  531. session[ac->session].ac = NULL;
  532. ac->session = 0;
  533. ac->perf_mode = LEGACY_PCM_MODE;
  534. ac->fptr_cache_ops = NULL;
  535. ac->cb = NULL;
  536. ac->priv = NULL;
  537. kfree(ac);
  538. ac = NULL;
  539. spin_unlock_irqrestore(&(session[session_id].session_lock), flags);
  540. mutex_unlock(&session[session_id].mutex_lock_per_session);
  541. }
  542. static uint32_t q6asm_get_next_buf(struct audio_client *ac,
  543. uint32_t curr_buf, uint32_t max_buf_cnt)
  544. {
  545. dev_vdbg(ac->dev, "%s: curr_buf = %d, max_buf_cnt = %d\n",
  546. __func__, curr_buf, max_buf_cnt);
  547. curr_buf += 1;
  548. return (curr_buf >= max_buf_cnt) ? 0 : curr_buf;
  549. }
  550. static int q6asm_map_cal_memory(int32_t cal_type,
  551. struct cal_block_data *cal_block)
  552. {
  553. int result = 0;
  554. struct asm_buffer_node *buf_node = NULL;
  555. struct list_head *ptr, *next;
  556. if (cal_block == NULL) {
  557. pr_err("%s: cal_block is NULL!\n",
  558. __func__);
  559. goto done;
  560. }
  561. if (cal_block->cal_data.paddr == 0) {
  562. pr_debug("%s: No address to map!\n",
  563. __func__);
  564. goto done;
  565. }
  566. common_client.mmap_apr = q6asm_mmap_apr_reg();
  567. if (common_client.mmap_apr == NULL) {
  568. pr_err("%s: q6asm_mmap_apr_reg failed\n",
  569. __func__);
  570. result = -EPERM;
  571. goto done;
  572. }
  573. common_client.apr = common_client.mmap_apr;
  574. if (cal_block->map_data.map_size == 0) {
  575. pr_debug("%s: map size is 0!\n",
  576. __func__);
  577. goto done;
  578. }
  579. /* Use second asm buf to map memory */
  580. if (common_client.port[IN].buf == NULL) {
  581. pr_err("%s: common buf is NULL\n",
  582. __func__);
  583. result = -EINVAL;
  584. goto done;
  585. }
  586. common_client.port[IN].buf->phys = cal_block->cal_data.paddr;
  587. result = q6asm_memory_map_regions(&common_client,
  588. IN, cal_block->map_data.map_size, 1, 1);
  589. if (result < 0) {
  590. pr_err("%s: mmap did not work! size = %zd result %d\n",
  591. __func__,
  592. cal_block->map_data.map_size, result);
  593. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %zd\n",
  594. __func__,
  595. &cal_block->cal_data.paddr,
  596. cal_block->map_data.map_size);
  597. goto done;
  598. }
  599. list_for_each_safe(ptr, next,
  600. &common_client.port[IN].mem_map_handle) {
  601. buf_node = list_entry(ptr, struct asm_buffer_node,
  602. list);
  603. if (buf_node->buf_phys_addr == cal_block->cal_data.paddr) {
  604. cal_block->map_data.q6map_handle = buf_node->mmap_hdl;
  605. break;
  606. }
  607. }
  608. done:
  609. return result;
  610. }
  611. static int remap_cal_data(int32_t cal_type, struct cal_block_data *cal_block)
  612. {
  613. int ret = 0;
  614. if (cal_block->map_data.dma_buf == NULL) {
  615. pr_err("%s: No ION allocation for cal type %d!\n",
  616. __func__, cal_type);
  617. ret = -EINVAL;
  618. goto done;
  619. }
  620. if ((cal_block->map_data.map_size > 0) &&
  621. (cal_block->map_data.q6map_handle == 0)) {
  622. ret = q6asm_map_cal_memory(cal_type, cal_block);
  623. if (ret < 0) {
  624. pr_err("%s: mmap did not work! size = %zd ret %d\n",
  625. __func__, cal_block->map_data.map_size, ret);
  626. goto done;
  627. }
  628. }
  629. done:
  630. return ret;
  631. }
  632. static int q6asm_unmap_cal_memory(int32_t cal_type,
  633. struct cal_block_data *cal_block)
  634. {
  635. int result = 0;
  636. int result2 = 0;
  637. if (cal_block == NULL) {
  638. pr_err("%s: cal_block is NULL!\n",
  639. __func__);
  640. result = -EINVAL;
  641. goto done;
  642. }
  643. if (cal_block->map_data.q6map_handle == 0) {
  644. pr_debug("%s: No address to unmap!\n",
  645. __func__);
  646. result = -EINVAL;
  647. goto done;
  648. }
  649. if (common_client.mmap_apr == NULL) {
  650. common_client.mmap_apr = q6asm_mmap_apr_reg();
  651. if (common_client.mmap_apr == NULL) {
  652. pr_err("%s: q6asm_mmap_apr_reg failed\n",
  653. __func__);
  654. result = -EPERM;
  655. goto done;
  656. }
  657. }
  658. result2 = q6asm_memory_unmap_regions(&common_client, IN);
  659. if (result2 < 0) {
  660. pr_err("%s: unmap failed, err %d\n",
  661. __func__, result2);
  662. result = result2;
  663. }
  664. cal_block->map_data.q6map_handle = 0;
  665. done:
  666. return result;
  667. }
  668. int q6asm_unmap_cal_data(int cal_type, struct cal_block_data *cal_block)
  669. {
  670. int ret = 0;
  671. if ((cal_block->map_data.map_size > 0) &&
  672. (cal_block->map_data.q6map_handle != 0)) {
  673. ret = q6asm_unmap_cal_memory(cal_type, cal_block);
  674. if (ret < 0) {
  675. pr_err("%s: unmap did not work! size = %zd ret %d\n",
  676. __func__, cal_block->map_data.map_size, ret);
  677. goto done;
  678. }
  679. }
  680. done:
  681. return ret;
  682. }
  683. int send_asm_custom_topology(struct audio_client *ac)
  684. {
  685. struct cal_block_data *cal_block = NULL;
  686. struct cmd_set_topologies asm_top;
  687. int result = 0;
  688. int result1 = 0;
  689. if (cal_data[ASM_CUSTOM_TOP_CAL] == NULL)
  690. goto done;
  691. mutex_lock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  692. if (!set_custom_topology)
  693. goto unlock;
  694. set_custom_topology = 0;
  695. cal_block = cal_utils_get_only_cal_block(cal_data[ASM_CUSTOM_TOP_CAL]);
  696. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block))
  697. goto unlock;
  698. if (cal_block->cal_data.size == 0) {
  699. pr_debug("%s: No cal to send!\n", __func__);
  700. goto unlock;
  701. }
  702. pr_debug("%s: Sending cal_index %d\n", __func__, ASM_CUSTOM_TOP_CAL);
  703. result = remap_cal_data(ASM_CUST_TOPOLOGY_CAL_TYPE, cal_block);
  704. if (result) {
  705. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  706. __func__, ASM_CUSTOM_TOP_CAL);
  707. goto unlock;
  708. }
  709. q6asm_add_hdr_custom_topology(ac, &asm_top.hdr, sizeof(asm_top));
  710. atomic_set(&ac->mem_state, -1);
  711. asm_top.hdr.opcode = ASM_CMD_ADD_TOPOLOGIES;
  712. asm_top.payload_addr_lsw = lower_32_bits(cal_block->cal_data.paddr);
  713. asm_top.payload_addr_msw = msm_audio_populate_upper_32_bits(
  714. cal_block->cal_data.paddr);
  715. asm_top.mem_map_handle = cal_block->map_data.q6map_handle;
  716. asm_top.payload_size = cal_block->cal_data.size;
  717. pr_debug("%s: Sending ASM_CMD_ADD_TOPOLOGIES payload = %pK, size = %d, map handle = 0x%x\n",
  718. __func__, &cal_block->cal_data.paddr,
  719. asm_top.payload_size, asm_top.mem_map_handle);
  720. result = apr_send_pkt(ac->apr, (uint32_t *) &asm_top);
  721. if (result < 0) {
  722. pr_err("%s: Set topologies failed result %d\n",
  723. __func__, result);
  724. pr_debug("%s: Set topologies failed payload = 0x%pK\n",
  725. __func__, &cal_block->cal_data.paddr);
  726. goto unmap;
  727. }
  728. result = wait_event_timeout(ac->mem_wait,
  729. (atomic_read(&ac->mem_state) >= 0),
  730. msecs_to_jiffies(TIMEOUT_MS));
  731. if (!result) {
  732. pr_err("%s: Set topologies failed timeout\n", __func__);
  733. pr_debug("%s: Set topologies failed after timedout payload = 0x%pK\n",
  734. __func__, &cal_block->cal_data.paddr);
  735. result = -ETIMEDOUT;
  736. goto unmap;
  737. }
  738. if (atomic_read(&ac->mem_state) > 0) {
  739. pr_err("%s: DSP returned error[%s]\n",
  740. __func__, adsp_err_get_err_str(
  741. atomic_read(&ac->mem_state)));
  742. result = adsp_err_get_lnx_err_code(
  743. atomic_read(&ac->mem_state));
  744. goto unmap;
  745. }
  746. unmap:
  747. result1 = q6asm_unmap_cal_memory(ASM_CUST_TOPOLOGY_CAL_TYPE,
  748. cal_block);
  749. if (result1 < 0) {
  750. result = result1;
  751. pr_debug("%s: unmap cal failed! %d\n", __func__, result);
  752. }
  753. unlock:
  754. mutex_unlock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  755. done:
  756. return result;
  757. }
  758. int q6asm_map_rtac_block(struct rtac_cal_block_data *cal_block)
  759. {
  760. int result = 0;
  761. struct asm_buffer_node *buf_node = NULL;
  762. struct list_head *ptr, *next;
  763. pr_debug("%s:\n", __func__);
  764. if (cal_block == NULL) {
  765. pr_err("%s: cal_block is NULL!\n",
  766. __func__);
  767. result = -EINVAL;
  768. goto done;
  769. }
  770. if (cal_block->cal_data.paddr == 0) {
  771. pr_debug("%s: No address to map!\n",
  772. __func__);
  773. result = -EINVAL;
  774. goto done;
  775. }
  776. if (common_client.mmap_apr == NULL) {
  777. common_client.mmap_apr = q6asm_mmap_apr_reg();
  778. if (common_client.mmap_apr == NULL) {
  779. pr_err("%s: q6asm_mmap_apr_reg failed\n",
  780. __func__);
  781. result = -EPERM;
  782. goto done;
  783. }
  784. }
  785. if (cal_block->map_data.map_size == 0) {
  786. pr_debug("%s: map size is 0!\n",
  787. __func__);
  788. result = -EINVAL;
  789. goto done;
  790. }
  791. /* Use second asm buf to map memory */
  792. if (common_client.port[OUT].buf == NULL) {
  793. pr_err("%s: common buf is NULL\n",
  794. __func__);
  795. result = -EINVAL;
  796. goto done;
  797. }
  798. common_client.port[OUT].buf->phys = cal_block->cal_data.paddr;
  799. result = q6asm_memory_map_regions(&common_client,
  800. OUT, cal_block->map_data.map_size, 1, 1);
  801. if (result < 0) {
  802. pr_err("%s: mmap did not work! size = %d result %d\n",
  803. __func__,
  804. cal_block->map_data.map_size, result);
  805. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %d\n",
  806. __func__,
  807. &cal_block->cal_data.paddr,
  808. cal_block->map_data.map_size);
  809. goto done;
  810. }
  811. list_for_each_safe(ptr, next,
  812. &common_client.port[OUT].mem_map_handle) {
  813. buf_node = list_entry(ptr, struct asm_buffer_node,
  814. list);
  815. if (buf_node->buf_phys_addr == cal_block->cal_data.paddr) {
  816. cal_block->map_data.map_handle = buf_node->mmap_hdl;
  817. break;
  818. }
  819. }
  820. done:
  821. return result;
  822. }
  823. int q6asm_unmap_rtac_block(uint32_t *mem_map_handle)
  824. {
  825. int result = 0;
  826. int result2 = 0;
  827. pr_debug("%s:\n", __func__);
  828. if (mem_map_handle == NULL) {
  829. pr_debug("%s: Map handle is NULL, nothing to unmap\n",
  830. __func__);
  831. goto done;
  832. }
  833. if (*mem_map_handle == 0) {
  834. pr_debug("%s: Map handle is 0, nothing to unmap\n",
  835. __func__);
  836. goto done;
  837. }
  838. if (common_client.mmap_apr == NULL) {
  839. common_client.mmap_apr = q6asm_mmap_apr_reg();
  840. if (common_client.mmap_apr == NULL) {
  841. pr_err("%s: q6asm_mmap_apr_reg failed\n",
  842. __func__);
  843. result = -EPERM;
  844. goto done;
  845. }
  846. }
  847. result2 = q6asm_memory_unmap_regions(&common_client, OUT);
  848. if (result2 < 0) {
  849. pr_err("%s: unmap failed, err %d\n",
  850. __func__, result2);
  851. result = result2;
  852. } else {
  853. *mem_map_handle = 0;
  854. }
  855. result2 = q6asm_mmap_apr_dereg();
  856. if (result2 < 0) {
  857. pr_err("%s: q6asm_mmap_apr_dereg failed, err %d\n",
  858. __func__, result2);
  859. result = result2;
  860. }
  861. done:
  862. return result;
  863. }
  864. int q6asm_audio_client_buf_free(unsigned int dir,
  865. struct audio_client *ac)
  866. {
  867. struct audio_port_data *port;
  868. int cnt = 0;
  869. int rc = 0;
  870. pr_debug("%s: Session id %d\n", __func__, ac->session);
  871. mutex_lock(&ac->cmd_lock);
  872. if (ac->io_mode & SYNC_IO_MODE) {
  873. port = &ac->port[dir];
  874. if (!port->buf) {
  875. pr_err("%s: buf NULL\n", __func__);
  876. mutex_unlock(&ac->cmd_lock);
  877. return 0;
  878. }
  879. cnt = port->max_buf_cnt - 1;
  880. if (cnt >= 0) {
  881. rc = q6asm_memory_unmap_regions(ac, dir);
  882. if (rc < 0)
  883. pr_err("%s: Memory_unmap_regions failed %d\n",
  884. __func__, rc);
  885. }
  886. while (cnt >= 0) {
  887. if (port->buf[cnt].data) {
  888. if (!rc || atomic_read(&ac->reset))
  889. msm_audio_ion_free(
  890. port->buf[cnt].dma_buf);
  891. port->buf[cnt].dma_buf = NULL;
  892. port->buf[cnt].data = NULL;
  893. port->buf[cnt].phys = 0;
  894. --(port->max_buf_cnt);
  895. }
  896. --cnt;
  897. }
  898. kfree(port->buf);
  899. port->buf = NULL;
  900. }
  901. mutex_unlock(&ac->cmd_lock);
  902. return 0;
  903. }
  904. /**
  905. * q6asm_audio_client_buf_free_contiguous -
  906. * frees the memory buffers for ASM
  907. *
  908. * @dir: RX or TX direction
  909. * @ac: audio client handle
  910. *
  911. * Returns 0 on success or error on failure
  912. */
  913. int q6asm_audio_client_buf_free_contiguous(unsigned int dir,
  914. struct audio_client *ac)
  915. {
  916. struct audio_port_data *port;
  917. int cnt = 0;
  918. int rc = 0;
  919. pr_debug("%s: Session id %d\n", __func__, ac->session);
  920. mutex_lock(&ac->cmd_lock);
  921. port = &ac->port[dir];
  922. if (!port->buf) {
  923. mutex_unlock(&ac->cmd_lock);
  924. return 0;
  925. }
  926. cnt = port->max_buf_cnt - 1;
  927. if (cnt >= 0) {
  928. rc = q6asm_memory_unmap(ac, port->buf[0].phys, dir);
  929. if (rc < 0)
  930. pr_err("%s: Memory_unmap_regions failed %d\n",
  931. __func__, rc);
  932. }
  933. if (port->buf[0].data) {
  934. pr_debug("%s: data[%pK], phys[%pK], dma_buf[%pK]\n",
  935. __func__,
  936. port->buf[0].data,
  937. &port->buf[0].phys,
  938. port->buf[0].dma_buf);
  939. if (!rc || atomic_read(&ac->reset))
  940. msm_audio_ion_free(port->buf[0].dma_buf);
  941. port->buf[0].dma_buf = NULL;
  942. }
  943. while (cnt >= 0) {
  944. port->buf[cnt].data = NULL;
  945. port->buf[cnt].phys = 0;
  946. cnt--;
  947. }
  948. port->max_buf_cnt = 0;
  949. kfree(port->buf);
  950. port->buf = NULL;
  951. mutex_unlock(&ac->cmd_lock);
  952. return 0;
  953. }
  954. EXPORT_SYMBOL(q6asm_audio_client_buf_free_contiguous);
  955. /**
  956. * q6asm_audio_client_free -
  957. * frees the audio client for ASM
  958. *
  959. * @ac: audio client handle
  960. *
  961. */
  962. void q6asm_audio_client_free(struct audio_client *ac)
  963. {
  964. int loopcnt;
  965. struct audio_port_data *port;
  966. if (!ac) {
  967. pr_err("%s: ac %pK\n", __func__, ac);
  968. return;
  969. }
  970. if (!ac->session) {
  971. pr_err("%s: ac session invalid\n", __func__);
  972. return;
  973. }
  974. mutex_lock(&session_lock);
  975. pr_debug("%s: Session id %d\n", __func__, ac->session);
  976. if (ac->io_mode & SYNC_IO_MODE) {
  977. for (loopcnt = 0; loopcnt <= OUT; loopcnt++) {
  978. port = &ac->port[loopcnt];
  979. if (!port->buf)
  980. continue;
  981. pr_debug("%s: loopcnt = %d\n",
  982. __func__, loopcnt);
  983. q6asm_audio_client_buf_free(loopcnt, ac);
  984. }
  985. }
  986. rtac_set_asm_handle(ac->session, NULL);
  987. apr_deregister(ac->apr2);
  988. apr_deregister(ac->apr);
  989. q6asm_mmap_apr_dereg();
  990. ac->apr2 = NULL;
  991. ac->apr = NULL;
  992. ac->mmap_apr = NULL;
  993. q6asm_session_free(ac);
  994. pr_debug("%s: APR De-Register\n", __func__);
  995. /*done:*/
  996. mutex_unlock(&session_lock);
  997. }
  998. EXPORT_SYMBOL(q6asm_audio_client_free);
  999. /**
  1000. * q6asm_set_io_mode -
  1001. * Update IO mode for ASM
  1002. *
  1003. * @ac: audio client handle
  1004. * @mode1: IO mode to update
  1005. *
  1006. * Returns 0 on success or error on failure
  1007. */
  1008. int q6asm_set_io_mode(struct audio_client *ac, uint32_t mode1)
  1009. {
  1010. uint32_t mode;
  1011. int ret = 0;
  1012. if (ac == NULL) {
  1013. pr_err("%s: APR handle NULL\n", __func__);
  1014. return -EINVAL;
  1015. }
  1016. ac->io_mode &= 0xFF00;
  1017. mode = (mode1 & 0xF);
  1018. pr_debug("%s: ac->mode after anding with FF00:0x%x,\n",
  1019. __func__, ac->io_mode);
  1020. if ((mode == ASYNC_IO_MODE) || (mode == SYNC_IO_MODE)) {
  1021. ac->io_mode |= mode1;
  1022. pr_debug("%s: Set Mode to 0x%x\n", __func__, ac->io_mode);
  1023. } else {
  1024. pr_err("%s: Not an valid IO Mode:%d\n", __func__, ac->io_mode);
  1025. ret = -EINVAL;
  1026. }
  1027. return ret;
  1028. }
  1029. EXPORT_SYMBOL(q6asm_set_io_mode);
  1030. void *q6asm_mmap_apr_reg(void)
  1031. {
  1032. if ((atomic_read(&this_mmap.ref_cnt) == 0) ||
  1033. (this_mmap.apr == NULL)) {
  1034. this_mmap.apr = apr_register("ADSP", "ASM",
  1035. (apr_fn)q6asm_srvc_callback,
  1036. 0x0FFFFFFFF, &this_mmap);
  1037. if (this_mmap.apr == NULL) {
  1038. pr_debug("%s: Unable to register APR ASM common port\n",
  1039. __func__);
  1040. goto fail;
  1041. }
  1042. }
  1043. atomic_inc(&this_mmap.ref_cnt);
  1044. return this_mmap.apr;
  1045. fail:
  1046. return NULL;
  1047. }
  1048. /**
  1049. * q6asm_send_stream_cmd -
  1050. * command to send for ASM stream
  1051. *
  1052. * @ac: audio client handle
  1053. * @data: event data
  1054. *
  1055. * Returns 0 on success or error on failure
  1056. */
  1057. int q6asm_send_stream_cmd(struct audio_client *ac,
  1058. struct msm_adsp_event_data *data)
  1059. {
  1060. char *asm_params = NULL;
  1061. struct apr_hdr hdr;
  1062. int rc;
  1063. uint32_t sz = 0;
  1064. uint64_t actual_sz = 0;
  1065. int session_id = 0;
  1066. if (!data || !ac) {
  1067. pr_err("%s: %s is NULL\n", __func__,
  1068. (!data) ? "data" : "ac");
  1069. rc = -EINVAL;
  1070. goto done;
  1071. }
  1072. session_id = q6asm_get_session_id_from_audio_client(ac);
  1073. if (!session_id) {
  1074. rc = -EINVAL;
  1075. goto done;
  1076. }
  1077. if (data->event_type >= ARRAY_SIZE(adsp_reg_event_opcode)) {
  1078. pr_err("%s: event %u out of boundary of array size of (%lu)\n",
  1079. __func__, data->event_type,
  1080. (long)ARRAY_SIZE(adsp_reg_event_opcode));
  1081. rc = -EINVAL;
  1082. goto done;
  1083. }
  1084. actual_sz = sizeof(struct apr_hdr) + data->payload_len;
  1085. if (actual_sz > U32_MAX) {
  1086. pr_err("%s: payload size 0x%X exceeds limit\n",
  1087. __func__, data->payload_len);
  1088. rc = -EINVAL;
  1089. goto done;
  1090. }
  1091. sz = (uint32_t)actual_sz;
  1092. asm_params = kzalloc(sz, GFP_KERNEL);
  1093. if (!asm_params) {
  1094. rc = -ENOMEM;
  1095. goto done;
  1096. }
  1097. mutex_lock(&session[session_id].mutex_lock_per_session);
  1098. if (!q6asm_is_valid_audio_client(ac)) {
  1099. rc = -EINVAL;
  1100. goto fail_send_param;
  1101. }
  1102. q6asm_add_hdr_async(ac, &hdr, sz, TRUE);
  1103. atomic_set(&ac->cmd_state_pp, -1);
  1104. hdr.opcode = adsp_reg_event_opcode[data->event_type];
  1105. memcpy(asm_params, &hdr, sizeof(struct apr_hdr));
  1106. memcpy(asm_params + sizeof(struct apr_hdr),
  1107. data->payload, data->payload_len);
  1108. rc = apr_send_pkt(ac->apr, (uint32_t *) asm_params);
  1109. if (rc < 0) {
  1110. pr_err("%s: stream event cmd apr pkt failed\n", __func__);
  1111. rc = -EINVAL;
  1112. goto fail_send_param;
  1113. }
  1114. rc = wait_event_timeout(ac->cmd_wait,
  1115. (atomic_read(&ac->cmd_state_pp) >= 0),
  1116. msecs_to_jiffies(TIMEOUT_MS));
  1117. if (!rc) {
  1118. pr_err("%s: timeout for stream event cmd resp\n", __func__);
  1119. rc = -ETIMEDOUT;
  1120. goto fail_send_param;
  1121. }
  1122. if (atomic_read(&ac->cmd_state_pp) > 0) {
  1123. pr_err("%s: DSP returned error[%s] for stream event cmd\n",
  1124. __func__, adsp_err_get_err_str(
  1125. atomic_read(&ac->cmd_state_pp)));
  1126. rc = adsp_err_get_lnx_err_code(
  1127. atomic_read(&ac->cmd_state_pp));
  1128. goto fail_send_param;
  1129. }
  1130. rc = 0;
  1131. fail_send_param:
  1132. mutex_unlock(&session[session_id].mutex_lock_per_session);
  1133. kfree(asm_params);
  1134. done:
  1135. return rc;
  1136. }
  1137. EXPORT_SYMBOL(q6asm_send_stream_cmd);
  1138. /**
  1139. * q6asm_audio_client_alloc -
  1140. * Alloc audio client for ASM
  1141. *
  1142. * @cb: callback fn
  1143. * @priv: private data
  1144. *
  1145. * Returns ac pointer on success or NULL on failure
  1146. */
  1147. struct audio_client *q6asm_audio_client_alloc(app_cb cb, void *priv)
  1148. {
  1149. struct audio_client *ac;
  1150. int n;
  1151. int lcnt = 0;
  1152. int rc = 0;
  1153. ac = kzalloc(sizeof(struct audio_client), GFP_KERNEL);
  1154. if (!ac)
  1155. return NULL;
  1156. mutex_lock(&session_lock);
  1157. n = q6asm_session_alloc(ac);
  1158. if (n <= 0) {
  1159. pr_err("%s: ASM Session alloc fail n=%d\n", __func__, n);
  1160. mutex_unlock(&session_lock);
  1161. kfree(ac);
  1162. goto fail_session;
  1163. }
  1164. ac->session = n;
  1165. ac->cb = cb;
  1166. ac->path_delay = UINT_MAX;
  1167. ac->priv = priv;
  1168. ac->io_mode = SYNC_IO_MODE;
  1169. ac->perf_mode = LEGACY_PCM_MODE;
  1170. ac->fptr_cache_ops = NULL;
  1171. /* DSP expects stream id from 1 */
  1172. ac->stream_id = 1;
  1173. ac->apr = apr_register("ADSP", "ASM",
  1174. (apr_fn)q6asm_callback,
  1175. ((ac->session) << 8 | 0x0001),
  1176. ac);
  1177. if (ac->apr == NULL) {
  1178. pr_err("%s: Registration with APR failed\n", __func__);
  1179. mutex_unlock(&session_lock);
  1180. goto fail_apr1;
  1181. }
  1182. ac->apr2 = apr_register("ADSP", "ASM",
  1183. (apr_fn)q6asm_callback,
  1184. ((ac->session) << 8 | 0x0002),
  1185. ac);
  1186. if (ac->apr2 == NULL) {
  1187. pr_err("%s: Registration with APR-2 failed\n", __func__);
  1188. mutex_unlock(&session_lock);
  1189. goto fail_apr2;
  1190. }
  1191. rtac_set_asm_handle(n, ac->apr);
  1192. pr_debug("%s: Registering the common port with APR\n", __func__);
  1193. ac->mmap_apr = q6asm_mmap_apr_reg();
  1194. if (ac->mmap_apr == NULL) {
  1195. mutex_unlock(&session_lock);
  1196. goto fail_mmap;
  1197. }
  1198. init_waitqueue_head(&ac->cmd_wait);
  1199. init_waitqueue_head(&ac->time_wait);
  1200. init_waitqueue_head(&ac->mem_wait);
  1201. atomic_set(&ac->time_flag, 1);
  1202. atomic_set(&ac->reset, 0);
  1203. INIT_LIST_HEAD(&ac->port[0].mem_map_handle);
  1204. INIT_LIST_HEAD(&ac->port[1].mem_map_handle);
  1205. pr_debug("%s: mem_map_handle list init'ed\n", __func__);
  1206. mutex_init(&ac->cmd_lock);
  1207. for (lcnt = 0; lcnt <= OUT; lcnt++) {
  1208. mutex_init(&ac->port[lcnt].lock);
  1209. spin_lock_init(&ac->port[lcnt].dsp_lock);
  1210. }
  1211. atomic_set(&ac->cmd_state, 0);
  1212. atomic_set(&ac->cmd_state_pp, 0);
  1213. atomic_set(&ac->mem_state, 0);
  1214. rc = send_asm_custom_topology(ac);
  1215. if (rc < 0) {
  1216. mutex_unlock(&session_lock);
  1217. goto fail_mmap;
  1218. }
  1219. pr_debug("%s: session[%d]\n", __func__, ac->session);
  1220. mutex_unlock(&session_lock);
  1221. return ac;
  1222. fail_mmap:
  1223. apr_deregister(ac->apr2);
  1224. fail_apr2:
  1225. apr_deregister(ac->apr);
  1226. fail_apr1:
  1227. q6asm_session_free(ac);
  1228. fail_session:
  1229. return NULL;
  1230. }
  1231. EXPORT_SYMBOL(q6asm_audio_client_alloc);
  1232. /**
  1233. * q6asm_get_audio_client -
  1234. * Retrieve audio client for ASM
  1235. *
  1236. * @session_id: ASM session id
  1237. *
  1238. * Returns valid pointer on success or NULL on failure
  1239. */
  1240. struct audio_client *q6asm_get_audio_client(int session_id)
  1241. {
  1242. if (session_id == ASM_CONTROL_SESSION)
  1243. return &common_client;
  1244. if ((session_id <= 0) || (session_id > ASM_ACTIVE_STREAMS_ALLOWED)) {
  1245. pr_err("%s: invalid session: %d\n", __func__, session_id);
  1246. goto err;
  1247. }
  1248. if (!(session[session_id].ac)) {
  1249. pr_err("%s: session not active: %d\n", __func__, session_id);
  1250. goto err;
  1251. }
  1252. return session[session_id].ac;
  1253. err:
  1254. return NULL;
  1255. }
  1256. EXPORT_SYMBOL(q6asm_get_audio_client);
  1257. /**
  1258. * q6asm_audio_client_buf_alloc -
  1259. * Allocs memory from ION for ASM
  1260. *
  1261. * @dir: RX or TX direction
  1262. * @ac: Audio client handle
  1263. * @bufsz: size of each buffer
  1264. * @bufcnt: number of buffers to alloc
  1265. *
  1266. * Returns 0 on success or error on failure
  1267. */
  1268. int q6asm_audio_client_buf_alloc(unsigned int dir,
  1269. struct audio_client *ac,
  1270. unsigned int bufsz,
  1271. uint32_t bufcnt)
  1272. {
  1273. int cnt = 0;
  1274. int rc = 0;
  1275. struct audio_buffer *buf;
  1276. size_t len;
  1277. if (!(ac) || !(bufsz) || ((dir != IN) && (dir != OUT))) {
  1278. pr_err("%s: ac %pK bufsz %d dir %d\n", __func__, ac, bufsz,
  1279. dir);
  1280. return -EINVAL;
  1281. }
  1282. pr_debug("%s: session[%d]bufsz[%d]bufcnt[%d]\n", __func__, ac->session,
  1283. bufsz, bufcnt);
  1284. if (ac->session <= 0 || ac->session > 8) {
  1285. pr_err("%s: Session ID is invalid, session = %d\n", __func__,
  1286. ac->session);
  1287. goto fail;
  1288. }
  1289. if (ac->io_mode & SYNC_IO_MODE) {
  1290. if (ac->port[dir].buf) {
  1291. pr_debug("%s: buffer already allocated\n", __func__);
  1292. return 0;
  1293. }
  1294. mutex_lock(&ac->cmd_lock);
  1295. if (bufcnt > (U32_MAX/sizeof(struct audio_buffer))) {
  1296. pr_err("%s: Buffer size overflows", __func__);
  1297. mutex_unlock(&ac->cmd_lock);
  1298. goto fail;
  1299. }
  1300. buf = kzalloc(((sizeof(struct audio_buffer))*bufcnt),
  1301. GFP_KERNEL);
  1302. if (!buf) {
  1303. mutex_unlock(&ac->cmd_lock);
  1304. goto fail;
  1305. }
  1306. ac->port[dir].buf = buf;
  1307. while (cnt < bufcnt) {
  1308. if (bufsz > 0) {
  1309. if (!buf[cnt].data) {
  1310. rc = msm_audio_ion_alloc(
  1311. &buf[cnt].dma_buf,
  1312. bufsz,
  1313. &buf[cnt].phys,
  1314. &len,
  1315. &buf[cnt].data);
  1316. if (rc) {
  1317. pr_err("%s: ION Get Physical for AUDIO failed, rc = %d\n",
  1318. __func__, rc);
  1319. mutex_unlock(&ac->cmd_lock);
  1320. goto fail;
  1321. }
  1322. buf[cnt].used = 1;
  1323. buf[cnt].size = bufsz;
  1324. buf[cnt].actual_size = bufsz;
  1325. pr_debug("%s: data[%pK]phys[%pK][%pK]\n",
  1326. __func__,
  1327. buf[cnt].data,
  1328. &buf[cnt].phys,
  1329. &buf[cnt].phys);
  1330. cnt++;
  1331. }
  1332. }
  1333. }
  1334. ac->port[dir].max_buf_cnt = cnt;
  1335. mutex_unlock(&ac->cmd_lock);
  1336. rc = q6asm_memory_map_regions(ac, dir, bufsz, cnt, 0);
  1337. if (rc < 0) {
  1338. pr_err("%s: CMD Memory_map_regions failed %d for size %d\n",
  1339. __func__, rc, bufsz);
  1340. goto fail;
  1341. }
  1342. }
  1343. return 0;
  1344. fail:
  1345. q6asm_audio_client_buf_free(dir, ac);
  1346. return -EINVAL;
  1347. }
  1348. EXPORT_SYMBOL(q6asm_audio_client_buf_alloc);
  1349. /**
  1350. * q6asm_audio_client_buf_alloc_contiguous -
  1351. * Alloc contiguous memory from ION for ASM
  1352. *
  1353. * @dir: RX or TX direction
  1354. * @ac: Audio client handle
  1355. * @bufsz: size of each buffer
  1356. * @bufcnt: number of buffers to alloc
  1357. *
  1358. * Returns 0 on success or error on failure
  1359. */
  1360. int q6asm_audio_client_buf_alloc_contiguous(unsigned int dir,
  1361. struct audio_client *ac,
  1362. unsigned int bufsz,
  1363. unsigned int bufcnt)
  1364. {
  1365. int cnt = 0;
  1366. int rc = 0;
  1367. struct audio_buffer *buf;
  1368. size_t len;
  1369. int bytes_to_alloc;
  1370. if (!(ac) || ((dir != IN) && (dir != OUT))) {
  1371. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  1372. return -EINVAL;
  1373. }
  1374. pr_debug("%s: session[%d]bufsz[%d]bufcnt[%d]\n",
  1375. __func__, ac->session,
  1376. bufsz, bufcnt);
  1377. if (ac->session <= 0 || ac->session > 8) {
  1378. pr_err("%s: Session ID is invalid, session = %d\n", __func__,
  1379. ac->session);
  1380. goto fail;
  1381. }
  1382. if (ac->port[dir].buf) {
  1383. pr_err("%s: buffer already allocated\n", __func__);
  1384. return 0;
  1385. }
  1386. mutex_lock(&ac->cmd_lock);
  1387. buf = kzalloc(((sizeof(struct audio_buffer))*bufcnt),
  1388. GFP_KERNEL);
  1389. if (!buf) {
  1390. pr_err("%s: buffer allocation failed\n", __func__);
  1391. mutex_unlock(&ac->cmd_lock);
  1392. goto fail;
  1393. }
  1394. ac->port[dir].buf = buf;
  1395. /* check for integer overflow */
  1396. if ((bufcnt > 0) && ((INT_MAX / bufcnt) < bufsz)) {
  1397. pr_err("%s: integer overflow\n", __func__);
  1398. mutex_unlock(&ac->cmd_lock);
  1399. goto fail;
  1400. }
  1401. bytes_to_alloc = bufsz * bufcnt;
  1402. /* The size to allocate should be multiple of 4K bytes */
  1403. bytes_to_alloc = PAGE_ALIGN(bytes_to_alloc);
  1404. rc = msm_audio_ion_alloc(&buf[0].dma_buf,
  1405. bytes_to_alloc,
  1406. &buf[0].phys, &len,
  1407. &buf[0].data);
  1408. if (rc) {
  1409. pr_err("%s: Audio ION alloc is failed, rc = %d\n",
  1410. __func__, rc);
  1411. mutex_unlock(&ac->cmd_lock);
  1412. goto fail;
  1413. }
  1414. buf[0].used = dir ^ 1;
  1415. buf[0].size = bufsz;
  1416. buf[0].actual_size = bufsz;
  1417. cnt = 1;
  1418. while (cnt < bufcnt) {
  1419. if (bufsz > 0) {
  1420. buf[cnt].data = buf[0].data + (cnt * bufsz);
  1421. buf[cnt].phys = buf[0].phys + (cnt * bufsz);
  1422. if (!buf[cnt].data) {
  1423. pr_err("%s: Buf alloc failed\n",
  1424. __func__);
  1425. mutex_unlock(&ac->cmd_lock);
  1426. goto fail;
  1427. }
  1428. buf[cnt].used = dir ^ 1;
  1429. buf[cnt].size = bufsz;
  1430. buf[cnt].actual_size = bufsz;
  1431. pr_debug("%s: data[%pK]phys[%pK][%pK]\n",
  1432. __func__,
  1433. buf[cnt].data,
  1434. &buf[cnt].phys,
  1435. &buf[cnt].phys);
  1436. }
  1437. cnt++;
  1438. }
  1439. ac->port[dir].max_buf_cnt = cnt;
  1440. mutex_unlock(&ac->cmd_lock);
  1441. rc = q6asm_memory_map_regions(ac, dir, bufsz, cnt, 1);
  1442. if (rc < 0) {
  1443. pr_err("%s: CMD Memory_map_regions failed %d for size %d\n",
  1444. __func__, rc, bufsz);
  1445. goto fail;
  1446. }
  1447. return 0;
  1448. fail:
  1449. q6asm_audio_client_buf_free_contiguous(dir, ac);
  1450. return -EINVAL;
  1451. }
  1452. EXPORT_SYMBOL(q6asm_audio_client_buf_alloc_contiguous);
  1453. static int32_t q6asm_srvc_callback(struct apr_client_data *data, void *priv)
  1454. {
  1455. uint32_t dir = 0;
  1456. uint32_t i = IN;
  1457. uint32_t *payload;
  1458. unsigned long dsp_flags = 0;
  1459. unsigned long flags = 0;
  1460. struct asm_buffer_node *buf_node = NULL;
  1461. struct list_head *ptr, *next;
  1462. union asm_token_struct asm_token;
  1463. struct audio_client *ac = NULL;
  1464. struct audio_port_data *port;
  1465. int session_id;
  1466. if (!data) {
  1467. pr_err("%s: Invalid CB\n", __func__);
  1468. return 0;
  1469. }
  1470. payload = data->payload;
  1471. if (data->opcode == RESET_EVENTS) {
  1472. pr_debug("%s: Reset event is received: %d %d apr[%pK]\n",
  1473. __func__,
  1474. data->reset_event,
  1475. data->reset_proc,
  1476. this_mmap.apr);
  1477. atomic_set(&this_mmap.ref_cnt, 0);
  1478. apr_reset(this_mmap.apr);
  1479. this_mmap.apr = NULL;
  1480. for (; i <= OUT; i++) {
  1481. list_for_each_safe(ptr, next,
  1482. &common_client.port[i].mem_map_handle) {
  1483. buf_node = list_entry(ptr,
  1484. struct asm_buffer_node,
  1485. list);
  1486. if (buf_node->buf_phys_addr ==
  1487. common_client.port[i].buf->phys) {
  1488. list_del(&buf_node->list);
  1489. kfree(buf_node);
  1490. }
  1491. }
  1492. pr_debug("%s: Clearing custom topology\n", __func__);
  1493. }
  1494. cal_utils_clear_cal_block_q6maps(ASM_MAX_CAL_TYPES, cal_data);
  1495. common_client.mmap_apr = NULL;
  1496. mutex_lock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  1497. set_custom_topology = 1;
  1498. mutex_unlock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  1499. topology_map_handle = 0;
  1500. rtac_clear_mapping(ASM_RTAC_CAL);
  1501. return 0;
  1502. }
  1503. asm_token.token = data->token;
  1504. session_id = asm_token._token.session_id;
  1505. if ((session_id > 0 && session_id <= ASM_ACTIVE_STREAMS_ALLOWED))
  1506. spin_lock_irqsave(&(session[session_id].session_lock), flags);
  1507. ac = q6asm_get_audio_client(session_id);
  1508. dir = q6asm_get_flag_from_token(&asm_token, ASM_DIRECTION_OFFSET);
  1509. if (!ac) {
  1510. pr_debug("%s: session[%d] already freed\n",
  1511. __func__, session_id);
  1512. if ((session_id > 0 &&
  1513. session_id <= ASM_ACTIVE_STREAMS_ALLOWED))
  1514. spin_unlock_irqrestore(
  1515. &(session[session_id].session_lock), flags);
  1516. return 0;
  1517. }
  1518. if (data->payload_size >= 2 * sizeof(uint32_t)) {
  1519. pr_debug("%s:ptr0[0x%x]ptr1[0x%x]opcode[0x%x] token[0x%x]payload_s[%d] src[%d] dest[%d]sid[%d]dir[%d]\n",
  1520. __func__, payload[0], payload[1], data->opcode,
  1521. data->token, data->payload_size, data->src_port,
  1522. data->dest_port, asm_token._token.session_id, dir);
  1523. pr_debug("%s:Payload = [0x%x] status[0x%x]\n",
  1524. __func__, payload[0], payload[1]);
  1525. } else if (data->payload_size == sizeof(uint32_t)) {
  1526. pr_debug("%s:ptr0[0x%x]opcode[0x%x] token[0x%x]payload_s[%d] src[%d] dest[%d]sid[%d]dir[%d]\n",
  1527. __func__, payload[0], data->opcode,
  1528. data->token, data->payload_size, data->src_port,
  1529. data->dest_port, asm_token._token.session_id, dir);
  1530. pr_debug("%s:Payload = [0x%x]\n",
  1531. __func__, payload[0]);
  1532. }
  1533. if (data->opcode == APR_BASIC_RSP_RESULT) {
  1534. switch (payload[0]) {
  1535. case ASM_CMD_SHARED_MEM_MAP_REGIONS:
  1536. case ASM_CMD_SHARED_MEM_UNMAP_REGIONS:
  1537. case ASM_CMD_ADD_TOPOLOGIES:
  1538. if (data->payload_size >= 2 * sizeof(uint32_t) && payload[1] != 0) {
  1539. pr_err("%s: cmd = 0x%x returned error = 0x%x sid:%d\n",
  1540. __func__, payload[0], payload[1],
  1541. asm_token._token.session_id);
  1542. if (payload[0] ==
  1543. ASM_CMD_SHARED_MEM_UNMAP_REGIONS)
  1544. atomic_set(&ac->unmap_cb_success, 0);
  1545. atomic_set(&ac->mem_state, payload[1]);
  1546. wake_up(&ac->mem_wait);
  1547. } else {
  1548. if (payload[0] ==
  1549. ASM_CMD_SHARED_MEM_UNMAP_REGIONS)
  1550. atomic_set(&ac->unmap_cb_success, 1);
  1551. }
  1552. if (atomic_cmpxchg(&ac->mem_state, -1, 0) == -1)
  1553. wake_up(&ac->mem_wait);
  1554. if (data->payload_size >= 2 * sizeof(uint32_t))
  1555. dev_vdbg(ac->dev, "%s: Payload = [0x%x] status[0x%x]\n",
  1556. __func__, payload[0], payload[1]);
  1557. else
  1558. dev_vdbg(ac->dev, "%s: Payload size of %d is less than expected.\n",
  1559. __func__, data->payload_size);
  1560. break;
  1561. default:
  1562. pr_debug("%s: command[0x%x] not expecting rsp\n",
  1563. __func__, payload[0]);
  1564. break;
  1565. }
  1566. if ((session_id > 0 &&
  1567. session_id <= ASM_ACTIVE_STREAMS_ALLOWED))
  1568. spin_unlock_irqrestore(
  1569. &(session[session_id].session_lock), flags);
  1570. return 0;
  1571. }
  1572. port = &ac->port[dir];
  1573. switch (data->opcode) {
  1574. case ASM_CMDRSP_SHARED_MEM_MAP_REGIONS:{
  1575. pr_debug("%s:PL#0[0x%x] dir=0x%x s_id=0x%x\n",
  1576. __func__, payload[0], dir, asm_token._token.session_id);
  1577. spin_lock_irqsave(&port->dsp_lock, dsp_flags);
  1578. if (atomic_cmpxchg(&ac->mem_state, -1, 0) == -1) {
  1579. ac->port[dir].tmp_hdl = payload[0];
  1580. wake_up(&ac->mem_wait);
  1581. }
  1582. spin_unlock_irqrestore(&port->dsp_lock, dsp_flags);
  1583. break;
  1584. }
  1585. case ASM_CMD_SHARED_MEM_UNMAP_REGIONS:{
  1586. if (data->payload_size >= 2 * sizeof(uint32_t))
  1587. pr_debug("%s: PL#0[0x%x]PL#1 [0x%x]\n",
  1588. __func__, payload[0], payload[1]);
  1589. else
  1590. pr_debug("%s: Payload size of %d is less than expected.\n",
  1591. __func__, data->payload_size);
  1592. spin_lock_irqsave(&port->dsp_lock, dsp_flags);
  1593. if (atomic_cmpxchg(&ac->mem_state, -1, 0) == -1)
  1594. wake_up(&ac->mem_wait);
  1595. spin_unlock_irqrestore(&port->dsp_lock, dsp_flags);
  1596. break;
  1597. }
  1598. default:
  1599. if (data->payload_size >= 2 * sizeof(uint32_t))
  1600. pr_debug("%s: command[0x%x]success [0x%x]\n",
  1601. __func__, payload[0], payload[1]);
  1602. else
  1603. pr_debug("%s: Payload size of %d is less than expected.\n",
  1604. __func__, data->payload_size);
  1605. }
  1606. if (ac->cb)
  1607. ac->cb(data->opcode, data->token,
  1608. data->payload, ac->priv);
  1609. if ((session_id > 0 && session_id <= ASM_ACTIVE_STREAMS_ALLOWED))
  1610. spin_unlock_irqrestore(
  1611. &(session[session_id].session_lock), flags);
  1612. return 0;
  1613. }
  1614. static void q6asm_process_mtmx_get_param_rsp(struct audio_client *ac,
  1615. struct asm_mtmx_strtr_get_params_cmdrsp *cmdrsp)
  1616. {
  1617. struct asm_session_mtmx_strtr_param_session_time_v3_t *time;
  1618. if (cmdrsp->err_code) {
  1619. dev_err_ratelimited(ac->dev,
  1620. "%s: err=%x, mod_id=%x, param_id=%x\n",
  1621. __func__, cmdrsp->err_code,
  1622. cmdrsp->param_info.module_id,
  1623. cmdrsp->param_info.param_id);
  1624. return;
  1625. }
  1626. dev_dbg_ratelimited(ac->dev,
  1627. "%s: mod_id=%x, param_id=%x\n", __func__,
  1628. cmdrsp->param_info.module_id,
  1629. cmdrsp->param_info.param_id);
  1630. switch (cmdrsp->param_info.module_id) {
  1631. case ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC:
  1632. switch (cmdrsp->param_info.param_id) {
  1633. case ASM_SESSION_MTMX_STRTR_PARAM_SESSION_TIME_V3:
  1634. time = &cmdrsp->param_data.session_time;
  1635. dev_vdbg(ac->dev, "%s: GET_TIME_V3, time_lsw=%x, time_msw=%x\n",
  1636. __func__, time->session_time_lsw,
  1637. time->session_time_msw);
  1638. ac->time_stamp = (uint64_t)(((uint64_t)
  1639. time->session_time_msw << 32) |
  1640. time->session_time_lsw);
  1641. if (time->flags &
  1642. ASM_SESSION_MTMX_STRTR_PARAM_STIME_TSTMP_FLG_BMASK)
  1643. dev_warn_ratelimited(ac->dev,
  1644. "%s: recv inval tstmp\n",
  1645. __func__);
  1646. if (atomic_cmpxchg(&ac->time_flag, 1, 0))
  1647. wake_up(&ac->time_wait);
  1648. break;
  1649. default:
  1650. dev_err(ac->dev, "%s: unexpected param_id %x\n",
  1651. __func__, cmdrsp->param_info.param_id);
  1652. break;
  1653. }
  1654. break;
  1655. default:
  1656. dev_err(ac->dev, "%s: unexpected mod_id %x\n", __func__,
  1657. cmdrsp->param_info.module_id);
  1658. break;
  1659. }
  1660. }
  1661. static int32_t q6asm_callback(struct apr_client_data *data, void *priv)
  1662. {
  1663. int i = 0;
  1664. struct audio_client *ac = (struct audio_client *)priv;
  1665. unsigned long dsp_flags = 0;
  1666. uint32_t *payload;
  1667. uint32_t wakeup_flag = 1;
  1668. int32_t ret = 0;
  1669. union asm_token_struct asm_token;
  1670. uint8_t buf_index;
  1671. struct msm_adsp_event_data *pp_event_package = NULL;
  1672. uint32_t payload_size = 0;
  1673. unsigned long flags = 0;
  1674. int session_id;
  1675. if (ac == NULL) {
  1676. pr_err("%s: ac NULL\n", __func__);
  1677. return -EINVAL;
  1678. }
  1679. if (data == NULL) {
  1680. pr_err("%s: data NULL\n", __func__);
  1681. return -EINVAL;
  1682. }
  1683. session_id = q6asm_get_session_id_from_audio_client(ac);
  1684. if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
  1685. pr_err("%s: Session ID is invalid, session = %d\n", __func__,
  1686. session_id);
  1687. return -EINVAL;
  1688. }
  1689. spin_lock_irqsave(&(session[session_id].session_lock), flags);
  1690. if (!q6asm_is_valid_audio_client(ac)) {
  1691. pr_err("%s: audio client pointer is invalid, ac = %pK\n",
  1692. __func__, ac);
  1693. spin_unlock_irqrestore(
  1694. &(session[session_id].session_lock), flags);
  1695. return -EINVAL;
  1696. }
  1697. payload = data->payload;
  1698. asm_token.token = data->token;
  1699. if (q6asm_get_flag_from_token(&asm_token, ASM_CMD_NO_WAIT_OFFSET)) {
  1700. pr_debug("%s: No wait command opcode[0x%x] cmd_opcode:%x\n",
  1701. __func__, data->opcode, payload ? payload[0] : 0);
  1702. wakeup_flag = 0;
  1703. }
  1704. if (data->opcode == RESET_EVENTS) {
  1705. atomic_set(&ac->reset, 1);
  1706. if (ac->apr == NULL) {
  1707. ac->apr = ac->apr2;
  1708. ac->apr2 = NULL;
  1709. }
  1710. pr_debug("%s: Reset event is received: %d %d apr[%pK]\n",
  1711. __func__,
  1712. data->reset_event, data->reset_proc, ac->apr);
  1713. if (ac->cb)
  1714. ac->cb(data->opcode, data->token,
  1715. (uint32_t *)data->payload, ac->priv);
  1716. apr_reset(ac->apr);
  1717. ac->apr = NULL;
  1718. atomic_set(&ac->time_flag, 0);
  1719. atomic_set(&ac->cmd_state, 0);
  1720. atomic_set(&ac->mem_state, 0);
  1721. atomic_set(&ac->cmd_state_pp, 0);
  1722. wake_up(&ac->time_wait);
  1723. wake_up(&ac->cmd_wait);
  1724. wake_up(&ac->mem_wait);
  1725. spin_unlock_irqrestore(
  1726. &(session[session_id].session_lock), flags);
  1727. return 0;
  1728. }
  1729. dev_vdbg(ac->dev, "%s: session[%d]opcode[0x%x] token[0x%x]payload_size[%d] src[%d] dest[%d]\n",
  1730. __func__,
  1731. ac->session, data->opcode,
  1732. data->token, data->payload_size, data->src_port,
  1733. data->dest_port);
  1734. if ((data->opcode != ASM_DATA_EVENT_RENDERED_EOS) &&
  1735. (data->opcode != ASM_DATA_EVENT_EOS) &&
  1736. (data->opcode != ASM_SESSION_EVENT_RX_UNDERFLOW)) {
  1737. if (payload == NULL) {
  1738. pr_err("%s: payload is null\n", __func__);
  1739. spin_unlock_irqrestore(
  1740. &(session[session_id].session_lock), flags);
  1741. return -EINVAL;
  1742. }
  1743. if(data->payload_size >= 2 * sizeof(uint32_t))
  1744. dev_vdbg(ac->dev, "%s: Payload = [0x%x] status[0x%x] opcode 0x%x\n",
  1745. __func__, payload[0], payload[1], data->opcode);
  1746. else
  1747. dev_vdbg(ac->dev, "%s: Payload size of %d is less than expected.\n",
  1748. __func__, data->payload_size);
  1749. }
  1750. if (data->opcode == APR_BASIC_RSP_RESULT) {
  1751. switch (payload[0]) {
  1752. case ASM_STREAM_CMD_SET_PP_PARAMS_V2:
  1753. case ASM_STREAM_CMD_SET_PP_PARAMS_V3:
  1754. if (rtac_make_asm_callback(ac->session, payload,
  1755. data->payload_size))
  1756. break;
  1757. case ASM_SESSION_CMD_PAUSE:
  1758. case ASM_SESSION_CMD_SUSPEND:
  1759. case ASM_DATA_CMD_EOS:
  1760. case ASM_STREAM_CMD_CLOSE:
  1761. case ASM_STREAM_CMD_FLUSH:
  1762. case ASM_SESSION_CMD_RUN_V2:
  1763. case ASM_SESSION_CMD_REGISTER_FORX_OVERFLOW_EVENTS:
  1764. case ASM_STREAM_CMD_FLUSH_READBUFS:
  1765. pr_debug("%s: session %d opcode 0x%x token 0x%x Payload = [0x%x] src %d dest %d\n",
  1766. __func__, ac->session, data->opcode, data->token,
  1767. payload[0], data->src_port, data->dest_port);
  1768. ret = q6asm_is_valid_session(data, priv);
  1769. if (ret != 0) {
  1770. pr_err("%s: session invalid %d\n", __func__, ret);
  1771. spin_unlock_irqrestore(
  1772. &(session[session_id].session_lock), flags);
  1773. return ret;
  1774. }
  1775. case ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2:
  1776. case ASM_STREAM_CMD_OPEN_READ_V3:
  1777. case ASM_STREAM_CMD_OPEN_WRITE_V3:
  1778. case ASM_STREAM_CMD_OPEN_PULL_MODE_WRITE:
  1779. case ASM_STREAM_CMD_OPEN_PUSH_MODE_READ:
  1780. case ASM_STREAM_CMD_OPEN_READWRITE_V2:
  1781. case ASM_STREAM_CMD_OPEN_LOOPBACK_V2:
  1782. case ASM_STREAM_CMD_OPEN_TRANSCODE_LOOPBACK:
  1783. case ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2:
  1784. case ASM_DATA_CMD_IEC_60958_MEDIA_FMT:
  1785. case ASM_STREAM_CMD_SET_ENCDEC_PARAM:
  1786. case ASM_STREAM_CMD_SET_ENCDEC_PARAM_V2:
  1787. case ASM_STREAM_CMD_REGISTER_ENCDEC_EVENTS:
  1788. case ASM_STREAM_CMD_REGISTER_IEC_61937_FMT_UPDATE:
  1789. case ASM_DATA_CMD_REMOVE_INITIAL_SILENCE:
  1790. case ASM_DATA_CMD_REMOVE_TRAILING_SILENCE:
  1791. case ASM_SESSION_CMD_REGISTER_FOR_RX_UNDERFLOW_EVENTS:
  1792. case ASM_STREAM_CMD_OPEN_READ_COMPRESSED:
  1793. case ASM_STREAM_CMD_OPEN_WRITE_COMPRESSED:
  1794. if (data->payload_size >= 2 * sizeof(uint32_t)) {
  1795. pr_debug("%s: session %d opcode 0x%x token 0x%x Payload = [0x%x] stat 0x%x src %d dest %d\n",
  1796. __func__, ac->session,
  1797. data->opcode, data->token,
  1798. payload[0], payload[1],
  1799. data->src_port, data->dest_port);
  1800. if (payload[1] != 0) {
  1801. pr_err("%s: cmd = 0x%x returned error = 0x%x\n",
  1802. __func__, payload[0], payload[1]);
  1803. if (wakeup_flag) {
  1804. if ((is_adsp_reg_event(payload[0]) >=
  1805. 0) ||
  1806. (payload[0] ==
  1807. ASM_STREAM_CMD_SET_PP_PARAMS_V2) ||
  1808. (payload[0] ==
  1809. ASM_STREAM_CMD_SET_PP_PARAMS_V3))
  1810. atomic_set(&ac->cmd_state_pp,
  1811. payload[1]);
  1812. else
  1813. atomic_set(&ac->cmd_state,
  1814. payload[1]);
  1815. wake_up(&ac->cmd_wait);
  1816. }
  1817. spin_unlock_irqrestore(
  1818. &(session[session_id].session_lock),
  1819. flags);
  1820. return 0;
  1821. }
  1822. } else {
  1823. pr_err("%s: payload size of %x is less than expected.\n",
  1824. __func__, data->payload_size);
  1825. }
  1826. if ((is_adsp_reg_event(payload[0]) >= 0) ||
  1827. (payload[0] == ASM_STREAM_CMD_SET_PP_PARAMS_V2) ||
  1828. (payload[0] == ASM_STREAM_CMD_SET_PP_PARAMS_V3)) {
  1829. if (atomic_read(&ac->cmd_state_pp) &&
  1830. wakeup_flag) {
  1831. atomic_set(&ac->cmd_state_pp, 0);
  1832. wake_up(&ac->cmd_wait);
  1833. }
  1834. } else {
  1835. if (atomic_read(&ac->cmd_state) &&
  1836. wakeup_flag) {
  1837. atomic_set(&ac->cmd_state, 0);
  1838. wake_up(&ac->cmd_wait);
  1839. }
  1840. }
  1841. if (ac->cb)
  1842. ac->cb(data->opcode, data->token,
  1843. (uint32_t *)data->payload, ac->priv);
  1844. break;
  1845. case ASM_CMD_ADD_TOPOLOGIES:
  1846. if (data->payload_size >= 2 * sizeof(uint32_t)) {
  1847. pr_debug("%s:Payload = [0x%x]stat[0x%x]\n",
  1848. __func__, payload[0], payload[1]);
  1849. if (payload[1] != 0) {
  1850. pr_err("%s: cmd = 0x%x returned error = 0x%x\n",
  1851. __func__, payload[0], payload[1]);
  1852. if (wakeup_flag) {
  1853. atomic_set(&ac->mem_state, payload[1]);
  1854. wake_up(&ac->mem_wait);
  1855. }
  1856. spin_unlock_irqrestore(
  1857. &(session[session_id].session_lock),
  1858. flags);
  1859. return 0;
  1860. }
  1861. } else {
  1862. pr_err("%s: payload size of %x is less than expected.\n",
  1863. __func__, data->payload_size);
  1864. }
  1865. if (atomic_read(&ac->mem_state) && wakeup_flag) {
  1866. atomic_set(&ac->mem_state, 0);
  1867. wake_up(&ac->mem_wait);
  1868. }
  1869. if (ac->cb)
  1870. ac->cb(data->opcode, data->token,
  1871. (uint32_t *)data->payload, ac->priv);
  1872. break;
  1873. case ASM_DATA_EVENT_WATERMARK: {
  1874. if (data->payload_size >= 2 * sizeof(uint32_t))
  1875. pr_debug("%s: Watermark opcode[0x%x] status[0x%x]",
  1876. __func__, payload[0], payload[1]);
  1877. else
  1878. pr_err("%s: payload size of %x is less than expected.\n",
  1879. __func__, data->payload_size);
  1880. break;
  1881. }
  1882. case ASM_STREAM_CMD_GET_PP_PARAMS_V2:
  1883. case ASM_STREAM_CMD_GET_PP_PARAMS_V3:
  1884. pr_debug("%s: ASM_STREAM_CMD_GET_PP_PARAMS session %d opcode 0x%x token 0x%x src %d dest %d\n",
  1885. __func__, ac->session, data->opcode,
  1886. data->token, data->src_port, data->dest_port);
  1887. /* Should only come here if there is an APR */
  1888. /* error or malformed APR packet. Otherwise */
  1889. /* response will be returned as */
  1890. /* ASM_STREAM_CMDRSP_GET_PP_PARAMS_V2 */
  1891. if (data->payload_size >= 2 * sizeof(uint32_t)) {
  1892. if (payload[1] != 0) {
  1893. pr_err("%s: ASM get param error = %d, resuming\n",
  1894. __func__, payload[1]);
  1895. rtac_make_asm_callback(ac->session, payload,
  1896. data->payload_size);
  1897. }
  1898. } else {
  1899. pr_err("%s: payload size of %x is less than expected.\n",
  1900. __func__, data->payload_size);
  1901. }
  1902. break;
  1903. case ASM_STREAM_CMD_REGISTER_PP_EVENTS:
  1904. pr_debug("%s: ASM_STREAM_CMD_REGISTER_PP_EVENTS session %d opcode 0x%x token 0x%x src %d dest %d\n",
  1905. __func__, ac->session,
  1906. data->opcode, data->token,
  1907. data->src_port, data->dest_port);
  1908. if (data->payload_size >= 2 * sizeof(uint32_t)) {
  1909. if (payload[1] != 0)
  1910. pr_err("%s: ASM get param error = %d, resuming\n",
  1911. __func__, payload[1]);
  1912. atomic_set(&ac->cmd_state_pp, payload[1]);
  1913. wake_up(&ac->cmd_wait);
  1914. } else {
  1915. pr_err("%s: payload size of %x is less than expected.\n",
  1916. __func__, data->payload_size);
  1917. }
  1918. break;
  1919. default:
  1920. pr_debug("%s: command[0x%x] not expecting rsp\n",
  1921. __func__, payload[0]);
  1922. break;
  1923. }
  1924. spin_unlock_irqrestore(
  1925. &(session[session_id].session_lock), flags);
  1926. return 0;
  1927. }
  1928. switch (data->opcode) {
  1929. case ASM_DATA_EVENT_WRITE_DONE_V2:{
  1930. struct audio_port_data *port = &ac->port[IN];
  1931. if (data->payload_size >= 2 * sizeof(uint32_t))
  1932. dev_vdbg(ac->dev, "%s: Rxed opcode[0x%x] status[0x%x] token[%d]",
  1933. __func__, payload[0], payload[1],
  1934. data->token);
  1935. else
  1936. dev_err(ac->dev, "%s: payload size of %x is less than expected.\n",
  1937. __func__, data->payload_size);
  1938. if (ac->io_mode & SYNC_IO_MODE) {
  1939. if (port->buf == NULL) {
  1940. pr_err("%s: Unexpected Write Done\n",
  1941. __func__);
  1942. spin_unlock_irqrestore(
  1943. &(session[session_id].session_lock),
  1944. flags);
  1945. return -EINVAL;
  1946. }
  1947. spin_lock_irqsave(&port->dsp_lock, dsp_flags);
  1948. buf_index = asm_token._token.buf_index;
  1949. if ( data->payload_size >= 2 * sizeof(uint32_t) &&
  1950. (lower_32_bits(port->buf[buf_index].phys) !=
  1951. payload[0] ||
  1952. msm_audio_populate_upper_32_bits(
  1953. port->buf[buf_index].phys) != payload[1])) {
  1954. pr_debug("%s: Expected addr %pK\n",
  1955. __func__, &port->buf[buf_index].phys);
  1956. pr_err("%s: rxedl[0x%x] rxedu [0x%x]\n",
  1957. __func__, payload[0], payload[1]);
  1958. spin_unlock_irqrestore(&port->dsp_lock,
  1959. dsp_flags);
  1960. spin_unlock_irqrestore(
  1961. &(session[session_id].session_lock),
  1962. flags);
  1963. return -EINVAL;
  1964. }
  1965. port->buf[buf_index].used = 1;
  1966. spin_unlock_irqrestore(&port->dsp_lock, dsp_flags);
  1967. config_debug_fs_write_cb();
  1968. for (i = 0; i < port->max_buf_cnt; i++)
  1969. dev_vdbg(ac->dev, "%s %d\n",
  1970. __func__, port->buf[i].used);
  1971. }
  1972. break;
  1973. }
  1974. case ASM_STREAM_CMDRSP_GET_PP_PARAMS_V2:
  1975. case ASM_STREAM_CMDRSP_GET_PP_PARAMS_V3:
  1976. pr_debug("%s: ASM_STREAM_CMDRSP_GET_PP_PARAMS session %d opcode 0x%x token 0x%x src %d dest %d\n",
  1977. __func__, ac->session, data->opcode, data->token,
  1978. data->src_port, data->dest_port);
  1979. if (payload[0] != 0) {
  1980. pr_err("%s: ASM_STREAM_CMDRSP_GET_PP_PARAMS returned error = 0x%x\n",
  1981. __func__, payload[0]);
  1982. } else if (generic_get_data) {
  1983. generic_get_data->valid = 1;
  1984. if (generic_get_data->is_inband) {
  1985. if (data->payload_size >= 4 * sizeof(uint32_t))
  1986. pr_debug("%s: payload[1] = 0x%x, payload[2]=0x%x, payload[3]=0x%x\n",
  1987. __func__, payload[1], payload[2], payload[3]);
  1988. else
  1989. pr_err("%s: payload size of %x is less than expected.\n",
  1990. __func__,
  1991. data->payload_size);
  1992. if (data->payload_size >= (4 + (payload[3]>>2)) * sizeof(uint32_t)) {
  1993. generic_get_data->size_in_ints = payload[3]>>2;
  1994. for (i = 0; i < payload[3]>>2; i++) {
  1995. generic_get_data->ints[i] =
  1996. payload[4+i];
  1997. pr_debug("%s: ASM callback val %i = %i\n",
  1998. __func__, i, payload[4+i]);
  1999. }
  2000. } else {
  2001. pr_err("%s: payload size of %x is less than expected.\n",
  2002. __func__, data->payload_size);
  2003. }
  2004. pr_debug("%s: callback size in ints = %i\n",
  2005. __func__,
  2006. generic_get_data->size_in_ints);
  2007. }
  2008. if (atomic_read(&ac->cmd_state) && wakeup_flag) {
  2009. atomic_set(&ac->cmd_state, 0);
  2010. wake_up(&ac->cmd_wait);
  2011. }
  2012. break;
  2013. }
  2014. rtac_make_asm_callback(ac->session, payload,
  2015. data->payload_size);
  2016. break;
  2017. case ASM_DATA_EVENT_READ_DONE_V2:{
  2018. struct audio_port_data *port = &ac->port[OUT];
  2019. config_debug_fs_read_cb();
  2020. dev_vdbg(ac->dev, "%s: ReadDone: status=%d buff_add=0x%x act_size=%d offset=%d\n",
  2021. __func__, payload[READDONE_IDX_STATUS],
  2022. payload[READDONE_IDX_BUFADD_LSW],
  2023. payload[READDONE_IDX_SIZE],
  2024. payload[READDONE_IDX_OFFSET]);
  2025. dev_vdbg(ac->dev, "%s: ReadDone:msw_ts=%d lsw_ts=%d memmap_hdl=0x%x flags=%d id=%d num=%d\n",
  2026. __func__, payload[READDONE_IDX_MSW_TS],
  2027. payload[READDONE_IDX_LSW_TS],
  2028. payload[READDONE_IDX_MEMMAP_HDL],
  2029. payload[READDONE_IDX_FLAGS],
  2030. payload[READDONE_IDX_SEQ_ID],
  2031. payload[READDONE_IDX_NUMFRAMES]);
  2032. if (ac->io_mode & SYNC_IO_MODE) {
  2033. if (port->buf == NULL) {
  2034. pr_err("%s: Unexpected Read Done\n", __func__);
  2035. spin_unlock_irqrestore(
  2036. &(session[session_id].session_lock),
  2037. flags);
  2038. return -EINVAL;
  2039. }
  2040. spin_lock_irqsave(&port->dsp_lock, dsp_flags);
  2041. buf_index = asm_token._token.buf_index;
  2042. port->buf[buf_index].used = 0;
  2043. if (lower_32_bits(port->buf[buf_index].phys) !=
  2044. payload[READDONE_IDX_BUFADD_LSW] ||
  2045. msm_audio_populate_upper_32_bits(
  2046. port->buf[buf_index].phys) !=
  2047. payload[READDONE_IDX_BUFADD_MSW]) {
  2048. dev_vdbg(ac->dev, "%s: Expected addr %pK\n",
  2049. __func__, &port->buf[buf_index].phys);
  2050. pr_err("%s: rxedl[0x%x] rxedu[0x%x]\n",
  2051. __func__,
  2052. payload[READDONE_IDX_BUFADD_LSW],
  2053. payload[READDONE_IDX_BUFADD_MSW]);
  2054. spin_unlock_irqrestore(&port->dsp_lock,
  2055. dsp_flags);
  2056. break;
  2057. }
  2058. port->buf[buf_index].actual_size =
  2059. payload[READDONE_IDX_SIZE];
  2060. spin_unlock_irqrestore(&port->dsp_lock, dsp_flags);
  2061. }
  2062. break;
  2063. }
  2064. case ASM_DATA_EVENT_EOS:
  2065. case ASM_DATA_EVENT_RENDERED_EOS:
  2066. pr_debug("%s: EOS ACK received: rxed session %d opcode 0x%x token 0x%x src %d dest %d\n",
  2067. __func__, ac->session,
  2068. data->opcode, data->token,
  2069. data->src_port, data->dest_port);
  2070. break;
  2071. case ASM_SESSION_EVENTX_OVERFLOW:
  2072. pr_debug("%s: ASM_SESSION_EVENTX_OVERFLOW session %d opcode 0x%x token 0x%x src %d dest %d\n",
  2073. __func__, ac->session,
  2074. data->opcode, data->token,
  2075. data->src_port, data->dest_port);
  2076. break;
  2077. case ASM_SESSION_EVENT_RX_UNDERFLOW:
  2078. pr_debug("%s: ASM_SESSION_EVENT_RX_UNDERFLOW session %d opcode 0x%x token 0x%x src %d dest %d\n",
  2079. __func__, ac->session,
  2080. data->opcode, data->token,
  2081. data->src_port, data->dest_port);
  2082. break;
  2083. case ASM_SESSION_CMDRSP_GET_SESSIONTIME_V3:
  2084. if (data->payload_size >= 3 * sizeof(uint32_t)) {
  2085. dev_vdbg(ac->dev, "%s: ASM_SESSION_CMDRSP_GET_SESSIONTIME_V3, payload[0] = %d, payload[1] = %d, payload[2] = %d\n",
  2086. __func__,
  2087. payload[0], payload[1], payload[2]);
  2088. ac->time_stamp = (uint64_t)(((uint64_t)payload[2] << 32) |
  2089. payload[1]);
  2090. } else {
  2091. dev_err(ac->dev, "%s: payload size of %x is less than expected.n",
  2092. __func__, data->payload_size);
  2093. }
  2094. if (atomic_cmpxchg(&ac->time_flag, 1, 0))
  2095. wake_up(&ac->time_wait);
  2096. break;
  2097. case ASM_DATA_EVENT_SR_CM_CHANGE_NOTIFY:
  2098. case ASM_DATA_EVENT_ENC_SR_CM_CHANGE_NOTIFY:
  2099. pr_debug("%s: ASM_DATA_EVENT_SR_CM_CHANGE_NOTIFY session %d opcode 0x%x token 0x%x src %d dest %d\n",
  2100. __func__, ac->session,
  2101. data->opcode, data->token,
  2102. data->src_port, data->dest_port);
  2103. if (data->payload_size >= 4 * sizeof(uint32_t))
  2104. pr_debug("%s: ASM_DATA_EVENT_SR_CM_CHANGE_NOTIFY, payload[0] = %d, payload[1] = %d, payload[2] = %d, payload[3] = %d\n",
  2105. __func__,
  2106. payload[0], payload[1], payload[2],
  2107. payload[3]);
  2108. else
  2109. pr_debug("%s: payload size of %x is less than expected.\n",
  2110. __func__, data->payload_size);
  2111. break;
  2112. case ASM_SESSION_CMDRSP_GET_MTMX_STRTR_PARAMS_V2:
  2113. q6asm_process_mtmx_get_param_rsp(ac, (void *) payload);
  2114. break;
  2115. case ASM_STREAM_PP_EVENT:
  2116. case ASM_STREAM_CMD_ENCDEC_EVENTS:
  2117. case ASM_IEC_61937_MEDIA_FMT_EVENT:
  2118. if (data->payload_size >= 2 * sizeof(uint32_t))
  2119. pr_debug("%s: ASM_STREAM_EVENT payload[0][0x%x] payload[1][0x%x]",
  2120. __func__, payload[0], payload[1]);
  2121. else if (data->payload_size >= sizeof(uint32_t))
  2122. pr_debug("%s: ASM_STREAM_EVENT payload[0][0x%x]",
  2123. __func__, payload[0]);
  2124. else
  2125. pr_debug("%s: payload size of %x is less than expected.\n",
  2126. __func__, data->payload_size);
  2127. i = is_adsp_raise_event(data->opcode);
  2128. if (i < 0) {
  2129. spin_unlock_irqrestore(
  2130. &(session[session_id].session_lock), flags);
  2131. return 0;
  2132. }
  2133. /* repack payload for asm_stream_pp_event
  2134. * package is composed of event type + size + actual payload
  2135. */
  2136. payload_size = data->payload_size;
  2137. if (payload_size > UINT_MAX - sizeof(struct msm_adsp_event_data)) {
  2138. pr_err("%s: payload size = %d exceeds limit.\n",
  2139. __func__, payload_size);
  2140. spin_unlock(&(session[session_id].session_lock));
  2141. return -EINVAL;
  2142. }
  2143. pp_event_package = kzalloc(payload_size
  2144. + sizeof(struct msm_adsp_event_data),
  2145. GFP_ATOMIC);
  2146. if (!pp_event_package) {
  2147. spin_unlock_irqrestore(
  2148. &(session[session_id].session_lock), flags);
  2149. return -ENOMEM;
  2150. }
  2151. pp_event_package->event_type = i;
  2152. pp_event_package->payload_len = payload_size;
  2153. memcpy((void *)pp_event_package->payload,
  2154. data->payload, payload_size);
  2155. if ((data->opcode == ASM_IEC_61937_MEDIA_FMT_EVENT) &&
  2156. (payload_size == 4)) {
  2157. switch (payload[0]) {
  2158. case ASM_MEDIA_FMT_AC3:
  2159. ((uint32_t *)pp_event_package->payload)[0] =
  2160. SND_AUDIOCODEC_AC3;
  2161. break;
  2162. case ASM_MEDIA_FMT_EAC3:
  2163. ((uint32_t *)pp_event_package->payload)[0] =
  2164. SND_AUDIOCODEC_EAC3;
  2165. break;
  2166. case ASM_MEDIA_FMT_DTS:
  2167. ((uint32_t *)pp_event_package->payload)[0] =
  2168. SND_AUDIOCODEC_DTS;
  2169. break;
  2170. case ASM_MEDIA_FMT_TRUEHD:
  2171. ((uint32_t *)pp_event_package->payload)[0] =
  2172. SND_AUDIOCODEC_TRUEHD;
  2173. break;
  2174. case ASM_MEDIA_FMT_AAC_V2:
  2175. ((uint32_t *)pp_event_package->payload)[0] =
  2176. SND_AUDIOCODEC_AAC;
  2177. break;
  2178. default:
  2179. pr_debug("%s: Event with unknown media_fmt 0x%x\n",
  2180. __func__, payload[0]);
  2181. }
  2182. }
  2183. ac->cb(data->opcode, data->token,
  2184. (void *)pp_event_package, ac->priv);
  2185. kfree(pp_event_package);
  2186. spin_unlock_irqrestore(
  2187. &(session[session_id].session_lock), flags);
  2188. return 0;
  2189. case ASM_SESSION_CMDRSP_ADJUST_SESSION_CLOCK_V2:
  2190. if (data->payload_size >= 3 * sizeof(uint32_t))
  2191. pr_debug("%s: ASM_SESSION_CMDRSP_ADJUST_SESSION_CLOCK_V2 sesion %d status 0x%x msw %u lsw %u\n",
  2192. __func__, ac->session, payload[0], payload[2],
  2193. payload[1]);
  2194. else
  2195. pr_err("%s: payload size of %x is less than expected.\n",
  2196. __func__, data->payload_size);
  2197. wake_up(&ac->cmd_wait);
  2198. break;
  2199. case ASM_SESSION_CMDRSP_GET_PATH_DELAY_V2:
  2200. if (data->payload_size >= 3 * sizeof(uint32_t))
  2201. pr_debug("%s: ASM_SESSION_CMDRSP_GET_PATH_DELAY_V2 session %d status 0x%x msw %u lsw %u\n",
  2202. __func__, ac->session, payload[0], payload[2],
  2203. payload[1]);
  2204. else
  2205. pr_err("%s: payload size of %x is less than expected.\n",
  2206. __func__, data->payload_size);
  2207. if (payload[0] == 0 && data->payload_size >= 2 * sizeof(uint32_t)) {
  2208. atomic_set(&ac->cmd_state, 0);
  2209. /* ignore msw, as a delay that large shouldn't happen */
  2210. ac->path_delay = payload[1];
  2211. } else {
  2212. atomic_set(&ac->cmd_state, payload[0]);
  2213. ac->path_delay = UINT_MAX;
  2214. }
  2215. wake_up(&ac->cmd_wait);
  2216. break;
  2217. }
  2218. if (ac->cb)
  2219. ac->cb(data->opcode, data->token,
  2220. data->payload, ac->priv);
  2221. spin_unlock_irqrestore(
  2222. &(session[session_id].session_lock), flags);
  2223. return 0;
  2224. }
  2225. /**
  2226. * q6asm_is_cpu_buf_avail -
  2227. * retrieve next CPU buf avail
  2228. *
  2229. * @dir: RX or TX direction
  2230. * @ac: Audio client handle
  2231. * @size: size pointer to be updated with size of buffer
  2232. * @index: index pointer to be updated with
  2233. * CPU buffer index available
  2234. *
  2235. * Returns buffer pointer on success or NULL on failure
  2236. */
  2237. void *q6asm_is_cpu_buf_avail(int dir, struct audio_client *ac, uint32_t *size,
  2238. uint32_t *index)
  2239. {
  2240. void *data;
  2241. unsigned char idx;
  2242. struct audio_port_data *port;
  2243. if (!ac || ((dir != IN) && (dir != OUT))) {
  2244. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  2245. return NULL;
  2246. }
  2247. if (ac->io_mode & SYNC_IO_MODE) {
  2248. port = &ac->port[dir];
  2249. mutex_lock(&port->lock);
  2250. idx = port->cpu_buf;
  2251. if (port->buf == NULL) {
  2252. pr_err("%s: Buffer pointer null\n", __func__);
  2253. mutex_unlock(&port->lock);
  2254. return NULL;
  2255. }
  2256. /* dir 0: used = 0 means buf in use
  2257. * dir 1: used = 1 means buf in use
  2258. */
  2259. if (port->buf[idx].used == dir) {
  2260. /* To make it more robust, we could loop and get the
  2261. * next avail buf, its risky though
  2262. */
  2263. pr_err("%s: Next buf idx[0x%x] not available, dir[%d]\n",
  2264. __func__, idx, dir);
  2265. mutex_unlock(&port->lock);
  2266. return NULL;
  2267. }
  2268. *size = port->buf[idx].actual_size;
  2269. *index = port->cpu_buf;
  2270. data = port->buf[idx].data;
  2271. dev_vdbg(ac->dev, "%s: session[%d]index[%d] data[%pK]size[%d]\n",
  2272. __func__,
  2273. ac->session,
  2274. port->cpu_buf,
  2275. data, *size);
  2276. /* By default increase the cpu_buf cnt
  2277. * user accesses this function,increase cpu
  2278. * buf(to avoid another api)
  2279. */
  2280. port->buf[idx].used = dir;
  2281. port->cpu_buf = q6asm_get_next_buf(ac, port->cpu_buf,
  2282. port->max_buf_cnt);
  2283. mutex_unlock(&port->lock);
  2284. return data;
  2285. }
  2286. return NULL;
  2287. }
  2288. EXPORT_SYMBOL(q6asm_is_cpu_buf_avail);
  2289. /**
  2290. * q6asm_cpu_buf_release -
  2291. * releases cpu buffer for ASM
  2292. *
  2293. * @dir: RX or TX direction
  2294. * @ac: Audio client handle
  2295. *
  2296. * Returns 0 on success or error on failure
  2297. */
  2298. int q6asm_cpu_buf_release(int dir, struct audio_client *ac)
  2299. {
  2300. struct audio_port_data *port;
  2301. int ret = 0;
  2302. int idx;
  2303. if (!ac || ((dir != IN) && (dir != OUT))) {
  2304. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  2305. ret = -EINVAL;
  2306. goto exit;
  2307. }
  2308. if (ac->io_mode & SYNC_IO_MODE) {
  2309. port = &ac->port[dir];
  2310. mutex_lock(&port->lock);
  2311. idx = port->cpu_buf;
  2312. if (port->cpu_buf == 0) {
  2313. port->cpu_buf = port->max_buf_cnt - 1;
  2314. } else if (port->cpu_buf < port->max_buf_cnt) {
  2315. port->cpu_buf = port->cpu_buf - 1;
  2316. } else {
  2317. pr_err("%s: buffer index(%d) out of range\n",
  2318. __func__, port->cpu_buf);
  2319. ret = -EINVAL;
  2320. mutex_unlock(&port->lock);
  2321. goto exit;
  2322. }
  2323. port->buf[port->cpu_buf].used = dir ^ 1;
  2324. mutex_unlock(&port->lock);
  2325. }
  2326. exit:
  2327. return ret;
  2328. }
  2329. EXPORT_SYMBOL(q6asm_cpu_buf_release);
  2330. /**
  2331. * q6asm_is_cpu_buf_avail_nolock -
  2332. * retrieve next CPU buf avail without lock acquire
  2333. *
  2334. * @dir: RX or TX direction
  2335. * @ac: Audio client handle
  2336. * @size: size pointer to be updated with size of buffer
  2337. * @index: index pointer to be updated with
  2338. * CPU buffer index available
  2339. *
  2340. * Returns buffer pointer on success or NULL on failure
  2341. */
  2342. void *q6asm_is_cpu_buf_avail_nolock(int dir, struct audio_client *ac,
  2343. uint32_t *size, uint32_t *index)
  2344. {
  2345. void *data;
  2346. unsigned char idx;
  2347. struct audio_port_data *port;
  2348. if (!ac || ((dir != IN) && (dir != OUT))) {
  2349. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  2350. return NULL;
  2351. }
  2352. port = &ac->port[dir];
  2353. idx = port->cpu_buf;
  2354. if (port->buf == NULL) {
  2355. pr_err("%s: Buffer pointer null\n", __func__);
  2356. return NULL;
  2357. }
  2358. /*
  2359. * dir 0: used = 0 means buf in use
  2360. * dir 1: used = 1 means buf in use
  2361. */
  2362. if (port->buf[idx].used == dir) {
  2363. /*
  2364. * To make it more robust, we could loop and get the
  2365. * next avail buf, its risky though
  2366. */
  2367. pr_err("%s: Next buf idx[0x%x] not available, dir[%d]\n",
  2368. __func__, idx, dir);
  2369. return NULL;
  2370. }
  2371. *size = port->buf[idx].actual_size;
  2372. *index = port->cpu_buf;
  2373. data = port->buf[idx].data;
  2374. dev_vdbg(ac->dev, "%s: session[%d]index[%d] data[%pK]size[%d]\n",
  2375. __func__, ac->session, port->cpu_buf,
  2376. data, *size);
  2377. /*
  2378. * By default increase the cpu_buf cnt
  2379. * user accesses this function,increase cpu
  2380. * buf(to avoid another api)
  2381. */
  2382. port->buf[idx].used = dir;
  2383. port->cpu_buf = q6asm_get_next_buf(ac, port->cpu_buf,
  2384. port->max_buf_cnt);
  2385. return data;
  2386. }
  2387. EXPORT_SYMBOL(q6asm_is_cpu_buf_avail_nolock);
  2388. int q6asm_is_dsp_buf_avail(int dir, struct audio_client *ac)
  2389. {
  2390. int ret = -1;
  2391. struct audio_port_data *port;
  2392. uint32_t idx;
  2393. if (!ac || (dir != OUT)) {
  2394. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  2395. return ret;
  2396. }
  2397. if (ac->io_mode & SYNC_IO_MODE) {
  2398. port = &ac->port[dir];
  2399. mutex_lock(&port->lock);
  2400. idx = port->dsp_buf;
  2401. if (port->buf[idx].used == (dir ^ 1)) {
  2402. /* To make it more robust, we could loop and get the
  2403. * next avail buf, its risky though
  2404. */
  2405. pr_err("%s: Next buf idx[0x%x] not available, dir[%d]\n",
  2406. __func__, idx, dir);
  2407. mutex_unlock(&port->lock);
  2408. return ret;
  2409. }
  2410. dev_vdbg(ac->dev, "%s: session[%d]dsp_buf=%d cpu_buf=%d\n",
  2411. __func__,
  2412. ac->session, port->dsp_buf, port->cpu_buf);
  2413. ret = ((port->dsp_buf != port->cpu_buf) ? 0 : -1);
  2414. mutex_unlock(&port->lock);
  2415. }
  2416. return ret;
  2417. }
  2418. static void __q6asm_add_hdr(struct audio_client *ac, struct apr_hdr *hdr,
  2419. uint32_t pkt_size, uint32_t cmd_flg, uint32_t stream_id)
  2420. {
  2421. unsigned long flags = 0;
  2422. dev_vdbg(ac->dev, "%s: pkt_size=%d cmd_flg=%d session=%d stream_id=%d\n",
  2423. __func__, pkt_size, cmd_flg, ac->session, stream_id);
  2424. mutex_lock(&ac->cmd_lock);
  2425. spin_lock_irqsave(&(session[ac->session].session_lock), flags);
  2426. if (ac->apr == NULL) {
  2427. pr_err("%s: AC APR handle NULL", __func__);
  2428. spin_unlock_irqrestore(
  2429. &(session[ac->session].session_lock), flags);
  2430. mutex_unlock(&ac->cmd_lock);
  2431. return;
  2432. }
  2433. hdr->hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2434. APR_HDR_LEN(sizeof(struct apr_hdr)),
  2435. APR_PKT_VER);
  2436. hdr->src_svc = ((struct apr_svc *)ac->apr)->id;
  2437. hdr->src_domain = APR_DOMAIN_APPS;
  2438. hdr->dest_svc = APR_SVC_ASM;
  2439. hdr->dest_domain = APR_DOMAIN_ADSP;
  2440. hdr->src_port = ((ac->session << 8) & 0xFF00) | (stream_id);
  2441. hdr->dest_port = ((ac->session << 8) & 0xFF00) | (stream_id);
  2442. if (cmd_flg)
  2443. q6asm_update_token(&hdr->token,
  2444. ac->session,
  2445. 0, /* Stream ID is NA */
  2446. 0, /* Buffer index is NA */
  2447. 0, /* Direction flag is NA */
  2448. WAIT_CMD);
  2449. hdr->pkt_size = pkt_size;
  2450. spin_unlock_irqrestore(
  2451. &(session[ac->session].session_lock), flags);
  2452. mutex_unlock(&ac->cmd_lock);
  2453. }
  2454. static void q6asm_add_hdr(struct audio_client *ac, struct apr_hdr *hdr,
  2455. uint32_t pkt_size, uint32_t cmd_flg)
  2456. {
  2457. __q6asm_add_hdr(ac, hdr, pkt_size, cmd_flg, ac->stream_id);
  2458. }
  2459. static void q6asm_stream_add_hdr(struct audio_client *ac, struct apr_hdr *hdr,
  2460. uint32_t pkt_size, uint32_t cmd_flg, int32_t stream_id)
  2461. {
  2462. __q6asm_add_hdr(ac, hdr, pkt_size, cmd_flg, stream_id);
  2463. }
  2464. static void __q6asm_add_hdr_async(struct audio_client *ac, struct apr_hdr *hdr,
  2465. uint32_t pkt_size, uint32_t cmd_flg,
  2466. uint32_t stream_id, u8 no_wait_flag)
  2467. {
  2468. dev_vdbg(ac->dev, "%s: pkt_size = %d, cmd_flg = %d, session = %d stream_id=%d\n",
  2469. __func__, pkt_size, cmd_flg, ac->session, stream_id);
  2470. hdr->hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2471. APR_HDR_LEN(sizeof(struct apr_hdr)),
  2472. APR_PKT_VER);
  2473. if (ac->apr == NULL) {
  2474. pr_err("%s: AC APR is NULL", __func__);
  2475. return;
  2476. }
  2477. hdr->src_svc = ((struct apr_svc *)ac->apr)->id;
  2478. hdr->src_domain = APR_DOMAIN_APPS;
  2479. hdr->dest_svc = APR_SVC_ASM;
  2480. hdr->dest_domain = APR_DOMAIN_ADSP;
  2481. hdr->src_port = ((ac->session << 8) & 0xFF00) | (stream_id);
  2482. hdr->dest_port = ((ac->session << 8) & 0xFF00) | (stream_id);
  2483. if (cmd_flg) {
  2484. q6asm_update_token(&hdr->token,
  2485. ac->session,
  2486. 0, /* Stream ID is NA */
  2487. 0, /* Buffer index is NA */
  2488. 0, /* Direction flag is NA */
  2489. no_wait_flag);
  2490. }
  2491. hdr->pkt_size = pkt_size;
  2492. }
  2493. static void q6asm_add_hdr_async(struct audio_client *ac, struct apr_hdr *hdr,
  2494. uint32_t pkt_size, uint32_t cmd_flg)
  2495. {
  2496. __q6asm_add_hdr_async(ac, hdr, pkt_size, cmd_flg,
  2497. ac->stream_id, WAIT_CMD);
  2498. }
  2499. static void q6asm_stream_add_hdr_async(struct audio_client *ac,
  2500. struct apr_hdr *hdr, uint32_t pkt_size,
  2501. uint32_t cmd_flg, int32_t stream_id)
  2502. {
  2503. __q6asm_add_hdr_async(ac, hdr, pkt_size, cmd_flg,
  2504. stream_id, NO_WAIT_CMD);
  2505. }
  2506. static void q6asm_add_hdr_custom_topology(struct audio_client *ac,
  2507. struct apr_hdr *hdr,
  2508. uint32_t pkt_size)
  2509. {
  2510. pr_debug("%s: pkt_size=%d session=%d\n",
  2511. __func__, pkt_size, ac->session);
  2512. if (ac->apr == NULL) {
  2513. pr_err("%s: AC APR handle NULL\n", __func__);
  2514. return;
  2515. }
  2516. mutex_lock(&ac->cmd_lock);
  2517. hdr->hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2518. APR_HDR_LEN(sizeof(struct apr_hdr)),
  2519. APR_PKT_VER);
  2520. hdr->src_svc = ((struct apr_svc *)ac->apr)->id;
  2521. hdr->src_domain = APR_DOMAIN_APPS;
  2522. hdr->dest_svc = APR_SVC_ASM;
  2523. hdr->dest_domain = APR_DOMAIN_ADSP;
  2524. hdr->src_port = ((ac->session << 8) & 0xFF00) | 0x01;
  2525. hdr->dest_port = 0;
  2526. q6asm_update_token(&hdr->token,
  2527. ac->session,
  2528. 0, /* Stream ID is NA */
  2529. 0, /* Buffer index is NA */
  2530. 0, /* Direction flag is NA */
  2531. WAIT_CMD);
  2532. hdr->pkt_size = pkt_size;
  2533. mutex_unlock(&ac->cmd_lock);
  2534. }
  2535. static void q6asm_add_mmaphdr(struct audio_client *ac, struct apr_hdr *hdr,
  2536. u32 pkt_size, int dir)
  2537. {
  2538. pr_debug("%s: pkt size=%d\n",
  2539. __func__, pkt_size);
  2540. hdr->hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2541. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  2542. hdr->src_port = 0;
  2543. hdr->dest_port = 0;
  2544. q6asm_update_token(&hdr->token,
  2545. ac->session,
  2546. 0, /* Stream ID is NA */
  2547. 0, /* Buffer index is NA */
  2548. dir,
  2549. WAIT_CMD);
  2550. hdr->pkt_size = pkt_size;
  2551. }
  2552. /**
  2553. * q6asm_set_pp_params
  2554. * command to set ASM parameter data
  2555. * send memory mapping header for out of band case
  2556. * send pre-packed parameter data for in band case
  2557. *
  2558. * @ac: audio client handle
  2559. * @mem_hdr: memory mapping header
  2560. * @param_data: pre-packed parameter payload
  2561. * @param_size: size of pre-packed parameter data
  2562. *
  2563. * Returns 0 on success or error on failure
  2564. */
  2565. int q6asm_set_pp_params(struct audio_client *ac,
  2566. struct mem_mapping_hdr *mem_hdr, u8 *param_data,
  2567. u32 param_size)
  2568. {
  2569. struct asm_stream_cmd_set_pp_params *asm_set_param = NULL;
  2570. int pkt_size = 0;
  2571. int ret = 0;
  2572. int session_id = 0;
  2573. if (ac == NULL) {
  2574. pr_err("%s: Audio Client is NULL\n", __func__);
  2575. return -EINVAL;
  2576. } else if (ac->apr == NULL) {
  2577. pr_err("%s: APR pointer is NULL\n", __func__);
  2578. return -EINVAL;
  2579. }
  2580. session_id = q6asm_get_session_id_from_audio_client(ac);
  2581. if (!session_id)
  2582. return -EINVAL;
  2583. pkt_size = sizeof(struct asm_stream_cmd_set_pp_params);
  2584. /* Add param size to packet size when sending in-band only */
  2585. if (param_data != NULL)
  2586. pkt_size += param_size;
  2587. asm_set_param = kzalloc(pkt_size, GFP_KERNEL);
  2588. if (!asm_set_param)
  2589. return -ENOMEM;
  2590. mutex_lock(&session[session_id].mutex_lock_per_session);
  2591. if (!q6asm_is_valid_audio_client(ac)) {
  2592. ret = -EINVAL;
  2593. goto done;
  2594. }
  2595. if (ac->apr == NULL) {
  2596. pr_err("%s: AC APR handle NULL\n", __func__);
  2597. ret = -EINVAL;
  2598. goto done;
  2599. }
  2600. q6asm_add_hdr_async(ac, &asm_set_param->apr_hdr, pkt_size, TRUE);
  2601. /* With pre-packed data, only the opcode differs from V2 and V3. */
  2602. if (q6common_is_instance_id_supported())
  2603. asm_set_param->apr_hdr.opcode = ASM_STREAM_CMD_SET_PP_PARAMS_V3;
  2604. else
  2605. asm_set_param->apr_hdr.opcode = ASM_STREAM_CMD_SET_PP_PARAMS_V2;
  2606. asm_set_param->payload_size = param_size;
  2607. if (mem_hdr != NULL) {
  2608. /* Out of band case */
  2609. asm_set_param->mem_hdr = *mem_hdr;
  2610. } else if (param_data != NULL) {
  2611. /*
  2612. * In band case. Parameter data must be pre-packed with its
  2613. * header before calling this function. Use
  2614. * q6common_pack_pp_params to pack parameter data and header
  2615. * correctly.
  2616. */
  2617. memcpy(&asm_set_param->param_data, param_data, param_size);
  2618. } else {
  2619. pr_err("%s: Received NULL pointers for both mem header and param data\n",
  2620. __func__);
  2621. ret = -EINVAL;
  2622. goto done;
  2623. }
  2624. atomic_set(&ac->cmd_state_pp, -1);
  2625. ret = apr_send_pkt(ac->apr, (uint32_t *)asm_set_param);
  2626. if (ret < 0) {
  2627. pr_err("%s: apr send failed rc %d\n", __func__, ret);
  2628. ret = -EINVAL;
  2629. goto done;
  2630. }
  2631. ret = wait_event_timeout(ac->cmd_wait,
  2632. atomic_read(&ac->cmd_state_pp) >= 0,
  2633. msecs_to_jiffies(TIMEOUT_MS));
  2634. if (!ret) {
  2635. pr_err("%s: timeout sending apr pkt\n", __func__);
  2636. ret = -ETIMEDOUT;
  2637. goto done;
  2638. }
  2639. if (atomic_read(&ac->cmd_state_pp) > 0) {
  2640. pr_err("%s: DSP returned error[%s]\n", __func__,
  2641. adsp_err_get_err_str(atomic_read(&ac->cmd_state_pp)));
  2642. ret = adsp_err_get_lnx_err_code(atomic_read(&ac->cmd_state_pp));
  2643. goto done;
  2644. }
  2645. ret = 0;
  2646. done:
  2647. mutex_unlock(&session[session_id].mutex_lock_per_session);
  2648. kfree(asm_set_param);
  2649. return ret;
  2650. }
  2651. EXPORT_SYMBOL(q6asm_set_pp_params);
  2652. /**
  2653. * q6asm_pack_and_set_pp_param_in_band
  2654. * command to pack and set parameter data for in band case
  2655. *
  2656. * @ac: audio client handle
  2657. * @param_hdr: parameter header
  2658. * @param_data: parameter data
  2659. *
  2660. * Returns 0 on success or error on failure
  2661. */
  2662. int q6asm_pack_and_set_pp_param_in_band(struct audio_client *ac,
  2663. struct param_hdr_v3 param_hdr,
  2664. u8 *param_data)
  2665. {
  2666. u8 *packed_data = NULL;
  2667. u32 packed_size = sizeof(union param_hdrs) + param_hdr.param_size;
  2668. int ret = 0;
  2669. if (ac == NULL) {
  2670. pr_err("%s: Audio Client is NULL\n", __func__);
  2671. return -EINVAL;
  2672. }
  2673. packed_data = kzalloc(packed_size, GFP_KERNEL);
  2674. if (packed_data == NULL)
  2675. return -ENOMEM;
  2676. ret = q6common_pack_pp_params(packed_data, &param_hdr, param_data,
  2677. &packed_size);
  2678. if (ret) {
  2679. pr_err("%s: Failed to pack params, error %d\n", __func__, ret);
  2680. goto done;
  2681. }
  2682. ret = q6asm_set_pp_params(ac, NULL, packed_data, packed_size);
  2683. done:
  2684. kfree(packed_data);
  2685. return ret;
  2686. }
  2687. EXPORT_SYMBOL(q6asm_pack_and_set_pp_param_in_band);
  2688. /**
  2689. * q6asm_set_soft_volume_module_instance_ids
  2690. * command to set module and instance ids for soft volume
  2691. *
  2692. * @instance: soft volume instance
  2693. * @param_hdr: parameter header
  2694. *
  2695. * Returns 0 on success or error on failure
  2696. */
  2697. int q6asm_set_soft_volume_module_instance_ids(int instance,
  2698. struct param_hdr_v3 *param_hdr)
  2699. {
  2700. if (param_hdr == NULL) {
  2701. pr_err("%s: Param header is NULL\n", __func__);
  2702. return -EINVAL;
  2703. }
  2704. switch (instance) {
  2705. case SOFT_VOLUME_INSTANCE_2:
  2706. param_hdr->module_id = ASM_MODULE_ID_VOL_CTRL2;
  2707. param_hdr->instance_id = INSTANCE_ID_0;
  2708. return 0;
  2709. case SOFT_VOLUME_INSTANCE_1:
  2710. param_hdr->module_id = ASM_MODULE_ID_VOL_CTRL;
  2711. param_hdr->instance_id = INSTANCE_ID_0;
  2712. return 0;
  2713. default:
  2714. pr_err("%s: Invalid instance %d\n", __func__, instance);
  2715. return -EINVAL;
  2716. }
  2717. }
  2718. EXPORT_SYMBOL(q6asm_set_soft_volume_module_instance_ids);
  2719. /**
  2720. * q6asm_open_read_compressed -
  2721. * command to open ASM in compressed read mode
  2722. *
  2723. * @ac: Audio client handle
  2724. * @format: capture format for ASM
  2725. * @passthrough_flag: flag to indicate passthrough option
  2726. *
  2727. * Returns 0 on success or error on failure
  2728. */
  2729. int q6asm_open_read_compressed(struct audio_client *ac, uint32_t format,
  2730. uint32_t passthrough_flag)
  2731. {
  2732. int rc = 0;
  2733. struct asm_stream_cmd_open_read_compressed open;
  2734. if (ac == NULL) {
  2735. pr_err("%s: ac[%pK] NULL\n", __func__, ac);
  2736. rc = -EINVAL;
  2737. goto fail_cmd;
  2738. }
  2739. if (ac->apr == NULL) {
  2740. pr_err("%s: APR handle[%pK] NULL\n", __func__, ac->apr);
  2741. rc = -EINVAL;
  2742. goto fail_cmd;
  2743. }
  2744. pr_debug("%s: session[%d] wr_format[0x%x]\n", __func__, ac->session,
  2745. format);
  2746. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  2747. open.hdr.opcode = ASM_STREAM_CMD_OPEN_READ_COMPRESSED;
  2748. atomic_set(&ac->cmd_state, -1);
  2749. /*
  2750. * Below flag indicates whether DSP shall keep IEC61937 packing or
  2751. * unpack to raw compressed format
  2752. */
  2753. if (format == FORMAT_IEC61937) {
  2754. open.mode_flags = 0x1;
  2755. pr_debug("%s: Flag 1 IEC61937 output\n", __func__);
  2756. } else {
  2757. open.mode_flags = 0;
  2758. open.frames_per_buf = 1;
  2759. pr_debug("%s: Flag 0 RAW_COMPR output\n", __func__);
  2760. }
  2761. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  2762. if (rc < 0) {
  2763. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  2764. __func__, open.hdr.opcode, rc);
  2765. rc = -EINVAL;
  2766. goto fail_cmd;
  2767. }
  2768. rc = wait_event_timeout(ac->cmd_wait,
  2769. (atomic_read(&ac->cmd_state) >= 0),
  2770. msecs_to_jiffies(TIMEOUT_MS));
  2771. if (!rc) {
  2772. pr_err("%s: timeout. waited for OPEN_READ_COMPR rc[%d]\n",
  2773. __func__, rc);
  2774. rc = -ETIMEDOUT;
  2775. goto fail_cmd;
  2776. }
  2777. if (atomic_read(&ac->cmd_state) > 0) {
  2778. pr_err("%s: DSP returned error[%s]\n",
  2779. __func__, adsp_err_get_err_str(
  2780. atomic_read(&ac->cmd_state)));
  2781. rc = adsp_err_get_lnx_err_code(
  2782. atomic_read(&ac->cmd_state));
  2783. goto fail_cmd;
  2784. }
  2785. return 0;
  2786. fail_cmd:
  2787. return rc;
  2788. }
  2789. EXPORT_SYMBOL(q6asm_open_read_compressed);
  2790. static int __q6asm_open_read(struct audio_client *ac,
  2791. uint32_t format, uint16_t bits_per_sample,
  2792. uint32_t pcm_format_block_ver,
  2793. bool ts_mode, uint32_t enc_cfg_id)
  2794. {
  2795. int rc = 0x00;
  2796. struct asm_stream_cmd_open_read_v3 open;
  2797. struct q6asm_cal_info cal_info;
  2798. config_debug_fs_reset_index();
  2799. if (ac == NULL) {
  2800. pr_err("%s: APR handle NULL\n", __func__);
  2801. return -EINVAL;
  2802. }
  2803. if (ac->apr == NULL) {
  2804. pr_err("%s: AC APR handle NULL\n", __func__);
  2805. return -EINVAL;
  2806. }
  2807. pr_debug("%s: session[%d]\n", __func__, ac->session);
  2808. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  2809. atomic_set(&ac->cmd_state, -1);
  2810. open.hdr.opcode = ASM_STREAM_CMD_OPEN_READ_V3;
  2811. /* Stream prio : High, provide meta info with encoded frames */
  2812. open.src_endpointype = ASM_END_POINT_DEVICE_MATRIX;
  2813. rc = q6asm_get_asm_topology_apptype(&cal_info);
  2814. open.preprocopo_id = cal_info.topology_id;
  2815. open.bits_per_sample = bits_per_sample;
  2816. open.mode_flags = 0x0;
  2817. ac->topology = open.preprocopo_id;
  2818. ac->app_type = cal_info.app_type;
  2819. if (ac->perf_mode == LOW_LATENCY_PCM_MODE) {
  2820. open.mode_flags |= ASM_LOW_LATENCY_TX_STREAM_SESSION <<
  2821. ASM_SHIFT_STREAM_PERF_MODE_FLAG_IN_OPEN_READ;
  2822. } else {
  2823. open.mode_flags |= ASM_LEGACY_STREAM_SESSION <<
  2824. ASM_SHIFT_STREAM_PERF_MODE_FLAG_IN_OPEN_READ;
  2825. }
  2826. switch (format) {
  2827. case FORMAT_LINEAR_PCM:
  2828. open.mode_flags |= 0x00;
  2829. open.enc_cfg_id = q6asm_get_pcm_format_id(pcm_format_block_ver);
  2830. if (ts_mode)
  2831. open.mode_flags |= ABSOLUTE_TIMESTAMP_ENABLE;
  2832. break;
  2833. case FORMAT_MPEG4_AAC:
  2834. open.mode_flags |= BUFFER_META_ENABLE;
  2835. open.enc_cfg_id = ASM_MEDIA_FMT_AAC_V2;
  2836. break;
  2837. case FORMAT_G711_ALAW_FS:
  2838. open.mode_flags |= BUFFER_META_ENABLE;
  2839. open.enc_cfg_id = ASM_MEDIA_FMT_G711_ALAW_FS;
  2840. break;
  2841. case FORMAT_G711_MLAW_FS:
  2842. open.mode_flags |= BUFFER_META_ENABLE;
  2843. open.enc_cfg_id = ASM_MEDIA_FMT_G711_MLAW_FS;
  2844. break;
  2845. case FORMAT_V13K:
  2846. open.mode_flags |= BUFFER_META_ENABLE;
  2847. open.enc_cfg_id = ASM_MEDIA_FMT_V13K_FS;
  2848. break;
  2849. case FORMAT_EVRC:
  2850. open.mode_flags |= BUFFER_META_ENABLE;
  2851. open.enc_cfg_id = ASM_MEDIA_FMT_EVRC_FS;
  2852. break;
  2853. case FORMAT_AMRNB:
  2854. open.mode_flags |= BUFFER_META_ENABLE;
  2855. open.enc_cfg_id = ASM_MEDIA_FMT_AMRNB_FS;
  2856. break;
  2857. case FORMAT_AMRWB:
  2858. open.mode_flags |= BUFFER_META_ENABLE;
  2859. open.enc_cfg_id = ASM_MEDIA_FMT_AMRWB_FS;
  2860. break;
  2861. case FORMAT_BESPOKE:
  2862. open.mode_flags |= BUFFER_META_ENABLE;
  2863. open.enc_cfg_id = enc_cfg_id;
  2864. if (ts_mode)
  2865. open.mode_flags |= ABSOLUTE_TIMESTAMP_ENABLE;
  2866. break;
  2867. default:
  2868. pr_err("%s: Invalid format 0x%x\n",
  2869. __func__, format);
  2870. rc = -EINVAL;
  2871. goto fail_cmd;
  2872. }
  2873. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  2874. if (rc < 0) {
  2875. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  2876. __func__, open.hdr.opcode, rc);
  2877. rc = -EINVAL;
  2878. goto fail_cmd;
  2879. }
  2880. rc = wait_event_timeout(ac->cmd_wait,
  2881. (atomic_read(&ac->cmd_state) >= 0),
  2882. msecs_to_jiffies(TIMEOUT_MS));
  2883. if (!rc) {
  2884. pr_err("%s: timeout. waited for open read\n",
  2885. __func__);
  2886. rc = -ETIMEDOUT;
  2887. goto fail_cmd;
  2888. }
  2889. if (atomic_read(&ac->cmd_state) > 0) {
  2890. pr_err("%s: DSP returned error[%s]\n",
  2891. __func__, adsp_err_get_err_str(
  2892. atomic_read(&ac->cmd_state)));
  2893. rc = adsp_err_get_lnx_err_code(
  2894. atomic_read(&ac->cmd_state));
  2895. goto fail_cmd;
  2896. }
  2897. ac->io_mode |= TUN_READ_IO_MODE;
  2898. return 0;
  2899. fail_cmd:
  2900. return rc;
  2901. }
  2902. /**
  2903. * q6asm_open_read -
  2904. * command to open ASM in read mode
  2905. *
  2906. * @ac: Audio client handle
  2907. * @format: capture format for ASM
  2908. *
  2909. * Returns 0 on success or error on failure
  2910. */
  2911. int q6asm_open_read(struct audio_client *ac,
  2912. uint32_t format)
  2913. {
  2914. return __q6asm_open_read(ac, format, 16,
  2915. PCM_MEDIA_FORMAT_V2 /*media fmt block ver*/,
  2916. false/*ts_mode*/, ENC_CFG_ID_NONE);
  2917. }
  2918. EXPORT_SYMBOL(q6asm_open_read);
  2919. int q6asm_open_read_v2(struct audio_client *ac, uint32_t format,
  2920. uint16_t bits_per_sample)
  2921. {
  2922. return __q6asm_open_read(ac, format, bits_per_sample,
  2923. PCM_MEDIA_FORMAT_V2 /*media fmt block ver*/,
  2924. false/*ts_mode*/, ENC_CFG_ID_NONE);
  2925. }
  2926. /*
  2927. * asm_open_read_v3 - Opens audio capture session
  2928. *
  2929. * @ac: Client session handle
  2930. * @format: encoder format
  2931. * @bits_per_sample: bit width of capture session
  2932. */
  2933. int q6asm_open_read_v3(struct audio_client *ac, uint32_t format,
  2934. uint16_t bits_per_sample)
  2935. {
  2936. return __q6asm_open_read(ac, format, bits_per_sample,
  2937. PCM_MEDIA_FORMAT_V3/*media fmt block ver*/,
  2938. false/*ts_mode*/, ENC_CFG_ID_NONE);
  2939. }
  2940. EXPORT_SYMBOL(q6asm_open_read_v3);
  2941. /*
  2942. * asm_open_read_v4 - Opens audio capture session
  2943. *
  2944. * @ac: Client session handle
  2945. * @format: encoder format
  2946. * @bits_per_sample: bit width of capture session
  2947. * @ts_mode: timestamp mode
  2948. */
  2949. int q6asm_open_read_v4(struct audio_client *ac, uint32_t format,
  2950. uint16_t bits_per_sample, bool ts_mode,
  2951. uint32_t enc_cfg_id)
  2952. {
  2953. return __q6asm_open_read(ac, format, bits_per_sample,
  2954. PCM_MEDIA_FORMAT_V4 /*media fmt block ver*/,
  2955. ts_mode, enc_cfg_id);
  2956. }
  2957. EXPORT_SYMBOL(q6asm_open_read_v4);
  2958. /*
  2959. * asm_open_read_v5 - Opens audio capture session
  2960. *
  2961. * @ac: Client session handle
  2962. * @format: encoder format
  2963. * @bits_per_sample: bit width of capture session
  2964. * @ts_mode: timestamp mode
  2965. */
  2966. int q6asm_open_read_v5(struct audio_client *ac, uint32_t format,
  2967. uint16_t bits_per_sample, bool ts_mode, uint32_t enc_cfg_id)
  2968. {
  2969. return __q6asm_open_read(ac, format, bits_per_sample,
  2970. PCM_MEDIA_FORMAT_V5 /*media fmt block ver*/,
  2971. ts_mode, enc_cfg_id);
  2972. }
  2973. EXPORT_SYMBOL(q6asm_open_read_v5);
  2974. /**
  2975. * q6asm_open_write_compressed -
  2976. * command to open ASM in compressed write mode
  2977. *
  2978. * @ac: Audio client handle
  2979. * @format: playback format for ASM
  2980. * @passthrough_flag: flag to indicate passthrough option
  2981. *
  2982. * Returns 0 on success or error on failure
  2983. */
  2984. int q6asm_open_write_compressed(struct audio_client *ac, uint32_t format,
  2985. uint32_t passthrough_flag)
  2986. {
  2987. int rc = 0;
  2988. struct asm_stream_cmd_open_write_compressed open;
  2989. if (ac == NULL) {
  2990. pr_err("%s: ac[%pK] NULL\n", __func__, ac);
  2991. rc = -EINVAL;
  2992. goto fail_cmd;
  2993. }
  2994. if (ac->apr == NULL) {
  2995. pr_err("%s: APR handle[%pK] NULL\n", __func__, ac->apr);
  2996. rc = -EINVAL;
  2997. goto fail_cmd;
  2998. }
  2999. pr_debug("%s: session[%d] wr_format[0x%x]", __func__, ac->session,
  3000. format);
  3001. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  3002. open.hdr.opcode = ASM_STREAM_CMD_OPEN_WRITE_COMPRESSED;
  3003. atomic_set(&ac->cmd_state, -1);
  3004. switch (format) {
  3005. case FORMAT_AC3:
  3006. open.fmt_id = ASM_MEDIA_FMT_AC3;
  3007. break;
  3008. case FORMAT_EAC3:
  3009. open.fmt_id = ASM_MEDIA_FMT_EAC3;
  3010. break;
  3011. case FORMAT_DTS:
  3012. open.fmt_id = ASM_MEDIA_FMT_DTS;
  3013. break;
  3014. case FORMAT_DSD:
  3015. open.fmt_id = ASM_MEDIA_FMT_DSD;
  3016. break;
  3017. case FORMAT_GEN_COMPR:
  3018. open.fmt_id = ASM_MEDIA_FMT_GENERIC_COMPRESSED;
  3019. break;
  3020. case FORMAT_TRUEHD:
  3021. open.fmt_id = ASM_MEDIA_FMT_TRUEHD;
  3022. break;
  3023. case FORMAT_IEC61937:
  3024. open.fmt_id = ASM_MEDIA_FMT_IEC;
  3025. break;
  3026. default:
  3027. pr_err("%s: Invalid format[%d]\n", __func__, format);
  3028. rc = -EINVAL;
  3029. goto fail_cmd;
  3030. }
  3031. /* Below flag indicates the DSP that Compressed audio input
  3032. * stream is not IEC 61937 or IEC 60958 packetizied
  3033. */
  3034. if (passthrough_flag == COMPRESSED_PASSTHROUGH ||
  3035. passthrough_flag == COMPRESSED_PASSTHROUGH_DSD ||
  3036. passthrough_flag == COMPRESSED_PASSTHROUGH_GEN) {
  3037. open.flags = 0x0;
  3038. pr_debug("%s: Flag 0 COMPRESSED_PASSTHROUGH\n", __func__);
  3039. } else if (passthrough_flag == COMPRESSED_PASSTHROUGH_CONVERT) {
  3040. open.flags = 0x8;
  3041. pr_debug("%s: Flag 8 - COMPRESSED_PASSTHROUGH_CONVERT\n",
  3042. __func__);
  3043. } else if (passthrough_flag == COMPRESSED_PASSTHROUGH_IEC61937) {
  3044. open.flags = 0x1;
  3045. pr_debug("%s: Flag 1 - COMPRESSED_PASSTHROUGH_IEC61937\n",
  3046. __func__);
  3047. } else {
  3048. pr_err("%s: Invalid passthrough type[%d]\n",
  3049. __func__, passthrough_flag);
  3050. rc = -EINVAL;
  3051. goto fail_cmd;
  3052. }
  3053. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3054. if (rc < 0) {
  3055. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3056. __func__, open.hdr.opcode, rc);
  3057. rc = -EINVAL;
  3058. goto fail_cmd;
  3059. }
  3060. rc = wait_event_timeout(ac->cmd_wait,
  3061. (atomic_read(&ac->cmd_state) >= 0),
  3062. msecs_to_jiffies(TIMEOUT_MS));
  3063. if (!rc) {
  3064. pr_err("%s: timeout. waited for OPEN_WRITE_COMPR rc[%d]\n",
  3065. __func__, rc);
  3066. rc = -ETIMEDOUT;
  3067. goto fail_cmd;
  3068. }
  3069. if (atomic_read(&ac->cmd_state) > 0) {
  3070. pr_err("%s: DSP returned error[%s]\n",
  3071. __func__, adsp_err_get_err_str(
  3072. atomic_read(&ac->cmd_state)));
  3073. rc = adsp_err_get_lnx_err_code(
  3074. atomic_read(&ac->cmd_state));
  3075. goto fail_cmd;
  3076. }
  3077. return 0;
  3078. fail_cmd:
  3079. return rc;
  3080. }
  3081. EXPORT_SYMBOL(q6asm_open_write_compressed);
  3082. static int __q6asm_open_write(struct audio_client *ac, uint32_t format,
  3083. uint16_t bits_per_sample, uint32_t stream_id,
  3084. bool is_gapless_mode,
  3085. uint32_t pcm_format_block_ver)
  3086. {
  3087. int rc = 0x00;
  3088. struct asm_stream_cmd_open_write_v3 open;
  3089. struct q6asm_cal_info cal_info;
  3090. if (ac == NULL) {
  3091. pr_err("%s: APR handle NULL\n", __func__);
  3092. return -EINVAL;
  3093. }
  3094. if (ac->apr == NULL) {
  3095. pr_err("%s: AC APR handle NULL\n", __func__);
  3096. return -EINVAL;
  3097. }
  3098. dev_vdbg(ac->dev, "%s: session[%d] wr_format[0x%x]\n",
  3099. __func__, ac->session, format);
  3100. q6asm_stream_add_hdr(ac, &open.hdr, sizeof(open), TRUE, stream_id);
  3101. atomic_set(&ac->cmd_state, -1);
  3102. /*
  3103. * Updated the token field with stream/session for compressed playback
  3104. * Platform driver must know the the stream with which the command is
  3105. * associated
  3106. */
  3107. if (ac->io_mode & COMPRESSED_STREAM_IO)
  3108. q6asm_update_token(&open.hdr.token,
  3109. ac->session,
  3110. stream_id,
  3111. 0, /* Buffer index is NA */
  3112. 0, /* Direction flag is NA */
  3113. WAIT_CMD);
  3114. dev_vdbg(ac->dev, "%s: token = 0x%x, stream_id %d, session 0x%x\n",
  3115. __func__, open.hdr.token, stream_id, ac->session);
  3116. open.hdr.opcode = ASM_STREAM_CMD_OPEN_WRITE_V3;
  3117. open.mode_flags = 0x00;
  3118. if (ac->perf_mode == ULL_POST_PROCESSING_PCM_MODE)
  3119. open.mode_flags |= ASM_ULL_POST_PROCESSING_STREAM_SESSION;
  3120. else if (ac->perf_mode == ULTRA_LOW_LATENCY_PCM_MODE)
  3121. open.mode_flags |= ASM_ULTRA_LOW_LATENCY_STREAM_SESSION;
  3122. else if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3123. open.mode_flags |= ASM_LOW_LATENCY_STREAM_SESSION;
  3124. else {
  3125. open.mode_flags |= ASM_LEGACY_STREAM_SESSION;
  3126. if (is_gapless_mode)
  3127. open.mode_flags |= 1 << ASM_SHIFT_GAPLESS_MODE_FLAG;
  3128. }
  3129. /* source endpoint : matrix */
  3130. open.sink_endpointype = ASM_END_POINT_DEVICE_MATRIX;
  3131. open.bits_per_sample = bits_per_sample;
  3132. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3133. open.postprocopo_id = cal_info.topology_id;
  3134. if (ac->perf_mode != LEGACY_PCM_MODE)
  3135. open.postprocopo_id = ASM_STREAM_POSTPROCOPO_ID_NONE;
  3136. pr_debug("%s: perf_mode %d asm_topology 0x%x bps %d\n", __func__,
  3137. ac->perf_mode, open.postprocopo_id, open.bits_per_sample);
  3138. /*
  3139. * For Gapless playback it will use the same session for next stream,
  3140. * So use the same topology
  3141. */
  3142. if (!ac->topology) {
  3143. ac->topology = open.postprocopo_id;
  3144. ac->app_type = cal_info.app_type;
  3145. }
  3146. switch (format) {
  3147. case FORMAT_LINEAR_PCM:
  3148. open.dec_fmt_id = q6asm_get_pcm_format_id(pcm_format_block_ver);
  3149. break;
  3150. case FORMAT_MPEG4_AAC:
  3151. open.dec_fmt_id = ASM_MEDIA_FMT_AAC_V2;
  3152. break;
  3153. case FORMAT_MPEG4_MULTI_AAC:
  3154. open.dec_fmt_id = ASM_MEDIA_FMT_AAC_V2;
  3155. break;
  3156. case FORMAT_WMA_V9:
  3157. open.dec_fmt_id = ASM_MEDIA_FMT_WMA_V9_V2;
  3158. break;
  3159. case FORMAT_WMA_V10PRO:
  3160. open.dec_fmt_id = ASM_MEDIA_FMT_WMA_V10PRO_V2;
  3161. break;
  3162. case FORMAT_MP3:
  3163. open.dec_fmt_id = ASM_MEDIA_FMT_MP3;
  3164. break;
  3165. case FORMAT_AC3:
  3166. open.dec_fmt_id = ASM_MEDIA_FMT_AC3;
  3167. break;
  3168. case FORMAT_EAC3:
  3169. open.dec_fmt_id = ASM_MEDIA_FMT_EAC3;
  3170. break;
  3171. case FORMAT_MP2:
  3172. open.dec_fmt_id = ASM_MEDIA_FMT_MP2;
  3173. break;
  3174. case FORMAT_FLAC:
  3175. open.dec_fmt_id = ASM_MEDIA_FMT_FLAC;
  3176. break;
  3177. case FORMAT_ALAC:
  3178. open.dec_fmt_id = ASM_MEDIA_FMT_ALAC;
  3179. break;
  3180. case FORMAT_VORBIS:
  3181. open.dec_fmt_id = ASM_MEDIA_FMT_VORBIS;
  3182. break;
  3183. case FORMAT_APE:
  3184. open.dec_fmt_id = ASM_MEDIA_FMT_APE;
  3185. break;
  3186. case FORMAT_DSD:
  3187. open.dec_fmt_id = ASM_MEDIA_FMT_DSD;
  3188. break;
  3189. case FORMAT_APTX:
  3190. open.dec_fmt_id = ASM_MEDIA_FMT_APTX;
  3191. break;
  3192. case FORMAT_GEN_COMPR:
  3193. open.dec_fmt_id = ASM_MEDIA_FMT_GENERIC_COMPRESSED;
  3194. break;
  3195. default:
  3196. pr_err("%s: Invalid format 0x%x\n", __func__, format);
  3197. rc = -EINVAL;
  3198. goto fail_cmd;
  3199. }
  3200. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3201. if (rc < 0) {
  3202. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3203. __func__, open.hdr.opcode, rc);
  3204. rc = -EINVAL;
  3205. goto fail_cmd;
  3206. }
  3207. rc = wait_event_timeout(ac->cmd_wait,
  3208. (atomic_read(&ac->cmd_state) >= 0),
  3209. msecs_to_jiffies(TIMEOUT_MS));
  3210. if (!rc) {
  3211. pr_err("%s: timeout. waited for open write\n", __func__);
  3212. rc = -ETIMEDOUT;
  3213. goto fail_cmd;
  3214. }
  3215. if (atomic_read(&ac->cmd_state) > 0) {
  3216. pr_err("%s: DSP returned error[%s]\n",
  3217. __func__, adsp_err_get_err_str(
  3218. atomic_read(&ac->cmd_state)));
  3219. rc = adsp_err_get_lnx_err_code(
  3220. atomic_read(&ac->cmd_state));
  3221. goto fail_cmd;
  3222. }
  3223. ac->io_mode |= TUN_WRITE_IO_MODE;
  3224. return 0;
  3225. fail_cmd:
  3226. return rc;
  3227. }
  3228. int q6asm_open_write(struct audio_client *ac, uint32_t format)
  3229. {
  3230. return __q6asm_open_write(ac, format, 16, ac->stream_id,
  3231. false /*gapless*/,
  3232. PCM_MEDIA_FORMAT_V2 /*pcm_format_block_ver*/);
  3233. }
  3234. EXPORT_SYMBOL(q6asm_open_write);
  3235. int q6asm_open_write_v2(struct audio_client *ac, uint32_t format,
  3236. uint16_t bits_per_sample)
  3237. {
  3238. return __q6asm_open_write(ac, format, bits_per_sample,
  3239. ac->stream_id, false /*gapless*/,
  3240. PCM_MEDIA_FORMAT_V2 /*pcm_format_block_ver*/);
  3241. }
  3242. /*
  3243. * q6asm_open_write_v3 - Opens audio playback session
  3244. *
  3245. * @ac: Client session handle
  3246. * @format: decoder format
  3247. * @bits_per_sample: bit width of playback session
  3248. */
  3249. int q6asm_open_write_v3(struct audio_client *ac, uint32_t format,
  3250. uint16_t bits_per_sample)
  3251. {
  3252. return __q6asm_open_write(ac, format, bits_per_sample,
  3253. ac->stream_id, false /*gapless*/,
  3254. PCM_MEDIA_FORMAT_V3 /*pcm_format_block_ver*/);
  3255. }
  3256. EXPORT_SYMBOL(q6asm_open_write_v3);
  3257. /*
  3258. * q6asm_open_write_v4 - Opens audio playback session
  3259. *
  3260. * @ac: Client session handle
  3261. * @format: decoder format
  3262. * @bits_per_sample: bit width of playback session
  3263. */
  3264. int q6asm_open_write_v4(struct audio_client *ac, uint32_t format,
  3265. uint16_t bits_per_sample)
  3266. {
  3267. return __q6asm_open_write(ac, format, bits_per_sample,
  3268. ac->stream_id, false /*gapless*/,
  3269. PCM_MEDIA_FORMAT_V4 /*pcm_format_block_ver*/);
  3270. }
  3271. EXPORT_SYMBOL(q6asm_open_write_v4);
  3272. int q6asm_stream_open_write_v2(struct audio_client *ac, uint32_t format,
  3273. uint16_t bits_per_sample, int32_t stream_id,
  3274. bool is_gapless_mode)
  3275. {
  3276. return __q6asm_open_write(ac, format, bits_per_sample,
  3277. stream_id, is_gapless_mode,
  3278. PCM_MEDIA_FORMAT_V2 /*pcm_format_block_ver*/);
  3279. }
  3280. /*
  3281. * q6asm_stream_open_write_v3 - Creates audio stream for playback
  3282. *
  3283. * @ac: Client session handle
  3284. * @format: asm playback format
  3285. * @bits_per_sample: bit width of requested stream
  3286. * @stream_id: stream id of stream to be associated with this session
  3287. * @is_gapless_mode: true if gapless mode needs to be enabled
  3288. */
  3289. int q6asm_stream_open_write_v3(struct audio_client *ac, uint32_t format,
  3290. uint16_t bits_per_sample, int32_t stream_id,
  3291. bool is_gapless_mode)
  3292. {
  3293. return __q6asm_open_write(ac, format, bits_per_sample,
  3294. stream_id, is_gapless_mode,
  3295. PCM_MEDIA_FORMAT_V3 /*pcm_format_block_ver*/);
  3296. }
  3297. EXPORT_SYMBOL(q6asm_stream_open_write_v3);
  3298. /*
  3299. * q6asm_open_write_v5 - Opens audio playback session
  3300. *
  3301. * @ac: Client session handle
  3302. * @format: decoder format
  3303. * @bits_per_sample: bit width of playback session
  3304. */
  3305. int q6asm_open_write_v5(struct audio_client *ac, uint32_t format,
  3306. uint16_t bits_per_sample)
  3307. {
  3308. return __q6asm_open_write(ac, format, bits_per_sample,
  3309. ac->stream_id, false /*gapless*/,
  3310. PCM_MEDIA_FORMAT_V5 /*pcm_format_block_ver*/);
  3311. }
  3312. EXPORT_SYMBOL(q6asm_open_write_v5);
  3313. /*
  3314. * q6asm_stream_open_write_v4 - Creates audio stream for playback
  3315. *
  3316. * @ac: Client session handle
  3317. * @format: asm playback format
  3318. * @bits_per_sample: bit width of requested stream
  3319. * @stream_id: stream id of stream to be associated with this session
  3320. * @is_gapless_mode: true if gapless mode needs to be enabled
  3321. */
  3322. int q6asm_stream_open_write_v4(struct audio_client *ac, uint32_t format,
  3323. uint16_t bits_per_sample, int32_t stream_id,
  3324. bool is_gapless_mode)
  3325. {
  3326. return __q6asm_open_write(ac, format, bits_per_sample,
  3327. stream_id, is_gapless_mode,
  3328. PCM_MEDIA_FORMAT_V4 /*pcm_format_block_ver*/);
  3329. }
  3330. EXPORT_SYMBOL(q6asm_stream_open_write_v4);
  3331. /*
  3332. * q6asm_stream_open_write_v5 - Creates audio stream for playback
  3333. *
  3334. * @ac: Client session handle
  3335. * @format: asm playback format
  3336. * @bits_per_sample: bit width of requested stream
  3337. * @stream_id: stream id of stream to be associated with this session
  3338. * @is_gapless_mode: true if gapless mode needs to be enabled
  3339. */
  3340. int q6asm_stream_open_write_v5(struct audio_client *ac, uint32_t format,
  3341. uint16_t bits_per_sample, int32_t stream_id,
  3342. bool is_gapless_mode)
  3343. {
  3344. return __q6asm_open_write(ac, format, bits_per_sample,
  3345. stream_id, is_gapless_mode,
  3346. PCM_MEDIA_FORMAT_V5 /*pcm_format_block_ver*/);
  3347. }
  3348. EXPORT_SYMBOL(q6asm_stream_open_write_v5);
  3349. static int __q6asm_open_read_write(struct audio_client *ac, uint32_t rd_format,
  3350. uint32_t wr_format, bool is_meta_data_mode,
  3351. uint32_t bits_per_sample,
  3352. bool overwrite_topology, int topology)
  3353. {
  3354. int rc = 0x00;
  3355. struct asm_stream_cmd_open_readwrite_v2 open;
  3356. struct q6asm_cal_info cal_info;
  3357. if (ac == NULL) {
  3358. pr_err("%s: APR handle NULL\n", __func__);
  3359. return -EINVAL;
  3360. }
  3361. if (ac->apr == NULL) {
  3362. pr_err("%s: AC APR handle NULL\n", __func__);
  3363. return -EINVAL;
  3364. }
  3365. pr_debug("%s: session[%d]\n", __func__, ac->session);
  3366. pr_debug("%s: wr_format[0x%x]rd_format[0x%x]\n",
  3367. __func__, wr_format, rd_format);
  3368. ac->io_mode |= NT_MODE;
  3369. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  3370. atomic_set(&ac->cmd_state, -1);
  3371. open.hdr.opcode = ASM_STREAM_CMD_OPEN_READWRITE_V2;
  3372. open.mode_flags = is_meta_data_mode ? BUFFER_META_ENABLE : 0;
  3373. open.bits_per_sample = bits_per_sample;
  3374. /* source endpoint : matrix */
  3375. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3376. open.postprocopo_id = cal_info.topology_id;
  3377. open.postprocopo_id = overwrite_topology ?
  3378. topology : open.postprocopo_id;
  3379. ac->topology = open.postprocopo_id;
  3380. ac->app_type = cal_info.app_type;
  3381. switch (wr_format) {
  3382. case FORMAT_LINEAR_PCM:
  3383. case FORMAT_MULTI_CHANNEL_LINEAR_PCM:
  3384. open.dec_fmt_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V2;
  3385. break;
  3386. case FORMAT_MPEG4_AAC:
  3387. open.dec_fmt_id = ASM_MEDIA_FMT_AAC_V2;
  3388. break;
  3389. case FORMAT_MPEG4_MULTI_AAC:
  3390. open.dec_fmt_id = ASM_MEDIA_FMT_AAC_V2;
  3391. break;
  3392. case FORMAT_WMA_V9:
  3393. open.dec_fmt_id = ASM_MEDIA_FMT_WMA_V9_V2;
  3394. break;
  3395. case FORMAT_WMA_V10PRO:
  3396. open.dec_fmt_id = ASM_MEDIA_FMT_WMA_V10PRO_V2;
  3397. break;
  3398. case FORMAT_AMRNB:
  3399. open.dec_fmt_id = ASM_MEDIA_FMT_AMRNB_FS;
  3400. break;
  3401. case FORMAT_AMRWB:
  3402. open.dec_fmt_id = ASM_MEDIA_FMT_AMRWB_FS;
  3403. break;
  3404. case FORMAT_AMR_WB_PLUS:
  3405. open.dec_fmt_id = ASM_MEDIA_FMT_AMR_WB_PLUS_V2;
  3406. break;
  3407. case FORMAT_V13K:
  3408. open.dec_fmt_id = ASM_MEDIA_FMT_V13K_FS;
  3409. break;
  3410. case FORMAT_EVRC:
  3411. open.dec_fmt_id = ASM_MEDIA_FMT_EVRC_FS;
  3412. break;
  3413. case FORMAT_EVRCB:
  3414. open.dec_fmt_id = ASM_MEDIA_FMT_EVRCB_FS;
  3415. break;
  3416. case FORMAT_EVRCWB:
  3417. open.dec_fmt_id = ASM_MEDIA_FMT_EVRCWB_FS;
  3418. break;
  3419. case FORMAT_MP3:
  3420. open.dec_fmt_id = ASM_MEDIA_FMT_MP3;
  3421. break;
  3422. case FORMAT_ALAC:
  3423. open.dec_fmt_id = ASM_MEDIA_FMT_ALAC;
  3424. break;
  3425. case FORMAT_APE:
  3426. open.dec_fmt_id = ASM_MEDIA_FMT_APE;
  3427. break;
  3428. case FORMAT_DSD:
  3429. open.dec_fmt_id = ASM_MEDIA_FMT_DSD;
  3430. break;
  3431. case FORMAT_G711_ALAW_FS:
  3432. open.dec_fmt_id = ASM_MEDIA_FMT_G711_ALAW_FS;
  3433. break;
  3434. case FORMAT_G711_MLAW_FS:
  3435. open.dec_fmt_id = ASM_MEDIA_FMT_G711_MLAW_FS;
  3436. break;
  3437. default:
  3438. pr_err("%s: Invalid format 0x%x\n",
  3439. __func__, wr_format);
  3440. rc = -EINVAL;
  3441. goto fail_cmd;
  3442. }
  3443. switch (rd_format) {
  3444. case FORMAT_LINEAR_PCM:
  3445. case FORMAT_MULTI_CHANNEL_LINEAR_PCM:
  3446. open.enc_cfg_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V2;
  3447. break;
  3448. case FORMAT_MPEG4_AAC:
  3449. open.enc_cfg_id = ASM_MEDIA_FMT_AAC_V2;
  3450. break;
  3451. case FORMAT_G711_ALAW_FS:
  3452. open.enc_cfg_id = ASM_MEDIA_FMT_G711_ALAW_FS;
  3453. break;
  3454. case FORMAT_G711_MLAW_FS:
  3455. open.enc_cfg_id = ASM_MEDIA_FMT_G711_MLAW_FS;
  3456. break;
  3457. case FORMAT_V13K:
  3458. open.enc_cfg_id = ASM_MEDIA_FMT_V13K_FS;
  3459. break;
  3460. case FORMAT_EVRC:
  3461. open.enc_cfg_id = ASM_MEDIA_FMT_EVRC_FS;
  3462. break;
  3463. case FORMAT_AMRNB:
  3464. open.enc_cfg_id = ASM_MEDIA_FMT_AMRNB_FS;
  3465. break;
  3466. case FORMAT_AMRWB:
  3467. open.enc_cfg_id = ASM_MEDIA_FMT_AMRWB_FS;
  3468. break;
  3469. case FORMAT_ALAC:
  3470. open.enc_cfg_id = ASM_MEDIA_FMT_ALAC;
  3471. break;
  3472. case FORMAT_APE:
  3473. open.enc_cfg_id = ASM_MEDIA_FMT_APE;
  3474. break;
  3475. default:
  3476. pr_err("%s: Invalid format 0x%x\n",
  3477. __func__, rd_format);
  3478. rc = -EINVAL;
  3479. goto fail_cmd;
  3480. }
  3481. dev_vdbg(ac->dev, "%s: rdformat[0x%x]wrformat[0x%x]\n", __func__,
  3482. open.enc_cfg_id, open.dec_fmt_id);
  3483. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3484. if (rc < 0) {
  3485. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3486. __func__, open.hdr.opcode, rc);
  3487. rc = -EINVAL;
  3488. goto fail_cmd;
  3489. }
  3490. rc = wait_event_timeout(ac->cmd_wait,
  3491. (atomic_read(&ac->cmd_state) >= 0),
  3492. msecs_to_jiffies(TIMEOUT_MS));
  3493. if (!rc) {
  3494. pr_err("%s: timeout. waited for open read-write\n",
  3495. __func__);
  3496. rc = -ETIMEDOUT;
  3497. goto fail_cmd;
  3498. }
  3499. if (atomic_read(&ac->cmd_state) > 0) {
  3500. pr_err("%s: DSP returned error[%s]\n",
  3501. __func__, adsp_err_get_err_str(
  3502. atomic_read(&ac->cmd_state)));
  3503. rc = adsp_err_get_lnx_err_code(
  3504. atomic_read(&ac->cmd_state));
  3505. goto fail_cmd;
  3506. }
  3507. return 0;
  3508. fail_cmd:
  3509. return rc;
  3510. }
  3511. /**
  3512. * q6asm_open_read_write -
  3513. * command to open ASM in read/write mode
  3514. *
  3515. * @ac: Audio client handle
  3516. * @rd_format: capture format for ASM
  3517. * @wr_format: playback format for ASM
  3518. *
  3519. * Returns 0 on success or error on failure
  3520. */
  3521. int q6asm_open_read_write(struct audio_client *ac, uint32_t rd_format,
  3522. uint32_t wr_format)
  3523. {
  3524. return __q6asm_open_read_write(ac, rd_format, wr_format,
  3525. true/*meta data mode*/,
  3526. 16 /*bits_per_sample*/,
  3527. false /*overwrite_topology*/, 0);
  3528. }
  3529. EXPORT_SYMBOL(q6asm_open_read_write);
  3530. /**
  3531. * q6asm_open_read_write_v2 -
  3532. * command to open ASM in bi-directional read/write mode
  3533. *
  3534. * @ac: Audio client handle
  3535. * @rd_format: capture format for ASM
  3536. * @wr_format: playback format for ASM
  3537. * @is_meta_data_mode: mode to indicate if meta data present
  3538. * @bits_per_sample: number of bits per sample
  3539. * @overwrite_topology: topology to be overwritten flag
  3540. * @topology: Topology for ASM
  3541. *
  3542. * Returns 0 on success or error on failure
  3543. */
  3544. int q6asm_open_read_write_v2(struct audio_client *ac, uint32_t rd_format,
  3545. uint32_t wr_format, bool is_meta_data_mode,
  3546. uint32_t bits_per_sample, bool overwrite_topology,
  3547. int topology)
  3548. {
  3549. return __q6asm_open_read_write(ac, rd_format, wr_format,
  3550. is_meta_data_mode, bits_per_sample,
  3551. overwrite_topology, topology);
  3552. }
  3553. EXPORT_SYMBOL(q6asm_open_read_write_v2);
  3554. /**
  3555. * q6asm_open_loopback_v2 -
  3556. * command to open ASM in loopback mode
  3557. *
  3558. * @ac: Audio client handle
  3559. * @bits_per_sample: number of bits per sample
  3560. *
  3561. * Returns 0 on success or error on failure
  3562. */
  3563. int q6asm_open_loopback_v2(struct audio_client *ac, uint16_t bits_per_sample)
  3564. {
  3565. int rc = 0x00;
  3566. struct q6asm_cal_info cal_info;
  3567. if (ac == NULL) {
  3568. pr_err("%s: APR handle NULL\n", __func__);
  3569. return -EINVAL;
  3570. }
  3571. if (ac->apr == NULL) {
  3572. pr_err("%s: AC APR handle NULL\n", __func__);
  3573. return -EINVAL;
  3574. }
  3575. pr_debug("%s: session[%d]\n", __func__, ac->session);
  3576. if (ac->perf_mode == LOW_LATENCY_PCM_MODE) {
  3577. struct asm_stream_cmd_open_transcode_loopback_t open;
  3578. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  3579. atomic_set(&ac->cmd_state, -1);
  3580. open.hdr.opcode = ASM_STREAM_CMD_OPEN_TRANSCODE_LOOPBACK;
  3581. open.mode_flags = 0;
  3582. open.src_endpoint_type = 0;
  3583. open.sink_endpoint_type = 0;
  3584. open.src_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V2;
  3585. open.sink_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V2;
  3586. /* source endpoint : matrix */
  3587. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3588. open.audproc_topo_id = cal_info.topology_id;
  3589. ac->app_type = cal_info.app_type;
  3590. if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3591. open.mode_flags |= ASM_LOW_LATENCY_STREAM_SESSION;
  3592. else
  3593. open.mode_flags |= ASM_LEGACY_STREAM_SESSION;
  3594. ac->topology = open.audproc_topo_id;
  3595. open.bits_per_sample = bits_per_sample;
  3596. open.reserved = 0;
  3597. pr_debug("%s: opening a transcode_loopback with mode_flags =[%d] session[%d]\n",
  3598. __func__, open.mode_flags, ac->session);
  3599. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3600. if (rc < 0) {
  3601. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3602. __func__, open.hdr.opcode, rc);
  3603. rc = -EINVAL;
  3604. goto fail_cmd;
  3605. }
  3606. } else {/*if(ac->perf_mode == LEGACY_PCM_MODE)*/
  3607. struct asm_stream_cmd_open_loopback_v2 open;
  3608. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  3609. atomic_set(&ac->cmd_state, -1);
  3610. open.hdr.opcode = ASM_STREAM_CMD_OPEN_LOOPBACK_V2;
  3611. open.mode_flags = 0;
  3612. open.src_endpointype = 0;
  3613. open.sink_endpointype = 0;
  3614. /* source endpoint : matrix */
  3615. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3616. open.postprocopo_id = cal_info.topology_id;
  3617. ac->app_type = cal_info.app_type;
  3618. ac->topology = open.postprocopo_id;
  3619. open.bits_per_sample = bits_per_sample;
  3620. open.reserved = 0;
  3621. pr_debug("%s: opening a loopback_v2 with mode_flags =[%d] session[%d]\n",
  3622. __func__, open.mode_flags, ac->session);
  3623. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3624. if (rc < 0) {
  3625. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3626. __func__, open.hdr.opcode, rc);
  3627. rc = -EINVAL;
  3628. goto fail_cmd;
  3629. }
  3630. }
  3631. rc = wait_event_timeout(ac->cmd_wait,
  3632. (atomic_read(&ac->cmd_state) >= 0),
  3633. msecs_to_jiffies(TIMEOUT_MS));
  3634. if (!rc) {
  3635. pr_err("%s: timeout. waited for open_loopback\n",
  3636. __func__);
  3637. rc = -ETIMEDOUT;
  3638. goto fail_cmd;
  3639. }
  3640. if (atomic_read(&ac->cmd_state) > 0) {
  3641. pr_err("%s: DSP returned error[%s]\n",
  3642. __func__, adsp_err_get_err_str(
  3643. atomic_read(&ac->cmd_state)));
  3644. rc = adsp_err_get_lnx_err_code(
  3645. atomic_read(&ac->cmd_state));
  3646. goto fail_cmd;
  3647. }
  3648. return 0;
  3649. fail_cmd:
  3650. return rc;
  3651. }
  3652. EXPORT_SYMBOL(q6asm_open_loopback_v2);
  3653. /**
  3654. * q6asm_open_transcode_loopback -
  3655. * command to open ASM in transcode loopback mode
  3656. *
  3657. * @ac: Audio client handle
  3658. * @bits_per_sample: number of bits per sample
  3659. * @source_format: Format of clip
  3660. * @sink_format: end device supported format
  3661. *
  3662. * Returns 0 on success or error on failure
  3663. */
  3664. int q6asm_open_transcode_loopback(struct audio_client *ac,
  3665. uint16_t bits_per_sample,
  3666. uint32_t source_format, uint32_t sink_format)
  3667. {
  3668. int rc = 0x00;
  3669. struct asm_stream_cmd_open_transcode_loopback_t open;
  3670. struct q6asm_cal_info cal_info;
  3671. if (ac == NULL) {
  3672. pr_err("%s: APR handle NULL\n", __func__);
  3673. return -EINVAL;
  3674. }
  3675. if (ac->apr == NULL) {
  3676. pr_err("%s: AC APR handle NULL\n", __func__);
  3677. return -EINVAL;
  3678. }
  3679. pr_debug("%s: session[%d]\n", __func__, ac->session);
  3680. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  3681. atomic_set(&ac->cmd_state, -1);
  3682. open.hdr.opcode = ASM_STREAM_CMD_OPEN_TRANSCODE_LOOPBACK;
  3683. open.mode_flags = 0;
  3684. open.src_endpoint_type = 0;
  3685. open.sink_endpoint_type = 0;
  3686. switch (source_format) {
  3687. case FORMAT_LINEAR_PCM:
  3688. case FORMAT_MULTI_CHANNEL_LINEAR_PCM:
  3689. open.src_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V3;
  3690. break;
  3691. case FORMAT_AC3:
  3692. open.src_format_id = ASM_MEDIA_FMT_AC3;
  3693. break;
  3694. case FORMAT_EAC3:
  3695. open.src_format_id = ASM_MEDIA_FMT_EAC3;
  3696. break;
  3697. default:
  3698. pr_err("%s: Unsupported src fmt [%d]\n",
  3699. __func__, source_format);
  3700. return -EINVAL;
  3701. }
  3702. switch (sink_format) {
  3703. case FORMAT_LINEAR_PCM:
  3704. case FORMAT_MULTI_CHANNEL_LINEAR_PCM:
  3705. open.sink_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V3;
  3706. break;
  3707. default:
  3708. pr_err("%s: Unsupported sink fmt [%d]\n",
  3709. __func__, sink_format);
  3710. return -EINVAL;
  3711. }
  3712. /* source endpoint : matrix */
  3713. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3714. open.audproc_topo_id = cal_info.topology_id;
  3715. ac->app_type = cal_info.app_type;
  3716. if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3717. open.mode_flags |= ASM_LOW_LATENCY_STREAM_SESSION;
  3718. else
  3719. open.mode_flags |= ASM_LEGACY_STREAM_SESSION;
  3720. ac->topology = open.audproc_topo_id;
  3721. open.bits_per_sample = bits_per_sample;
  3722. open.reserved = 0;
  3723. pr_debug("%s: opening a transcode_loopback with mode_flags =[%d] session[%d]\n",
  3724. __func__, open.mode_flags, ac->session);
  3725. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3726. if (rc < 0) {
  3727. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3728. __func__, open.hdr.opcode, rc);
  3729. rc = -EINVAL;
  3730. goto fail_cmd;
  3731. }
  3732. rc = wait_event_timeout(ac->cmd_wait,
  3733. (atomic_read(&ac->cmd_state) >= 0),
  3734. msecs_to_jiffies(TIMEOUT_MS));
  3735. if (!rc) {
  3736. pr_err("%s: timeout. waited for open_transcode_loopback\n",
  3737. __func__);
  3738. rc = -ETIMEDOUT;
  3739. goto fail_cmd;
  3740. }
  3741. if (atomic_read(&ac->cmd_state) > 0) {
  3742. pr_err("%s: DSP returned error[%s]\n",
  3743. __func__, adsp_err_get_err_str(
  3744. atomic_read(&ac->cmd_state)));
  3745. rc = adsp_err_get_lnx_err_code(
  3746. atomic_read(&ac->cmd_state));
  3747. goto fail_cmd;
  3748. }
  3749. return 0;
  3750. fail_cmd:
  3751. return rc;
  3752. }
  3753. EXPORT_SYMBOL(q6asm_open_transcode_loopback);
  3754. static
  3755. int q6asm_set_shared_circ_buff(struct audio_client *ac,
  3756. struct asm_stream_cmd_open_shared_io *open,
  3757. int bufsz, int bufcnt,
  3758. int dir)
  3759. {
  3760. struct audio_buffer *buf_circ;
  3761. int bytes_to_alloc, rc;
  3762. size_t len;
  3763. mutex_lock(&ac->cmd_lock);
  3764. if (ac->port[dir].buf) {
  3765. pr_err("%s: Buffer already allocated\n", __func__);
  3766. rc = -EINVAL;
  3767. goto done;
  3768. }
  3769. buf_circ = kzalloc(sizeof(struct audio_buffer), GFP_KERNEL);
  3770. if (!buf_circ) {
  3771. rc = -ENOMEM;
  3772. goto done;
  3773. }
  3774. bytes_to_alloc = bufsz * bufcnt;
  3775. bytes_to_alloc = PAGE_ALIGN(bytes_to_alloc);
  3776. rc = msm_audio_ion_alloc(&buf_circ->dma_buf,
  3777. bytes_to_alloc,
  3778. &buf_circ->phys,
  3779. &len, &buf_circ->data);
  3780. if (rc) {
  3781. pr_err("%s: Audio ION alloc is failed, rc = %d\n", __func__,
  3782. rc);
  3783. kfree(buf_circ);
  3784. goto done;
  3785. }
  3786. ac->port[dir].buf = buf_circ;
  3787. buf_circ->used = dir ^ 1;
  3788. buf_circ->size = bytes_to_alloc;
  3789. buf_circ->actual_size = bytes_to_alloc;
  3790. memset(buf_circ->data, 0, buf_circ->actual_size);
  3791. ac->port[dir].max_buf_cnt = 1;
  3792. open->shared_circ_buf_mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  3793. open->shared_circ_buf_num_regions = 1;
  3794. open->shared_circ_buf_property_flag = 0x00;
  3795. open->shared_circ_buf_start_phy_addr_lsw =
  3796. lower_32_bits(buf_circ->phys);
  3797. open->shared_circ_buf_start_phy_addr_msw =
  3798. msm_audio_populate_upper_32_bits(buf_circ->phys);
  3799. open->shared_circ_buf_size = bufsz * bufcnt;
  3800. open->map_region_circ_buf.shm_addr_lsw = lower_32_bits(buf_circ->phys);
  3801. open->map_region_circ_buf.shm_addr_msw =
  3802. msm_audio_populate_upper_32_bits(buf_circ->phys);
  3803. open->map_region_circ_buf.mem_size_bytes = bytes_to_alloc;
  3804. done:
  3805. mutex_unlock(&ac->cmd_lock);
  3806. return rc;
  3807. }
  3808. static
  3809. int q6asm_set_shared_pos_buff(struct audio_client *ac,
  3810. struct asm_stream_cmd_open_shared_io *open,
  3811. int dir)
  3812. {
  3813. struct audio_buffer *buf_pos = &ac->shared_pos_buf;
  3814. int rc;
  3815. size_t len;
  3816. int bytes_to_alloc = sizeof(struct asm_shared_position_buffer);
  3817. mutex_lock(&ac->cmd_lock);
  3818. bytes_to_alloc = PAGE_ALIGN(bytes_to_alloc);
  3819. rc = msm_audio_ion_alloc(&buf_pos->dma_buf,
  3820. bytes_to_alloc,
  3821. &buf_pos->phys, &len,
  3822. &buf_pos->data);
  3823. if (rc) {
  3824. pr_err("%s: Audio pos buf ION alloc is failed, rc = %d\n",
  3825. __func__, rc);
  3826. goto done;
  3827. }
  3828. buf_pos->used = dir ^ 1;
  3829. buf_pos->size = bytes_to_alloc;
  3830. buf_pos->actual_size = bytes_to_alloc;
  3831. open->shared_pos_buf_mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  3832. open->shared_pos_buf_num_regions = 1;
  3833. open->shared_pos_buf_property_flag = 0x00;
  3834. open->shared_pos_buf_phy_addr_lsw = lower_32_bits(buf_pos->phys);
  3835. open->shared_pos_buf_phy_addr_msw =
  3836. msm_audio_populate_upper_32_bits(buf_pos->phys);
  3837. open->map_region_pos_buf.shm_addr_lsw = lower_32_bits(buf_pos->phys);
  3838. open->map_region_pos_buf.shm_addr_msw =
  3839. msm_audio_populate_upper_32_bits(buf_pos->phys);
  3840. open->map_region_pos_buf.mem_size_bytes = bytes_to_alloc;
  3841. done:
  3842. mutex_unlock(&ac->cmd_lock);
  3843. return rc;
  3844. }
  3845. /*
  3846. * q6asm_open_shared_io: Open an ASM session for pull mode (playback)
  3847. * or push mode (capture).
  3848. * parameters
  3849. * config - session parameters (channels, bits_per_sample, sr)
  3850. * dir - stream direction (IN for playback, OUT for capture)
  3851. * use_default_chmap: true if default channel map to be used
  3852. * channel_map: input channel map
  3853. * returns 0 if successful, error code otherwise
  3854. */
  3855. int q6asm_open_shared_io(struct audio_client *ac,
  3856. struct shared_io_config *config,
  3857. int dir, bool use_default_chmap, u8 *channel_map)
  3858. {
  3859. struct asm_stream_cmd_open_shared_io *open;
  3860. u8 *channel_mapping;
  3861. int i, size_of_open, num_watermarks, bufsz, bufcnt, rc, flags = 0;
  3862. struct q6asm_cal_info cal_info;
  3863. if (!ac || !config)
  3864. return -EINVAL;
  3865. if (!use_default_chmap && (channel_map == NULL)) {
  3866. pr_err("%s: No valid chan map and can't use default\n",
  3867. __func__);
  3868. return -EINVAL;
  3869. }
  3870. bufsz = config->bufsz;
  3871. bufcnt = config->bufcnt;
  3872. num_watermarks = 0;
  3873. ac->config = *config;
  3874. if (ac->session <= 0 || ac->session > SESSION_MAX) {
  3875. pr_err("%s: Session %d is out of bounds\n",
  3876. __func__, ac->session);
  3877. return -EINVAL;
  3878. }
  3879. size_of_open = sizeof(struct asm_stream_cmd_open_shared_io) +
  3880. (sizeof(struct asm_shared_watermark_level) * num_watermarks);
  3881. open = kzalloc(PAGE_ALIGN(size_of_open), GFP_KERNEL);
  3882. if (!open)
  3883. return -ENOMEM;
  3884. q6asm_stream_add_hdr(ac, &open->hdr, size_of_open, TRUE,
  3885. ac->stream_id);
  3886. atomic_set(&ac->cmd_state, 1);
  3887. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x, perf %d\n",
  3888. __func__, open->hdr.token, ac->stream_id, ac->session,
  3889. ac->perf_mode);
  3890. open->hdr.opcode =
  3891. dir == IN ? ASM_STREAM_CMD_OPEN_PULL_MODE_WRITE :
  3892. ASM_STREAM_CMD_OPEN_PUSH_MODE_READ;
  3893. pr_debug("%s perf_mode %d\n", __func__, ac->perf_mode);
  3894. if (dir == IN)
  3895. if (ac->perf_mode == ULL_POST_PROCESSING_PCM_MODE)
  3896. flags = 4 << ASM_SHIFT_STREAM_PERF_FLAG_PULL_MODE_WRITE;
  3897. else if (ac->perf_mode == ULTRA_LOW_LATENCY_PCM_MODE)
  3898. flags = 2 << ASM_SHIFT_STREAM_PERF_FLAG_PULL_MODE_WRITE;
  3899. else if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3900. flags = 1 << ASM_SHIFT_STREAM_PERF_FLAG_PULL_MODE_WRITE;
  3901. else
  3902. pr_err("Invalid perf mode for pull write\n");
  3903. else
  3904. if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3905. flags = ASM_LOW_LATENCY_TX_STREAM_SESSION <<
  3906. ASM_SHIFT_STREAM_PERF_FLAG_PUSH_MODE_READ;
  3907. else
  3908. pr_err("Invalid perf mode for push read\n");
  3909. if (flags == 0) {
  3910. pr_err("%s: Invalid mode[%d]\n", __func__,
  3911. ac->perf_mode);
  3912. kfree(open);
  3913. return -EINVAL;
  3914. }
  3915. pr_debug("open.mode_flags = 0x%x\n", flags);
  3916. open->mode_flags = flags;
  3917. open->endpoint_type = ASM_END_POINT_DEVICE_MATRIX;
  3918. open->topo_bits_per_sample = config->bits_per_sample;
  3919. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3920. open->topo_id = cal_info.topology_id;
  3921. if (config->format == FORMAT_LINEAR_PCM)
  3922. open->fmt_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V3;
  3923. else {
  3924. pr_err("%s: Invalid format[%d]\n", __func__, config->format);
  3925. rc = -EINVAL;
  3926. goto done;
  3927. }
  3928. rc = q6asm_set_shared_circ_buff(ac, open, bufsz, bufcnt, dir);
  3929. if (rc)
  3930. goto done;
  3931. ac->port[dir].tmp_hdl = 0;
  3932. rc = q6asm_set_shared_pos_buff(ac, open, dir);
  3933. if (rc)
  3934. goto done;
  3935. /* asm_multi_channel_pcm_fmt_blk_v3 */
  3936. open->fmt.num_channels = config->channels;
  3937. open->fmt.bits_per_sample = config->bits_per_sample;
  3938. open->fmt.sample_rate = config->rate;
  3939. open->fmt.is_signed = 1;
  3940. open->fmt.sample_word_size = config->sample_word_size;
  3941. channel_mapping = open->fmt.channel_mapping;
  3942. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  3943. if (use_default_chmap) {
  3944. rc = q6asm_map_channels(channel_mapping, config->channels,
  3945. false);
  3946. if (rc) {
  3947. pr_err("%s: Map channels failed, ret: %d\n",
  3948. __func__, rc);
  3949. goto done;
  3950. }
  3951. } else {
  3952. memcpy(channel_mapping, channel_map,
  3953. PCM_FORMAT_MAX_NUM_CHANNEL);
  3954. }
  3955. open->num_watermark_levels = num_watermarks;
  3956. for (i = 0; i < num_watermarks; i++) {
  3957. open->watermark[i].watermark_level_bytes = i *
  3958. ((bufsz * bufcnt) / num_watermarks);
  3959. pr_debug("%s: Watermark level set for %i\n",
  3960. __func__,
  3961. open->watermark[i].watermark_level_bytes);
  3962. }
  3963. rc = apr_send_pkt(ac->apr, (uint32_t *) open);
  3964. if (rc < 0) {
  3965. pr_err("%s: Open failed op[0x%x]rc[%d]\n",
  3966. __func__, open->hdr.opcode, rc);
  3967. goto done;
  3968. }
  3969. pr_debug("%s: sent open apr pkt\n", __func__);
  3970. rc = wait_event_timeout(ac->cmd_wait,
  3971. (atomic_read(&ac->cmd_state) <= 0),
  3972. msecs_to_jiffies(TIMEOUT_MS));
  3973. if (!rc) {
  3974. pr_err("%s: Timeout. Waited for open write apr pkt rc[%d]\n",
  3975. __func__, rc);
  3976. rc = -ETIMEDOUT;
  3977. goto done;
  3978. }
  3979. if (atomic_read(&ac->cmd_state) < 0) {
  3980. pr_err("%s: DSP returned error [%d]\n", __func__,
  3981. atomic_read(&ac->cmd_state));
  3982. rc = -EINVAL;
  3983. goto done;
  3984. }
  3985. ac->io_mode |= TUN_WRITE_IO_MODE;
  3986. rc = 0;
  3987. done:
  3988. kfree(open);
  3989. return rc;
  3990. }
  3991. EXPORT_SYMBOL(q6asm_open_shared_io);
  3992. /*
  3993. * q6asm_shared_io_buf: Returns handle to the shared circular buffer being
  3994. * used for pull/push mode.
  3995. * parameters
  3996. * dir - used to identify input/output port
  3997. * returns buffer handle
  3998. */
  3999. struct audio_buffer *q6asm_shared_io_buf(struct audio_client *ac,
  4000. int dir)
  4001. {
  4002. struct audio_port_data *port;
  4003. if (!ac) {
  4004. pr_err("%s: ac is null\n", __func__);
  4005. return NULL;
  4006. }
  4007. port = &ac->port[dir];
  4008. return port->buf;
  4009. }
  4010. EXPORT_SYMBOL(q6asm_shared_io_buf);
  4011. /*
  4012. * q6asm_shared_io_free: Frees memory allocated for a pull/push session
  4013. * parameters
  4014. * dir - port direction
  4015. * returns 0 if successful, error otherwise
  4016. */
  4017. int q6asm_shared_io_free(struct audio_client *ac, int dir)
  4018. {
  4019. struct audio_port_data *port;
  4020. if (!ac) {
  4021. pr_err("%s: audio client is null\n", __func__);
  4022. return -EINVAL;
  4023. }
  4024. port = &ac->port[dir];
  4025. mutex_lock(&ac->cmd_lock);
  4026. if (port->buf && port->buf->data) {
  4027. msm_audio_ion_free(port->buf->dma_buf);
  4028. port->buf->dma_buf = NULL;
  4029. port->max_buf_cnt = 0;
  4030. kfree(port->buf);
  4031. port->buf = NULL;
  4032. }
  4033. if (ac->shared_pos_buf.data) {
  4034. msm_audio_ion_free(ac->shared_pos_buf.dma_buf);
  4035. ac->shared_pos_buf.dma_buf = NULL;
  4036. }
  4037. mutex_unlock(&ac->cmd_lock);
  4038. return 0;
  4039. }
  4040. EXPORT_SYMBOL(q6asm_shared_io_free);
  4041. /*
  4042. * q6asm_get_shared_pos: Returns current read index/write index as observed
  4043. * by the DSP. Note that this is an offset and iterates from [0,BUF_SIZE - 1]
  4044. * parameters - (all output)
  4045. * read_index - offset
  4046. * wall_clk_msw1 - ADSP wallclock msw
  4047. * wall_clk_lsw1 - ADSP wallclock lsw
  4048. * returns 0 if successful, -EAGAIN if DSP failed to update after some
  4049. * retries
  4050. */
  4051. int q6asm_get_shared_pos(struct audio_client *ac, uint32_t *read_index,
  4052. uint32_t *wall_clk_msw1, uint32_t *wall_clk_lsw1)
  4053. {
  4054. struct asm_shared_position_buffer *pos_buf;
  4055. uint32_t frame_cnt1, frame_cnt2;
  4056. int i, j;
  4057. if (!ac) {
  4058. pr_err("%s: audio client is null\n", __func__);
  4059. return -EINVAL;
  4060. }
  4061. pos_buf = ac->shared_pos_buf.data;
  4062. /* always try to get the latest update in the shared pos buffer */
  4063. for (i = 0; i < 2; i++) {
  4064. /* retry until there is an update from DSP */
  4065. for (j = 0; j < 5; j++) {
  4066. frame_cnt1 = pos_buf->frame_counter;
  4067. if (frame_cnt1 != 0)
  4068. break;
  4069. }
  4070. *wall_clk_msw1 = pos_buf->wall_clock_us_msw;
  4071. *wall_clk_lsw1 = pos_buf->wall_clock_us_lsw;
  4072. *read_index = pos_buf->index;
  4073. frame_cnt2 = pos_buf->frame_counter;
  4074. if (frame_cnt1 != frame_cnt2)
  4075. continue;
  4076. return 0;
  4077. }
  4078. pr_err("%s out of tries trying to get a good read, try again\n",
  4079. __func__);
  4080. return -EAGAIN;
  4081. }
  4082. EXPORT_SYMBOL(q6asm_get_shared_pos);
  4083. /**
  4084. * q6asm_run -
  4085. * command to set ASM to run state
  4086. *
  4087. * @ac: Audio client handle
  4088. * @flags: Flags for session
  4089. * @msw_ts: upper 32bits timestamp
  4090. * @lsw_ts: lower 32bits timestamp
  4091. *
  4092. * Returns 0 on success or error on failure
  4093. */
  4094. int q6asm_run(struct audio_client *ac, uint32_t flags,
  4095. uint32_t msw_ts, uint32_t lsw_ts)
  4096. {
  4097. struct asm_session_cmd_run_v2 run;
  4098. int rc;
  4099. if (ac == NULL) {
  4100. pr_err("%s: APR handle NULL\n", __func__);
  4101. return -EINVAL;
  4102. }
  4103. if (ac->apr == NULL) {
  4104. pr_err("%s: AC APR handle NULL\n", __func__);
  4105. return -EINVAL;
  4106. }
  4107. pr_debug("%s: session[%d]\n", __func__, ac->session);
  4108. q6asm_add_hdr(ac, &run.hdr, sizeof(run), TRUE);
  4109. atomic_set(&ac->cmd_state, -1);
  4110. run.hdr.opcode = ASM_SESSION_CMD_RUN_V2;
  4111. run.flags = flags;
  4112. run.time_lsw = lsw_ts;
  4113. run.time_msw = msw_ts;
  4114. config_debug_fs_run();
  4115. rc = apr_send_pkt(ac->apr, (uint32_t *) &run);
  4116. if (rc < 0) {
  4117. pr_err("%s: Commmand run failed[%d]",
  4118. __func__, rc);
  4119. rc = -EINVAL;
  4120. goto fail_cmd;
  4121. }
  4122. rc = wait_event_timeout(ac->cmd_wait,
  4123. (atomic_read(&ac->cmd_state) >= 0),
  4124. msecs_to_jiffies(TIMEOUT_MS));
  4125. if (!rc) {
  4126. pr_err("%s: timeout. waited for run success",
  4127. __func__);
  4128. rc = -ETIMEDOUT;
  4129. goto fail_cmd;
  4130. }
  4131. if (atomic_read(&ac->cmd_state) > 0) {
  4132. pr_err("%s: DSP returned error[%s]\n",
  4133. __func__, adsp_err_get_err_str(
  4134. atomic_read(&ac->cmd_state)));
  4135. rc = adsp_err_get_lnx_err_code(
  4136. atomic_read(&ac->cmd_state));
  4137. goto fail_cmd;
  4138. }
  4139. return 0;
  4140. fail_cmd:
  4141. return rc;
  4142. }
  4143. EXPORT_SYMBOL(q6asm_run);
  4144. static int __q6asm_run_nowait(struct audio_client *ac, uint32_t flags,
  4145. uint32_t msw_ts, uint32_t lsw_ts, uint32_t stream_id)
  4146. {
  4147. struct asm_session_cmd_run_v2 run;
  4148. int rc;
  4149. if (ac == NULL) {
  4150. pr_err("%s: APR handle NULL\n", __func__);
  4151. return -EINVAL;
  4152. }
  4153. if (ac->apr == NULL) {
  4154. pr_err("%s: AC APR handle NULL\n", __func__);
  4155. return -EINVAL;
  4156. }
  4157. pr_debug("%s: session[%d]\n", __func__, ac->session);
  4158. q6asm_stream_add_hdr_async(ac, &run.hdr, sizeof(run), TRUE, stream_id);
  4159. atomic_set(&ac->cmd_state, 1);
  4160. run.hdr.opcode = ASM_SESSION_CMD_RUN_V2;
  4161. run.flags = flags;
  4162. run.time_lsw = lsw_ts;
  4163. run.time_msw = msw_ts;
  4164. rc = apr_send_pkt(ac->apr, (uint32_t *) &run);
  4165. if (rc < 0) {
  4166. pr_err("%s: Commmand run failed[%d]", __func__, rc);
  4167. return -EINVAL;
  4168. }
  4169. return 0;
  4170. }
  4171. /**
  4172. * q6asm_run_nowait -
  4173. * command to set ASM to run state with no wait for ack
  4174. *
  4175. * @ac: Audio client handle
  4176. * @flags: Flags for session
  4177. * @msw_ts: upper 32bits timestamp
  4178. * @lsw_ts: lower 32bits timestamp
  4179. *
  4180. * Returns 0 on success or error on failure
  4181. */
  4182. int q6asm_run_nowait(struct audio_client *ac, uint32_t flags,
  4183. uint32_t msw_ts, uint32_t lsw_ts)
  4184. {
  4185. return __q6asm_run_nowait(ac, flags, msw_ts, lsw_ts, ac->stream_id);
  4186. }
  4187. EXPORT_SYMBOL(q6asm_run_nowait);
  4188. int q6asm_stream_run_nowait(struct audio_client *ac, uint32_t flags,
  4189. uint32_t msw_ts, uint32_t lsw_ts, uint32_t stream_id)
  4190. {
  4191. return __q6asm_run_nowait(ac, flags, msw_ts, lsw_ts, stream_id);
  4192. }
  4193. /**
  4194. * q6asm_enc_cfg_blk_custom -
  4195. * command to set encode cfg block for custom
  4196. *
  4197. * @ac: Audio client handle
  4198. * @sample_rate: Sample rate
  4199. * @channels: number of ASM channels
  4200. * @format: custom format flag
  4201. * @cfg: generic encoder config
  4202. *
  4203. * Returns 0 on success or error on failure
  4204. */
  4205. int q6asm_enc_cfg_blk_custom(struct audio_client *ac,
  4206. uint32_t sample_rate, uint32_t channels,
  4207. uint32_t format, void *cfg)
  4208. {
  4209. struct asm_custom_enc_cfg_t_v2 enc_cfg;
  4210. int rc = 0;
  4211. uint32_t custom_size;
  4212. struct snd_enc_generic *enc_generic = (struct snd_enc_generic *) cfg;
  4213. custom_size = enc_generic->reserved[1];
  4214. pr_debug("%s: session[%d] size[%d] res[2]=[%d] res[3]=[%d]\n",
  4215. __func__, ac->session, custom_size, enc_generic->reserved[2],
  4216. enc_generic->reserved[3]);
  4217. pr_debug("%s: res[4]=[%d] sr[%d] ch[%d] format[%d]\n",
  4218. __func__, enc_generic->reserved[4], sample_rate,
  4219. channels, format);
  4220. memset(&enc_cfg, 0, sizeof(struct asm_custom_enc_cfg_t_v2));
  4221. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4222. atomic_set(&ac->cmd_state, -1);
  4223. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4224. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4225. enc_cfg.encdec.param_size = sizeof(struct asm_custom_enc_cfg_t_v2) -
  4226. sizeof(struct asm_stream_cmd_set_encdec_param);
  4227. enc_cfg.encblk.frames_per_buf = ENC_FRAMES_PER_BUFFER;
  4228. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4229. sizeof(struct asm_enc_cfg_blk_param_v2);
  4230. enc_cfg.num_channels = channels;
  4231. enc_cfg.sample_rate = sample_rate;
  4232. if (q6asm_map_channels(enc_cfg.channel_mapping, channels, false)) {
  4233. pr_err("%s: map channels failed %d\n",
  4234. __func__, channels);
  4235. rc = -EINVAL;
  4236. goto fail_cmd;
  4237. }
  4238. if (format == FORMAT_BESPOKE && custom_size &&
  4239. custom_size <= sizeof(enc_cfg.custom_data)) {
  4240. memcpy(enc_cfg.custom_data, &enc_generic->reserved[2],
  4241. custom_size);
  4242. enc_cfg.custom_size = custom_size;
  4243. }
  4244. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4245. if (rc < 0) {
  4246. pr_err("%s: Comamnd %d failed %d\n",
  4247. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  4248. rc = -EINVAL;
  4249. goto fail_cmd;
  4250. }
  4251. rc = wait_event_timeout(ac->cmd_wait,
  4252. (atomic_read(&ac->cmd_state) >= 0),
  4253. msecs_to_jiffies(TIMEOUT_MS));
  4254. if (!rc) {
  4255. pr_err("%s: timeout. waited for FORMAT_UPDATE\n",
  4256. __func__);
  4257. rc = -ETIMEDOUT;
  4258. goto fail_cmd;
  4259. }
  4260. if (atomic_read(&ac->cmd_state) > 0) {
  4261. pr_err("%s: DSP returned error[%s]\n",
  4262. __func__, adsp_err_get_err_str(
  4263. atomic_read(&ac->cmd_state)));
  4264. rc = adsp_err_get_lnx_err_code(
  4265. atomic_read(&ac->cmd_state));
  4266. goto fail_cmd;
  4267. }
  4268. return 0;
  4269. fail_cmd:
  4270. return rc;
  4271. }
  4272. EXPORT_SYMBOL(q6asm_enc_cfg_blk_custom);
  4273. /**
  4274. * q6asm_enc_cfg_blk_aac -
  4275. * command to set encode cfg block for aac
  4276. *
  4277. * @ac: Audio client handle
  4278. * @frames_per_buf: number of frames per buffer
  4279. * @sample_rate: Sample rate
  4280. * @channels: number of ASM channels
  4281. * @bit_rate: Bit rate info
  4282. * @mode: mode of AAC stream encode
  4283. * @format: aac format flag
  4284. *
  4285. * Returns 0 on success or error on failure
  4286. */
  4287. int q6asm_enc_cfg_blk_aac(struct audio_client *ac,
  4288. uint32_t frames_per_buf,
  4289. uint32_t sample_rate, uint32_t channels,
  4290. uint32_t bit_rate, uint32_t mode, uint32_t format)
  4291. {
  4292. struct asm_aac_enc_cfg_v2 enc_cfg;
  4293. int rc = 0;
  4294. pr_debug("%s: session[%d]frames[%d]SR[%d]ch[%d]bitrate[%d]mode[%d] format[%d]\n",
  4295. __func__, ac->session, frames_per_buf,
  4296. sample_rate, channels, bit_rate, mode, format);
  4297. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4298. atomic_set(&ac->cmd_state, -1);
  4299. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4300. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4301. enc_cfg.encdec.param_size = sizeof(struct asm_aac_enc_cfg_v2) -
  4302. sizeof(struct asm_stream_cmd_set_encdec_param);
  4303. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4304. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4305. sizeof(struct asm_enc_cfg_blk_param_v2);
  4306. enc_cfg.bit_rate = bit_rate;
  4307. enc_cfg.enc_mode = mode;
  4308. enc_cfg.aac_fmt_flag = format;
  4309. enc_cfg.channel_cfg = channels;
  4310. enc_cfg.sample_rate = sample_rate;
  4311. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4312. if (rc < 0) {
  4313. pr_err("%s: Comamnd %d failed %d\n",
  4314. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  4315. rc = -EINVAL;
  4316. goto fail_cmd;
  4317. }
  4318. rc = wait_event_timeout(ac->cmd_wait,
  4319. (atomic_read(&ac->cmd_state) >= 0),
  4320. msecs_to_jiffies(TIMEOUT_MS));
  4321. if (!rc) {
  4322. pr_err("%s: timeout. waited for FORMAT_UPDATE\n",
  4323. __func__);
  4324. rc = -ETIMEDOUT;
  4325. goto fail_cmd;
  4326. }
  4327. if (atomic_read(&ac->cmd_state) > 0) {
  4328. pr_err("%s: DSP returned error[%s]\n",
  4329. __func__, adsp_err_get_err_str(
  4330. atomic_read(&ac->cmd_state)));
  4331. rc = adsp_err_get_lnx_err_code(
  4332. atomic_read(&ac->cmd_state));
  4333. goto fail_cmd;
  4334. }
  4335. return 0;
  4336. fail_cmd:
  4337. return rc;
  4338. }
  4339. EXPORT_SYMBOL(q6asm_enc_cfg_blk_aac);
  4340. /**
  4341. * q6asm_enc_cfg_blk_g711 -
  4342. * command to set encode cfg block for g711
  4343. *
  4344. * @ac: Audio client handle
  4345. * @frames_per_buf: number of frames per buffer
  4346. * @sample_rate: Sample rate
  4347. *
  4348. * Returns 0 on success or error on failure
  4349. */
  4350. int q6asm_enc_cfg_blk_g711(struct audio_client *ac,
  4351. uint32_t frames_per_buf,
  4352. uint32_t sample_rate)
  4353. {
  4354. struct asm_g711_enc_cfg_v2 enc_cfg;
  4355. int rc = 0;
  4356. pr_debug("%s: session[%d]frames[%d]SR[%d]\n",
  4357. __func__, ac->session, frames_per_buf,
  4358. sample_rate);
  4359. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4360. atomic_set(&ac->cmd_state, -1);
  4361. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4362. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4363. enc_cfg.encdec.param_size = sizeof(struct asm_g711_enc_cfg_v2) -
  4364. sizeof(struct asm_stream_cmd_set_encdec_param);
  4365. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4366. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4367. sizeof(struct asm_enc_cfg_blk_param_v2);
  4368. enc_cfg.sample_rate = sample_rate;
  4369. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4370. if (rc < 0) {
  4371. pr_err("%s: Comamnd %d failed %d\n",
  4372. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  4373. rc = -EINVAL;
  4374. goto fail_cmd;
  4375. }
  4376. rc = wait_event_timeout(ac->cmd_wait,
  4377. (atomic_read(&ac->cmd_state) >= 0),
  4378. msecs_to_jiffies(TIMEOUT_MS));
  4379. if (!rc) {
  4380. pr_err("%s: timeout. waited for FORMAT_UPDATE\n",
  4381. __func__);
  4382. rc = -ETIMEDOUT;
  4383. goto fail_cmd;
  4384. }
  4385. if (atomic_read(&ac->cmd_state) > 0) {
  4386. pr_err("%s: DSP returned error[%s]\n",
  4387. __func__, adsp_err_get_err_str(
  4388. atomic_read(&ac->cmd_state)));
  4389. rc = adsp_err_get_lnx_err_code(
  4390. atomic_read(&ac->cmd_state));
  4391. goto fail_cmd;
  4392. }
  4393. return 0;
  4394. fail_cmd:
  4395. return rc;
  4396. }
  4397. EXPORT_SYMBOL(q6asm_enc_cfg_blk_g711);
  4398. /**
  4399. * q6asm_set_encdec_chan_map -
  4400. * command to set encdec channel map
  4401. *
  4402. * @ac: Audio client handle
  4403. * @channels: number of channels
  4404. *
  4405. * Returns 0 on success or error on failure
  4406. */
  4407. int q6asm_set_encdec_chan_map(struct audio_client *ac,
  4408. uint32_t num_channels)
  4409. {
  4410. struct asm_dec_out_chan_map_param chan_map;
  4411. u8 *channel_mapping;
  4412. int rc = 0;
  4413. pr_debug("%s: Session %d, num_channels = %d\n",
  4414. __func__, ac->session, num_channels);
  4415. q6asm_add_hdr(ac, &chan_map.hdr, sizeof(chan_map), TRUE);
  4416. atomic_set(&ac->cmd_state, -1);
  4417. chan_map.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4418. chan_map.encdec.param_id = ASM_PARAM_ID_DEC_OUTPUT_CHAN_MAP;
  4419. chan_map.encdec.param_size = sizeof(struct asm_dec_out_chan_map_param) -
  4420. (sizeof(struct apr_hdr) +
  4421. sizeof(struct asm_stream_cmd_set_encdec_param));
  4422. chan_map.num_channels = num_channels;
  4423. channel_mapping = chan_map.channel_mapping;
  4424. memset(channel_mapping, PCM_CHANNEL_NULL, MAX_CHAN_MAP_CHANNELS);
  4425. if (q6asm_map_channels(channel_mapping, num_channels, false)) {
  4426. pr_err("%s: map channels failed %d\n", __func__, num_channels);
  4427. return -EINVAL;
  4428. }
  4429. rc = apr_send_pkt(ac->apr, (uint32_t *) &chan_map);
  4430. if (rc < 0) {
  4431. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  4432. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  4433. ASM_PARAM_ID_DEC_OUTPUT_CHAN_MAP, rc);
  4434. goto fail_cmd;
  4435. }
  4436. rc = wait_event_timeout(ac->cmd_wait,
  4437. (atomic_read(&ac->cmd_state) >= 0),
  4438. msecs_to_jiffies(TIMEOUT_MS));
  4439. if (!rc) {
  4440. pr_err("%s: timeout opcode[0x%x]\n", __func__,
  4441. chan_map.hdr.opcode);
  4442. rc = -ETIMEDOUT;
  4443. goto fail_cmd;
  4444. }
  4445. if (atomic_read(&ac->cmd_state) > 0) {
  4446. pr_err("%s: DSP returned error[%s]\n",
  4447. __func__, adsp_err_get_err_str(
  4448. atomic_read(&ac->cmd_state)));
  4449. rc = adsp_err_get_lnx_err_code(
  4450. atomic_read(&ac->cmd_state));
  4451. goto fail_cmd;
  4452. }
  4453. return 0;
  4454. fail_cmd:
  4455. return rc;
  4456. }
  4457. EXPORT_SYMBOL(q6asm_set_encdec_chan_map);
  4458. /*
  4459. * q6asm_enc_cfg_blk_pcm_v5 - sends encoder configuration parameters
  4460. *
  4461. * @ac: Client session handle
  4462. * @rate: sample rate
  4463. * @channels: number of channels
  4464. * @bits_per_sample: bit width of encoder session
  4465. * @use_default_chmap: true if default channel map to be used
  4466. * @use_back_flavor: to configure back left and right channel
  4467. * @channel_map: input channel map
  4468. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4469. * @endianness: endianness of the pcm data
  4470. * @mode: Mode to provide additional info about the pcm input data
  4471. */
  4472. static int q6asm_enc_cfg_blk_pcm_v5(struct audio_client *ac,
  4473. uint32_t rate, uint32_t channels,
  4474. uint16_t bits_per_sample, bool use_default_chmap,
  4475. bool use_back_flavor, u8 *channel_map,
  4476. uint16_t sample_word_size, uint16_t endianness,
  4477. uint16_t mode)
  4478. {
  4479. struct asm_multi_channel_pcm_enc_cfg_v5 enc_cfg;
  4480. struct asm_enc_cfg_blk_param_v2 enc_fg_blk;
  4481. u8 *channel_mapping;
  4482. u32 frames_per_buf = 0;
  4483. int rc;
  4484. if (!use_default_chmap && (channel_map == NULL)) {
  4485. pr_err("%s: No valid chan map and can't use default\n",
  4486. __func__);
  4487. rc = -EINVAL;
  4488. goto fail_cmd;
  4489. }
  4490. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  4491. ac->session, rate, channels,
  4492. bits_per_sample, sample_word_size);
  4493. memset(&enc_cfg, 0, sizeof(enc_cfg));
  4494. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4495. atomic_set(&ac->cmd_state, -1);
  4496. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4497. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4498. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4499. sizeof(enc_cfg.encdec);
  4500. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4501. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4502. sizeof(enc_fg_blk);
  4503. enc_cfg.num_channels = channels;
  4504. enc_cfg.bits_per_sample = bits_per_sample;
  4505. enc_cfg.sample_rate = rate;
  4506. enc_cfg.is_signed = 1;
  4507. enc_cfg.sample_word_size = sample_word_size;
  4508. enc_cfg.endianness = endianness;
  4509. enc_cfg.mode = mode;
  4510. channel_mapping = enc_cfg.channel_mapping;
  4511. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  4512. if (use_default_chmap) {
  4513. pr_debug("%s: setting default channel map for %d channels",
  4514. __func__, channels);
  4515. if (q6asm_map_channels(channel_mapping, channels,
  4516. use_back_flavor)) {
  4517. pr_err("%s: map channels failed %d\n",
  4518. __func__, channels);
  4519. rc = -EINVAL;
  4520. goto fail_cmd;
  4521. }
  4522. } else {
  4523. pr_debug("%s: Using pre-defined channel map", __func__);
  4524. memcpy(channel_mapping, channel_map,
  4525. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  4526. }
  4527. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4528. if (rc < 0) {
  4529. pr_err("%s: Command open failed %d\n", __func__, rc);
  4530. goto fail_cmd;
  4531. }
  4532. rc = wait_event_timeout(ac->cmd_wait,
  4533. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4534. if (!rc) {
  4535. pr_err("%s: timeout opcode[0x%x]\n",
  4536. __func__, enc_cfg.hdr.opcode);
  4537. rc = -ETIMEDOUT;
  4538. goto fail_cmd;
  4539. }
  4540. if (atomic_read(&ac->cmd_state) > 0) {
  4541. pr_err("%s: DSP returned error[%s]\n",
  4542. __func__, adsp_err_get_err_str(
  4543. atomic_read(&ac->cmd_state)));
  4544. rc = adsp_err_get_lnx_err_code(
  4545. atomic_read(&ac->cmd_state));
  4546. goto fail_cmd;
  4547. }
  4548. return 0;
  4549. fail_cmd:
  4550. return rc;
  4551. }
  4552. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v5);
  4553. /*
  4554. * q6asm_enc_cfg_blk_pcm_v4 - sends encoder configuration parameters
  4555. *
  4556. * @ac: Client session handle
  4557. * @rate: sample rate
  4558. * @channels: number of channels
  4559. * @bits_per_sample: bit width of encoder session
  4560. * @use_default_chmap: true if default channel map to be used
  4561. * @use_back_flavor: to configure back left and right channel
  4562. * @channel_map: input channel map
  4563. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4564. * @endianness: endianness of the pcm data
  4565. * @mode: Mode to provide additional info about the pcm input data
  4566. */
  4567. int q6asm_enc_cfg_blk_pcm_v4(struct audio_client *ac,
  4568. uint32_t rate, uint32_t channels,
  4569. uint16_t bits_per_sample, bool use_default_chmap,
  4570. bool use_back_flavor, u8 *channel_map,
  4571. uint16_t sample_word_size, uint16_t endianness,
  4572. uint16_t mode)
  4573. {
  4574. struct asm_multi_channel_pcm_enc_cfg_v4 enc_cfg;
  4575. struct asm_enc_cfg_blk_param_v2 enc_fg_blk;
  4576. u8 *channel_mapping;
  4577. u32 frames_per_buf = 0;
  4578. int rc;
  4579. if (!use_default_chmap && (channel_map == NULL)) {
  4580. pr_err("%s: No valid chan map and can't use default\n",
  4581. __func__);
  4582. rc = -EINVAL;
  4583. goto fail_cmd;
  4584. }
  4585. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  4586. ac->session, rate, channels,
  4587. bits_per_sample, sample_word_size);
  4588. memset(&enc_cfg, 0, sizeof(enc_cfg));
  4589. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4590. atomic_set(&ac->cmd_state, -1);
  4591. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4592. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4593. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4594. sizeof(enc_cfg.encdec);
  4595. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4596. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4597. sizeof(enc_fg_blk);
  4598. enc_cfg.num_channels = channels;
  4599. enc_cfg.bits_per_sample = bits_per_sample;
  4600. enc_cfg.sample_rate = rate;
  4601. enc_cfg.is_signed = 1;
  4602. enc_cfg.sample_word_size = sample_word_size;
  4603. enc_cfg.endianness = endianness;
  4604. enc_cfg.mode = mode;
  4605. channel_mapping = enc_cfg.channel_mapping;
  4606. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4607. if (use_default_chmap) {
  4608. pr_debug("%s: setting default channel map for %d channels",
  4609. __func__, channels);
  4610. if (q6asm_map_channels(channel_mapping, channels,
  4611. use_back_flavor)) {
  4612. pr_err("%s: map channels failed %d\n",
  4613. __func__, channels);
  4614. rc = -EINVAL;
  4615. goto fail_cmd;
  4616. }
  4617. } else {
  4618. pr_debug("%s: Using pre-defined channel map", __func__);
  4619. memcpy(channel_mapping, channel_map,
  4620. PCM_FORMAT_MAX_NUM_CHANNEL);
  4621. }
  4622. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4623. if (rc < 0) {
  4624. pr_err("%s: Command open failed %d\n", __func__, rc);
  4625. goto fail_cmd;
  4626. }
  4627. rc = wait_event_timeout(ac->cmd_wait,
  4628. (atomic_read(&ac->cmd_state) >= 0),
  4629. msecs_to_jiffies(TIMEOUT_MS));
  4630. if (!rc) {
  4631. pr_err("%s: timeout opcode[0x%x]\n",
  4632. __func__, enc_cfg.hdr.opcode);
  4633. rc = -ETIMEDOUT;
  4634. goto fail_cmd;
  4635. }
  4636. if (atomic_read(&ac->cmd_state) > 0) {
  4637. pr_err("%s: DSP returned error[%s]\n",
  4638. __func__, adsp_err_get_err_str(
  4639. atomic_read(&ac->cmd_state)));
  4640. rc = adsp_err_get_lnx_err_code(
  4641. atomic_read(&ac->cmd_state));
  4642. goto fail_cmd;
  4643. }
  4644. return 0;
  4645. fail_cmd:
  4646. return rc;
  4647. }
  4648. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v4);
  4649. /*
  4650. * q6asm_enc_cfg_blk_pcm_v3 - sends encoder configuration parameters
  4651. *
  4652. * @ac: Client session handle
  4653. * @rate: sample rate
  4654. * @channels: number of channels
  4655. * @bits_per_sample: bit width of encoder session
  4656. * @use_default_chmap: true if default channel map to be used
  4657. * @use_back_flavor: to configure back left and right channel
  4658. * @channel_map: input channel map
  4659. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4660. */
  4661. int q6asm_enc_cfg_blk_pcm_v3(struct audio_client *ac,
  4662. uint32_t rate, uint32_t channels,
  4663. uint16_t bits_per_sample, bool use_default_chmap,
  4664. bool use_back_flavor, u8 *channel_map,
  4665. uint16_t sample_word_size)
  4666. {
  4667. struct asm_multi_channel_pcm_enc_cfg_v3 enc_cfg;
  4668. struct asm_enc_cfg_blk_param_v2 enc_fg_blk;
  4669. u8 *channel_mapping;
  4670. u32 frames_per_buf = 0;
  4671. int rc;
  4672. if (!use_default_chmap && (channel_map == NULL)) {
  4673. pr_err("%s: No valid chan map and can't use default\n",
  4674. __func__);
  4675. rc = -EINVAL;
  4676. goto fail_cmd;
  4677. }
  4678. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  4679. ac->session, rate, channels,
  4680. bits_per_sample, sample_word_size);
  4681. memset(&enc_cfg, 0, sizeof(enc_cfg));
  4682. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4683. atomic_set(&ac->cmd_state, -1);
  4684. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4685. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4686. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4687. sizeof(enc_cfg.encdec);
  4688. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4689. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4690. sizeof(enc_fg_blk);
  4691. enc_cfg.num_channels = channels;
  4692. enc_cfg.bits_per_sample = bits_per_sample;
  4693. enc_cfg.sample_rate = rate;
  4694. enc_cfg.is_signed = 1;
  4695. enc_cfg.sample_word_size = sample_word_size;
  4696. channel_mapping = enc_cfg.channel_mapping;
  4697. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4698. if (use_default_chmap) {
  4699. pr_debug("%s: setting default channel map for %d channels",
  4700. __func__, channels);
  4701. if (q6asm_map_channels(channel_mapping, channels,
  4702. use_back_flavor)) {
  4703. pr_err("%s: map channels failed %d\n",
  4704. __func__, channels);
  4705. rc = -EINVAL;
  4706. goto fail_cmd;
  4707. }
  4708. } else {
  4709. pr_debug("%s: Using pre-defined channel map", __func__);
  4710. memcpy(channel_mapping, channel_map,
  4711. PCM_FORMAT_MAX_NUM_CHANNEL);
  4712. }
  4713. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4714. if (rc < 0) {
  4715. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  4716. goto fail_cmd;
  4717. }
  4718. rc = wait_event_timeout(ac->cmd_wait,
  4719. (atomic_read(&ac->cmd_state) >= 0),
  4720. msecs_to_jiffies(TIMEOUT_MS));
  4721. if (!rc) {
  4722. pr_err("%s: timeout opcode[0x%x]\n",
  4723. __func__, enc_cfg.hdr.opcode);
  4724. rc = -ETIMEDOUT;
  4725. goto fail_cmd;
  4726. }
  4727. if (atomic_read(&ac->cmd_state) > 0) {
  4728. pr_err("%s: DSP returned error[%s]\n",
  4729. __func__, adsp_err_get_err_str(
  4730. atomic_read(&ac->cmd_state)));
  4731. rc = adsp_err_get_lnx_err_code(
  4732. atomic_read(&ac->cmd_state));
  4733. goto fail_cmd;
  4734. }
  4735. return 0;
  4736. fail_cmd:
  4737. return rc;
  4738. }
  4739. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v3);
  4740. /**
  4741. * q6asm_enc_cfg_blk_pcm_v2 -
  4742. * command to set encode config block for pcm_v2
  4743. *
  4744. * @ac: Audio client handle
  4745. * @rate: sample rate
  4746. * @channels: number of channels
  4747. * @bits_per_sample: number of bits per sample
  4748. * @use_default_chmap: Flag indicating to use default ch_map or not
  4749. * @use_back_flavor: back flavor flag
  4750. * @channel_map: Custom channel map settings
  4751. *
  4752. * Returns 0 on success or error on failure
  4753. */
  4754. int q6asm_enc_cfg_blk_pcm_v2(struct audio_client *ac,
  4755. uint32_t rate, uint32_t channels, uint16_t bits_per_sample,
  4756. bool use_default_chmap, bool use_back_flavor, u8 *channel_map)
  4757. {
  4758. struct asm_multi_channel_pcm_enc_cfg_v2 enc_cfg;
  4759. u8 *channel_mapping;
  4760. u32 frames_per_buf = 0;
  4761. int rc = 0;
  4762. if (!use_default_chmap && (channel_map == NULL)) {
  4763. pr_err("%s: No valid chan map and can't use default\n",
  4764. __func__);
  4765. return -EINVAL;
  4766. }
  4767. pr_debug("%s: Session %d, rate = %d, channels = %d\n", __func__,
  4768. ac->session, rate, channels);
  4769. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4770. atomic_set(&ac->cmd_state, -1);
  4771. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4772. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4773. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4774. sizeof(enc_cfg.encdec);
  4775. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4776. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4777. sizeof(struct asm_enc_cfg_blk_param_v2);
  4778. enc_cfg.num_channels = channels;
  4779. enc_cfg.bits_per_sample = bits_per_sample;
  4780. enc_cfg.sample_rate = rate;
  4781. enc_cfg.is_signed = 1;
  4782. channel_mapping = enc_cfg.channel_mapping;
  4783. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4784. if (use_default_chmap) {
  4785. pr_debug("%s: setting default channel map for %d channels",
  4786. __func__, channels);
  4787. if (q6asm_map_channels(channel_mapping, channels,
  4788. use_back_flavor)) {
  4789. pr_err("%s: map channels failed %d\n",
  4790. __func__, channels);
  4791. return -EINVAL;
  4792. }
  4793. } else {
  4794. pr_debug("%s: Using pre-defined channel map", __func__);
  4795. memcpy(channel_mapping, channel_map,
  4796. PCM_FORMAT_MAX_NUM_CHANNEL);
  4797. }
  4798. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4799. if (rc < 0) {
  4800. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  4801. rc = -EINVAL;
  4802. goto fail_cmd;
  4803. }
  4804. rc = wait_event_timeout(ac->cmd_wait,
  4805. (atomic_read(&ac->cmd_state) >= 0),
  4806. msecs_to_jiffies(TIMEOUT_MS));
  4807. if (!rc) {
  4808. pr_err("%s: timeout opcode[0x%x]\n",
  4809. __func__, enc_cfg.hdr.opcode);
  4810. rc = -ETIMEDOUT;
  4811. goto fail_cmd;
  4812. }
  4813. if (atomic_read(&ac->cmd_state) > 0) {
  4814. pr_err("%s: DSP returned error[%s]\n",
  4815. __func__, adsp_err_get_err_str(
  4816. atomic_read(&ac->cmd_state)));
  4817. rc = adsp_err_get_lnx_err_code(
  4818. atomic_read(&ac->cmd_state));
  4819. goto fail_cmd;
  4820. }
  4821. return 0;
  4822. fail_cmd:
  4823. return rc;
  4824. }
  4825. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v2);
  4826. static int __q6asm_enc_cfg_blk_pcm_v5(struct audio_client *ac,
  4827. uint32_t rate, uint32_t channels,
  4828. uint16_t bits_per_sample,
  4829. uint16_t sample_word_size,
  4830. uint16_t endianness,
  4831. uint16_t mode)
  4832. {
  4833. return q6asm_enc_cfg_blk_pcm_v5(ac, rate, channels,
  4834. bits_per_sample, true, false, NULL,
  4835. sample_word_size, endianness, mode);
  4836. }
  4837. static int __q6asm_enc_cfg_blk_pcm_v4(struct audio_client *ac,
  4838. uint32_t rate, uint32_t channels,
  4839. uint16_t bits_per_sample,
  4840. uint16_t sample_word_size,
  4841. uint16_t endianness,
  4842. uint16_t mode)
  4843. {
  4844. return q6asm_enc_cfg_blk_pcm_v4(ac, rate, channels,
  4845. bits_per_sample, true, false, NULL,
  4846. sample_word_size, endianness, mode);
  4847. }
  4848. static int __q6asm_enc_cfg_blk_pcm_v3(struct audio_client *ac,
  4849. uint32_t rate, uint32_t channels,
  4850. uint16_t bits_per_sample,
  4851. uint16_t sample_word_size)
  4852. {
  4853. return q6asm_enc_cfg_blk_pcm_v3(ac, rate, channels,
  4854. bits_per_sample, true, false, NULL,
  4855. sample_word_size);
  4856. }
  4857. static int __q6asm_enc_cfg_blk_pcm(struct audio_client *ac,
  4858. uint32_t rate, uint32_t channels, uint16_t bits_per_sample)
  4859. {
  4860. return q6asm_enc_cfg_blk_pcm_v2(ac, rate, channels,
  4861. bits_per_sample, true, false, NULL);
  4862. }
  4863. /**
  4864. * q6asm_enc_cfg_blk_pcm -
  4865. * command to set encode config block for pcm
  4866. *
  4867. * @ac: Audio client handle
  4868. * @rate: sample rate
  4869. * @channels: number of channels
  4870. *
  4871. * Returns 0 on success or error on failure
  4872. */
  4873. int q6asm_enc_cfg_blk_pcm(struct audio_client *ac,
  4874. uint32_t rate, uint32_t channels)
  4875. {
  4876. return __q6asm_enc_cfg_blk_pcm(ac, rate, channels, 16);
  4877. }
  4878. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm);
  4879. int q6asm_enc_cfg_blk_pcm_format_support(struct audio_client *ac,
  4880. uint32_t rate, uint32_t channels, uint16_t bits_per_sample)
  4881. {
  4882. return __q6asm_enc_cfg_blk_pcm(ac, rate, channels, bits_per_sample);
  4883. }
  4884. /*
  4885. * q6asm_enc_cfg_blk_pcm_format_support_v3 - sends encoder configuration
  4886. * parameters
  4887. *
  4888. * @ac: Client session handle
  4889. * @rate: sample rate
  4890. * @channels: number of channels
  4891. * @bits_per_sample: bit width of encoder session
  4892. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4893. */
  4894. int q6asm_enc_cfg_blk_pcm_format_support_v3(struct audio_client *ac,
  4895. uint32_t rate, uint32_t channels,
  4896. uint16_t bits_per_sample,
  4897. uint16_t sample_word_size)
  4898. {
  4899. return __q6asm_enc_cfg_blk_pcm_v3(ac, rate, channels,
  4900. bits_per_sample, sample_word_size);
  4901. }
  4902. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_format_support_v3);
  4903. /*
  4904. * q6asm_enc_cfg_blk_pcm_format_support_v4 - sends encoder configuration
  4905. * parameters
  4906. *
  4907. * @ac: Client session handle
  4908. * @rate: sample rate
  4909. * @channels: number of channels
  4910. * @bits_per_sample: bit width of encoder session
  4911. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4912. * @endianness: endianness of the pcm data
  4913. * @mode: Mode to provide additional info about the pcm input data
  4914. */
  4915. int q6asm_enc_cfg_blk_pcm_format_support_v4(struct audio_client *ac,
  4916. uint32_t rate, uint32_t channels,
  4917. uint16_t bits_per_sample,
  4918. uint16_t sample_word_size,
  4919. uint16_t endianness,
  4920. uint16_t mode)
  4921. {
  4922. return __q6asm_enc_cfg_blk_pcm_v4(ac, rate, channels,
  4923. bits_per_sample, sample_word_size,
  4924. endianness, mode);
  4925. }
  4926. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_format_support_v4);
  4927. /*
  4928. * q6asm_enc_cfg_blk_pcm_format_support_v5 - sends encoder configuration
  4929. * parameters
  4930. *
  4931. * @ac: Client session handle
  4932. * @rate: sample rate
  4933. * @channels: number of channels
  4934. * @bits_per_sample: bit width of encoder session
  4935. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4936. * @endianness: endianness of the pcm data
  4937. * @mode: Mode to provide additional info about the pcm input data
  4938. */
  4939. int q6asm_enc_cfg_blk_pcm_format_support_v5(struct audio_client *ac,
  4940. uint32_t rate, uint32_t channels,
  4941. uint16_t bits_per_sample,
  4942. uint16_t sample_word_size,
  4943. uint16_t endianness,
  4944. uint16_t mode)
  4945. {
  4946. return __q6asm_enc_cfg_blk_pcm_v5(ac, rate, channels,
  4947. bits_per_sample, sample_word_size,
  4948. endianness, mode);
  4949. }
  4950. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_format_support_v5);
  4951. /**
  4952. * q6asm_enc_cfg_blk_pcm_native -
  4953. * command to set encode config block for pcm_native
  4954. *
  4955. * @ac: Audio client handle
  4956. * @rate: sample rate
  4957. * @channels: number of channels
  4958. *
  4959. * Returns 0 on success or error on failure
  4960. */
  4961. int q6asm_enc_cfg_blk_pcm_native(struct audio_client *ac,
  4962. uint32_t rate, uint32_t channels)
  4963. {
  4964. struct asm_multi_channel_pcm_enc_cfg_v2 enc_cfg;
  4965. u8 *channel_mapping;
  4966. u32 frames_per_buf = 0;
  4967. int rc = 0;
  4968. pr_debug("%s: Session %d, rate = %d, channels = %d\n", __func__,
  4969. ac->session, rate, channels);
  4970. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4971. atomic_set(&ac->cmd_state, -1);
  4972. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4973. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4974. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4975. sizeof(enc_cfg.encdec);
  4976. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4977. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4978. sizeof(struct asm_enc_cfg_blk_param_v2);
  4979. enc_cfg.num_channels = 0;/*channels;*/
  4980. enc_cfg.bits_per_sample = 16;
  4981. enc_cfg.sample_rate = 0;/*rate;*/
  4982. enc_cfg.is_signed = 1;
  4983. channel_mapping = enc_cfg.channel_mapping;
  4984. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4985. if (q6asm_map_channels(channel_mapping, channels, false)) {
  4986. pr_err("%s: map channels failed %d\n", __func__, channels);
  4987. return -EINVAL;
  4988. }
  4989. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4990. if (rc < 0) {
  4991. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  4992. rc = -EINVAL;
  4993. goto fail_cmd;
  4994. }
  4995. rc = wait_event_timeout(ac->cmd_wait,
  4996. (atomic_read(&ac->cmd_state) >= 0),
  4997. msecs_to_jiffies(TIMEOUT_MS));
  4998. if (!rc) {
  4999. pr_err("%s: timeout opcode[0x%x]\n",
  5000. __func__, enc_cfg.hdr.opcode);
  5001. rc = -ETIMEDOUT;
  5002. goto fail_cmd;
  5003. }
  5004. if (atomic_read(&ac->cmd_state) > 0) {
  5005. pr_err("%s: DSP returned error[%s]\n",
  5006. __func__, adsp_err_get_err_str(
  5007. atomic_read(&ac->cmd_state)));
  5008. rc = adsp_err_get_lnx_err_code(
  5009. atomic_read(&ac->cmd_state));
  5010. goto fail_cmd;
  5011. }
  5012. return 0;
  5013. fail_cmd:
  5014. return rc;
  5015. }
  5016. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_native);
  5017. /*
  5018. * q6asm_map_channels:
  5019. * Provide default asm channel mapping for given channel count.
  5020. *
  5021. * @channel_mapping: buffer pointer to write back channel maps.
  5022. * @channels: channel count for which channel map is required.
  5023. * @use_back_flavor: use back channels instead of surround channels.
  5024. * Returns 0 for success, -EINVAL for unsupported channel count.
  5025. */
  5026. int q6asm_map_channels(u8 *channel_mapping, uint32_t channels,
  5027. bool use_back_flavor)
  5028. {
  5029. u8 *lchannel_mapping;
  5030. lchannel_mapping = channel_mapping;
  5031. pr_debug("%s: channels passed: %d\n", __func__, channels);
  5032. if (channels == 1) {
  5033. lchannel_mapping[0] = PCM_CHANNEL_FC;
  5034. } else if (channels == 2) {
  5035. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5036. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5037. } else if (channels == 3) {
  5038. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5039. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5040. lchannel_mapping[2] = PCM_CHANNEL_FC;
  5041. } else if (channels == 4) {
  5042. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5043. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5044. lchannel_mapping[2] = use_back_flavor ?
  5045. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  5046. lchannel_mapping[3] = use_back_flavor ?
  5047. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  5048. } else if (channels == 5) {
  5049. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5050. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5051. lchannel_mapping[2] = PCM_CHANNEL_FC;
  5052. lchannel_mapping[3] = use_back_flavor ?
  5053. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  5054. lchannel_mapping[4] = use_back_flavor ?
  5055. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  5056. } else if (channels == 6) {
  5057. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5058. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5059. lchannel_mapping[2] = PCM_CHANNEL_FC;
  5060. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  5061. lchannel_mapping[4] = use_back_flavor ?
  5062. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  5063. lchannel_mapping[5] = use_back_flavor ?
  5064. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  5065. } else if (channels == 7) {
  5066. /*
  5067. * Configured for 5.1 channel mapping + 1 channel for debug
  5068. * Can be customized based on DSP.
  5069. */
  5070. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5071. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5072. lchannel_mapping[2] = PCM_CHANNEL_FC;
  5073. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  5074. lchannel_mapping[4] = use_back_flavor ?
  5075. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  5076. lchannel_mapping[5] = use_back_flavor ?
  5077. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  5078. lchannel_mapping[6] = PCM_CHANNEL_CS;
  5079. } else if (channels == 8) {
  5080. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5081. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5082. lchannel_mapping[2] = PCM_CHANNEL_FC;
  5083. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  5084. lchannel_mapping[4] = PCM_CHANNEL_LB;
  5085. lchannel_mapping[5] = PCM_CHANNEL_RB;
  5086. lchannel_mapping[6] = PCM_CHANNEL_LS;
  5087. lchannel_mapping[7] = PCM_CHANNEL_RS;
  5088. } else if (channels == 12) {
  5089. /*
  5090. * Configured for 7.1.4 channel mapping
  5091. * Todo: Needs to be checked
  5092. */
  5093. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5094. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5095. lchannel_mapping[2] = PCM_CHANNEL_FC;
  5096. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  5097. lchannel_mapping[4] = PCM_CHANNEL_LB;
  5098. lchannel_mapping[5] = PCM_CHANNEL_RB;
  5099. lchannel_mapping[6] = PCM_CHANNEL_LS;
  5100. lchannel_mapping[7] = PCM_CHANNEL_RS;
  5101. lchannel_mapping[8] = PCM_CHANNEL_TFL;
  5102. lchannel_mapping[9] = PCM_CHANNEL_TFR;
  5103. lchannel_mapping[10] = PCM_CHANNEL_TSL;
  5104. lchannel_mapping[11] = PCM_CHANNEL_TSR;
  5105. } else if (channels == 16) {
  5106. /*
  5107. * Configured for 7.1.8 channel mapping
  5108. * Todo: Needs to be checked
  5109. */
  5110. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5111. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5112. lchannel_mapping[2] = PCM_CHANNEL_FC;
  5113. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  5114. lchannel_mapping[4] = PCM_CHANNEL_LB;
  5115. lchannel_mapping[5] = PCM_CHANNEL_RB;
  5116. lchannel_mapping[6] = PCM_CHANNEL_LS;
  5117. lchannel_mapping[7] = PCM_CHANNEL_RS;
  5118. lchannel_mapping[8] = PCM_CHANNEL_TFL;
  5119. lchannel_mapping[9] = PCM_CHANNEL_TFR;
  5120. lchannel_mapping[10] = PCM_CHANNEL_TSL;
  5121. lchannel_mapping[11] = PCM_CHANNEL_TSR;
  5122. lchannel_mapping[12] = PCM_CHANNEL_FLC;
  5123. lchannel_mapping[13] = PCM_CHANNEL_FRC;
  5124. lchannel_mapping[14] = PCM_CHANNEL_RLC;
  5125. lchannel_mapping[15] = PCM_CHANNEL_RRC;
  5126. } else {
  5127. pr_err("%s: ERROR.unsupported num_ch = %u\n",
  5128. __func__, channels);
  5129. return -EINVAL;
  5130. }
  5131. return 0;
  5132. }
  5133. EXPORT_SYMBOL(q6asm_map_channels);
  5134. /**
  5135. * q6asm_enable_sbrps -
  5136. * command to enable sbrps for ASM
  5137. *
  5138. * @ac: Audio client handle
  5139. * @sbr_ps_enable: flag for sbr_ps enable or disable
  5140. *
  5141. * Returns 0 on success or error on failure
  5142. */
  5143. int q6asm_enable_sbrps(struct audio_client *ac,
  5144. uint32_t sbr_ps_enable)
  5145. {
  5146. struct asm_aac_sbr_ps_flag_param sbrps;
  5147. u32 frames_per_buf = 0;
  5148. int rc = 0;
  5149. pr_debug("%s: Session %d\n", __func__, ac->session);
  5150. q6asm_add_hdr(ac, &sbrps.hdr, sizeof(sbrps), TRUE);
  5151. atomic_set(&ac->cmd_state, -1);
  5152. sbrps.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5153. sbrps.encdec.param_id = ASM_PARAM_ID_AAC_SBR_PS_FLAG;
  5154. sbrps.encdec.param_size = sizeof(struct asm_aac_sbr_ps_flag_param) -
  5155. sizeof(struct asm_stream_cmd_set_encdec_param);
  5156. sbrps.encblk.frames_per_buf = frames_per_buf;
  5157. sbrps.encblk.enc_cfg_blk_size = sbrps.encdec.param_size -
  5158. sizeof(struct asm_enc_cfg_blk_param_v2);
  5159. sbrps.sbr_ps_flag = sbr_ps_enable;
  5160. rc = apr_send_pkt(ac->apr, (uint32_t *) &sbrps);
  5161. if (rc < 0) {
  5162. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  5163. __func__,
  5164. ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  5165. ASM_PARAM_ID_AAC_SBR_PS_FLAG, rc);
  5166. rc = -EINVAL;
  5167. goto fail_cmd;
  5168. }
  5169. rc = wait_event_timeout(ac->cmd_wait,
  5170. (atomic_read(&ac->cmd_state) >= 0),
  5171. msecs_to_jiffies(TIMEOUT_MS));
  5172. if (!rc) {
  5173. pr_err("%s: timeout opcode[0x%x] ", __func__, sbrps.hdr.opcode);
  5174. rc = -ETIMEDOUT;
  5175. goto fail_cmd;
  5176. }
  5177. if (atomic_read(&ac->cmd_state) > 0) {
  5178. pr_err("%s: DSP returned error[%s]\n",
  5179. __func__, adsp_err_get_err_str(
  5180. atomic_read(&ac->cmd_state)));
  5181. rc = adsp_err_get_lnx_err_code(
  5182. atomic_read(&ac->cmd_state));
  5183. goto fail_cmd;
  5184. }
  5185. return 0;
  5186. fail_cmd:
  5187. return rc;
  5188. }
  5189. EXPORT_SYMBOL(q6asm_enable_sbrps);
  5190. /**
  5191. * q6asm_cfg_dual_mono_aac -
  5192. * command to set config for dual mono aac
  5193. *
  5194. * @ac: Audio client handle
  5195. * @sce_left: left sce val
  5196. * @sce_right: right sce val
  5197. *
  5198. * Returns 0 on success or error on failure
  5199. */
  5200. int q6asm_cfg_dual_mono_aac(struct audio_client *ac,
  5201. uint16_t sce_left, uint16_t sce_right)
  5202. {
  5203. struct asm_aac_dual_mono_mapping_param dual_mono;
  5204. int rc = 0;
  5205. pr_debug("%s: Session %d, sce_left = %d, sce_right = %d\n",
  5206. __func__, ac->session, sce_left, sce_right);
  5207. q6asm_add_hdr(ac, &dual_mono.hdr, sizeof(dual_mono), TRUE);
  5208. atomic_set(&ac->cmd_state, -1);
  5209. dual_mono.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5210. dual_mono.encdec.param_id = ASM_PARAM_ID_AAC_DUAL_MONO_MAPPING;
  5211. dual_mono.encdec.param_size = sizeof(dual_mono.left_channel_sce) +
  5212. sizeof(dual_mono.right_channel_sce);
  5213. dual_mono.left_channel_sce = sce_left;
  5214. dual_mono.right_channel_sce = sce_right;
  5215. rc = apr_send_pkt(ac->apr, (uint32_t *) &dual_mono);
  5216. if (rc < 0) {
  5217. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  5218. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  5219. ASM_PARAM_ID_AAC_DUAL_MONO_MAPPING, rc);
  5220. rc = -EINVAL;
  5221. goto fail_cmd;
  5222. }
  5223. rc = wait_event_timeout(ac->cmd_wait,
  5224. (atomic_read(&ac->cmd_state) >= 0),
  5225. msecs_to_jiffies(TIMEOUT_MS));
  5226. if (!rc) {
  5227. pr_err("%s: timeout opcode[0x%x]\n", __func__,
  5228. dual_mono.hdr.opcode);
  5229. rc = -ETIMEDOUT;
  5230. goto fail_cmd;
  5231. }
  5232. if (atomic_read(&ac->cmd_state) > 0) {
  5233. pr_err("%s: DSP returned error[%s]\n",
  5234. __func__, adsp_err_get_err_str(
  5235. atomic_read(&ac->cmd_state)));
  5236. rc = adsp_err_get_lnx_err_code(
  5237. atomic_read(&ac->cmd_state));
  5238. goto fail_cmd;
  5239. }
  5240. return 0;
  5241. fail_cmd:
  5242. return rc;
  5243. }
  5244. EXPORT_SYMBOL(q6asm_cfg_dual_mono_aac);
  5245. /* Support for selecting stereo mixing coefficients for B family not done */
  5246. int q6asm_cfg_aac_sel_mix_coef(struct audio_client *ac, uint32_t mix_coeff)
  5247. {
  5248. struct asm_aac_stereo_mix_coeff_selection_param_v2 aac_mix_coeff;
  5249. int rc = 0;
  5250. q6asm_add_hdr(ac, &aac_mix_coeff.hdr, sizeof(aac_mix_coeff), TRUE);
  5251. atomic_set(&ac->cmd_state, -1);
  5252. aac_mix_coeff.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5253. aac_mix_coeff.param_id =
  5254. ASM_PARAM_ID_AAC_STEREO_MIX_COEFF_SELECTION_FLAG_V2;
  5255. aac_mix_coeff.param_size =
  5256. sizeof(struct asm_aac_stereo_mix_coeff_selection_param_v2);
  5257. aac_mix_coeff.aac_stereo_mix_coeff_flag = mix_coeff;
  5258. pr_debug("%s: mix_coeff = %u\n", __func__, mix_coeff);
  5259. rc = apr_send_pkt(ac->apr, (uint32_t *) &aac_mix_coeff);
  5260. if (rc < 0) {
  5261. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  5262. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  5263. ASM_PARAM_ID_AAC_STEREO_MIX_COEFF_SELECTION_FLAG_V2,
  5264. rc);
  5265. rc = -EINVAL;
  5266. goto fail_cmd;
  5267. }
  5268. rc = wait_event_timeout(ac->cmd_wait,
  5269. (atomic_read(&ac->cmd_state) >= 0),
  5270. msecs_to_jiffies(TIMEOUT_MS));
  5271. if (!rc) {
  5272. pr_err("%s: timeout opcode[0x%x]\n",
  5273. __func__, aac_mix_coeff.hdr.opcode);
  5274. rc = -ETIMEDOUT;
  5275. goto fail_cmd;
  5276. }
  5277. if (atomic_read(&ac->cmd_state) > 0) {
  5278. pr_err("%s: DSP returned error[%s]\n",
  5279. __func__, adsp_err_get_err_str(
  5280. atomic_read(&ac->cmd_state)));
  5281. rc = adsp_err_get_lnx_err_code(
  5282. atomic_read(&ac->cmd_state));
  5283. goto fail_cmd;
  5284. }
  5285. return 0;
  5286. fail_cmd:
  5287. return rc;
  5288. }
  5289. EXPORT_SYMBOL(q6asm_cfg_aac_sel_mix_coef);
  5290. /**
  5291. * q6asm_enc_cfg_blk_qcelp -
  5292. * command to set encode config block for QCELP
  5293. *
  5294. * @ac: Audio client handle
  5295. * @frames_per_buf: Number of frames per buffer
  5296. * @min_rate: Minimum Enc rate
  5297. * @max_rate: Maximum Enc rate
  5298. * reduced_rate_level: Reduced rate level
  5299. * @rate_modulation_cmd: rate modulation command
  5300. *
  5301. * Returns 0 on success or error on failure
  5302. */
  5303. int q6asm_enc_cfg_blk_qcelp(struct audio_client *ac, uint32_t frames_per_buf,
  5304. uint16_t min_rate, uint16_t max_rate,
  5305. uint16_t reduced_rate_level, uint16_t rate_modulation_cmd)
  5306. {
  5307. struct asm_v13k_enc_cfg enc_cfg;
  5308. int rc = 0;
  5309. pr_debug("%s: session[%d]frames[%d]min_rate[0x%4x]max_rate[0x%4x] reduced_rate_level[0x%4x]rate_modulation_cmd[0x%4x]\n",
  5310. __func__,
  5311. ac->session, frames_per_buf, min_rate, max_rate,
  5312. reduced_rate_level, rate_modulation_cmd);
  5313. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5314. atomic_set(&ac->cmd_state, -1);
  5315. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5316. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5317. enc_cfg.encdec.param_size = sizeof(struct asm_v13k_enc_cfg) -
  5318. sizeof(struct asm_stream_cmd_set_encdec_param);
  5319. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5320. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5321. sizeof(struct asm_enc_cfg_blk_param_v2);
  5322. enc_cfg.min_rate = min_rate;
  5323. enc_cfg.max_rate = max_rate;
  5324. enc_cfg.reduced_rate_cmd = reduced_rate_level;
  5325. enc_cfg.rate_mod_cmd = rate_modulation_cmd;
  5326. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5327. if (rc < 0) {
  5328. pr_err("%s: Comamnd %d failed %d\n",
  5329. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5330. rc = -EINVAL;
  5331. goto fail_cmd;
  5332. }
  5333. rc = wait_event_timeout(ac->cmd_wait,
  5334. (atomic_read(&ac->cmd_state) >= 0),
  5335. msecs_to_jiffies(TIMEOUT_MS));
  5336. if (!rc) {
  5337. pr_err("%s: timeout. waited for setencdec v13k resp\n",
  5338. __func__);
  5339. rc = -ETIMEDOUT;
  5340. goto fail_cmd;
  5341. }
  5342. if (atomic_read(&ac->cmd_state) > 0) {
  5343. pr_err("%s: DSP returned error[%s]\n",
  5344. __func__, adsp_err_get_err_str(
  5345. atomic_read(&ac->cmd_state)));
  5346. rc = adsp_err_get_lnx_err_code(
  5347. atomic_read(&ac->cmd_state));
  5348. goto fail_cmd;
  5349. }
  5350. return 0;
  5351. fail_cmd:
  5352. return rc;
  5353. }
  5354. EXPORT_SYMBOL(q6asm_enc_cfg_blk_qcelp);
  5355. /**
  5356. * q6asm_enc_cfg_blk_evrc -
  5357. * command to set encode config block for EVRC
  5358. *
  5359. * @ac: Audio client handle
  5360. * @frames_per_buf: Number of frames per buffer
  5361. * @min_rate: Minimum Enc rate
  5362. * @max_rate: Maximum Enc rate
  5363. * @rate_modulation_cmd: rate modulation command
  5364. *
  5365. * Returns 0 on success or error on failure
  5366. */
  5367. int q6asm_enc_cfg_blk_evrc(struct audio_client *ac, uint32_t frames_per_buf,
  5368. uint16_t min_rate, uint16_t max_rate,
  5369. uint16_t rate_modulation_cmd)
  5370. {
  5371. struct asm_evrc_enc_cfg enc_cfg;
  5372. int rc = 0;
  5373. pr_debug("%s: session[%d]frames[%d]min_rate[0x%4x]max_rate[0x%4x] rate_modulation_cmd[0x%4x]\n",
  5374. __func__, ac->session,
  5375. frames_per_buf, min_rate, max_rate, rate_modulation_cmd);
  5376. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5377. atomic_set(&ac->cmd_state, -1);
  5378. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5379. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5380. enc_cfg.encdec.param_size = sizeof(struct asm_evrc_enc_cfg) -
  5381. sizeof(struct asm_stream_cmd_set_encdec_param);
  5382. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5383. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5384. sizeof(struct asm_enc_cfg_blk_param_v2);
  5385. enc_cfg.min_rate = min_rate;
  5386. enc_cfg.max_rate = max_rate;
  5387. enc_cfg.rate_mod_cmd = rate_modulation_cmd;
  5388. enc_cfg.reserved = 0;
  5389. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5390. if (rc < 0) {
  5391. pr_err("%s: Comamnd %d failed %d\n",
  5392. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5393. rc = -EINVAL;
  5394. goto fail_cmd;
  5395. }
  5396. rc = wait_event_timeout(ac->cmd_wait,
  5397. (atomic_read(&ac->cmd_state) >= 0),
  5398. msecs_to_jiffies(TIMEOUT_MS));
  5399. if (!rc) {
  5400. pr_err("%s: timeout. waited for encdec evrc\n", __func__);
  5401. rc = -ETIMEDOUT;
  5402. goto fail_cmd;
  5403. }
  5404. if (atomic_read(&ac->cmd_state) > 0) {
  5405. pr_err("%s: DSP returned error[%s]\n",
  5406. __func__, adsp_err_get_err_str(
  5407. atomic_read(&ac->cmd_state)));
  5408. rc = adsp_err_get_lnx_err_code(
  5409. atomic_read(&ac->cmd_state));
  5410. goto fail_cmd;
  5411. }
  5412. return 0;
  5413. fail_cmd:
  5414. return rc;
  5415. }
  5416. EXPORT_SYMBOL(q6asm_enc_cfg_blk_evrc);
  5417. /**
  5418. * q6asm_enc_cfg_blk_amrnb -
  5419. * command to set encode config block for AMRNB
  5420. *
  5421. * @ac: Audio client handle
  5422. * @frames_per_buf: Number of frames per buffer
  5423. * @band_mode: Band mode used
  5424. * @dtx_enable: DTX en flag
  5425. *
  5426. * Returns 0 on success or error on failure
  5427. */
  5428. int q6asm_enc_cfg_blk_amrnb(struct audio_client *ac, uint32_t frames_per_buf,
  5429. uint16_t band_mode, uint16_t dtx_enable)
  5430. {
  5431. struct asm_amrnb_enc_cfg enc_cfg;
  5432. int rc = 0;
  5433. pr_debug("%s: session[%d]frames[%d]band_mode[0x%4x]dtx_enable[0x%4x]\n",
  5434. __func__, ac->session, frames_per_buf, band_mode, dtx_enable);
  5435. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5436. atomic_set(&ac->cmd_state, -1);
  5437. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5438. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5439. enc_cfg.encdec.param_size = sizeof(struct asm_amrnb_enc_cfg) -
  5440. sizeof(struct asm_stream_cmd_set_encdec_param);
  5441. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5442. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5443. sizeof(struct asm_enc_cfg_blk_param_v2);
  5444. enc_cfg.enc_mode = band_mode;
  5445. enc_cfg.dtx_mode = dtx_enable;
  5446. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5447. if (rc < 0) {
  5448. pr_err("%s: Comamnd %d failed %d\n",
  5449. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5450. rc = -EINVAL;
  5451. goto fail_cmd;
  5452. }
  5453. rc = wait_event_timeout(ac->cmd_wait,
  5454. (atomic_read(&ac->cmd_state) >= 0),
  5455. msecs_to_jiffies(TIMEOUT_MS));
  5456. if (!rc) {
  5457. pr_err("%s: timeout. waited for set encdec amrnb\n", __func__);
  5458. rc = -ETIMEDOUT;
  5459. goto fail_cmd;
  5460. }
  5461. if (atomic_read(&ac->cmd_state) > 0) {
  5462. pr_err("%s: DSP returned error[%s]\n",
  5463. __func__, adsp_err_get_err_str(
  5464. atomic_read(&ac->cmd_state)));
  5465. rc = adsp_err_get_lnx_err_code(
  5466. atomic_read(&ac->cmd_state));
  5467. goto fail_cmd;
  5468. }
  5469. return 0;
  5470. fail_cmd:
  5471. return rc;
  5472. }
  5473. EXPORT_SYMBOL(q6asm_enc_cfg_blk_amrnb);
  5474. /**
  5475. * q6asm_enc_cfg_blk_amrwb -
  5476. * command to set encode config block for AMRWB
  5477. *
  5478. * @ac: Audio client handle
  5479. * @frames_per_buf: Number of frames per buffer
  5480. * @band_mode: Band mode used
  5481. * @dtx_enable: DTX en flag
  5482. *
  5483. * Returns 0 on success or error on failure
  5484. */
  5485. int q6asm_enc_cfg_blk_amrwb(struct audio_client *ac, uint32_t frames_per_buf,
  5486. uint16_t band_mode, uint16_t dtx_enable)
  5487. {
  5488. struct asm_amrwb_enc_cfg enc_cfg;
  5489. int rc = 0;
  5490. pr_debug("%s: session[%d]frames[%d]band_mode[0x%4x]dtx_enable[0x%4x]\n",
  5491. __func__, ac->session, frames_per_buf, band_mode, dtx_enable);
  5492. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5493. atomic_set(&ac->cmd_state, -1);
  5494. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5495. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5496. enc_cfg.encdec.param_size = sizeof(struct asm_amrwb_enc_cfg) -
  5497. sizeof(struct asm_stream_cmd_set_encdec_param);
  5498. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5499. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5500. sizeof(struct asm_enc_cfg_blk_param_v2);
  5501. enc_cfg.enc_mode = band_mode;
  5502. enc_cfg.dtx_mode = dtx_enable;
  5503. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5504. if (rc < 0) {
  5505. pr_err("%s: Comamnd %d failed %d\n",
  5506. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5507. rc = -EINVAL;
  5508. goto fail_cmd;
  5509. }
  5510. rc = wait_event_timeout(ac->cmd_wait,
  5511. (atomic_read(&ac->cmd_state) >= 0),
  5512. msecs_to_jiffies(TIMEOUT_MS));
  5513. if (!rc) {
  5514. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  5515. rc = -ETIMEDOUT;
  5516. goto fail_cmd;
  5517. }
  5518. if (atomic_read(&ac->cmd_state) > 0) {
  5519. pr_err("%s: DSP returned error[%s]\n",
  5520. __func__, adsp_err_get_err_str(
  5521. atomic_read(&ac->cmd_state)));
  5522. rc = adsp_err_get_lnx_err_code(
  5523. atomic_read(&ac->cmd_state));
  5524. goto fail_cmd;
  5525. }
  5526. return 0;
  5527. fail_cmd:
  5528. return rc;
  5529. }
  5530. EXPORT_SYMBOL(q6asm_enc_cfg_blk_amrwb);
  5531. static int __q6asm_media_format_block_pcm(struct audio_client *ac,
  5532. uint32_t rate, uint32_t channels,
  5533. uint16_t bits_per_sample, int stream_id,
  5534. bool use_default_chmap, char *channel_map)
  5535. {
  5536. struct asm_multi_channel_pcm_fmt_blk_v2 fmt;
  5537. u8 *channel_mapping;
  5538. int rc = 0;
  5539. pr_debug("%s: session[%d]rate[%d]ch[%d]\n", __func__, ac->session, rate,
  5540. channels);
  5541. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5542. atomic_set(&ac->cmd_state, -1);
  5543. /*
  5544. * Updated the token field with stream/session for compressed playback
  5545. * Platform driver must know the the stream with which the command is
  5546. * associated
  5547. */
  5548. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5549. q6asm_update_token(&fmt.hdr.token,
  5550. ac->session,
  5551. stream_id,
  5552. 0, /* Buffer index is NA */
  5553. 0, /* Direction flag is NA */
  5554. WAIT_CMD);
  5555. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  5556. __func__, fmt.hdr.token, stream_id, ac->session);
  5557. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5558. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5559. sizeof(fmt.fmt_blk);
  5560. fmt.num_channels = channels;
  5561. fmt.bits_per_sample = bits_per_sample;
  5562. fmt.sample_rate = rate;
  5563. fmt.is_signed = 1;
  5564. channel_mapping = fmt.channel_mapping;
  5565. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5566. if (use_default_chmap) {
  5567. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5568. pr_err("%s: map channels failed %d\n",
  5569. __func__, channels);
  5570. return -EINVAL;
  5571. }
  5572. } else {
  5573. memcpy(channel_mapping, channel_map,
  5574. PCM_FORMAT_MAX_NUM_CHANNEL);
  5575. }
  5576. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5577. if (rc < 0) {
  5578. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5579. rc = -EINVAL;
  5580. goto fail_cmd;
  5581. }
  5582. rc = wait_event_timeout(ac->cmd_wait,
  5583. (atomic_read(&ac->cmd_state) >= 0),
  5584. msecs_to_jiffies(TIMEOUT_MS));
  5585. if (!rc) {
  5586. pr_err("%s: timeout. waited for format update\n", __func__);
  5587. rc = -ETIMEDOUT;
  5588. goto fail_cmd;
  5589. }
  5590. if (atomic_read(&ac->cmd_state) > 0) {
  5591. pr_err("%s: DSP returned error[%s]\n",
  5592. __func__, adsp_err_get_err_str(
  5593. atomic_read(&ac->cmd_state)));
  5594. rc = adsp_err_get_lnx_err_code(
  5595. atomic_read(&ac->cmd_state));
  5596. goto fail_cmd;
  5597. }
  5598. return 0;
  5599. fail_cmd:
  5600. return rc;
  5601. }
  5602. static int __q6asm_media_format_block_pcm_v3(struct audio_client *ac,
  5603. uint32_t rate, uint32_t channels,
  5604. uint16_t bits_per_sample,
  5605. int stream_id,
  5606. bool use_default_chmap,
  5607. char *channel_map,
  5608. uint16_t sample_word_size)
  5609. {
  5610. struct asm_multi_channel_pcm_fmt_blk_param_v3 fmt;
  5611. u8 *channel_mapping;
  5612. int rc;
  5613. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  5614. ac->session, rate, channels,
  5615. bits_per_sample, sample_word_size);
  5616. memset(&fmt, 0, sizeof(fmt));
  5617. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5618. atomic_set(&ac->cmd_state, -1);
  5619. /*
  5620. * Updated the token field with stream/session for compressed playback
  5621. * Platform driver must know the the stream with which the command is
  5622. * associated
  5623. */
  5624. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5625. fmt.hdr.token = ((ac->session << 8) & 0xFFFF00) |
  5626. (stream_id & 0xFF);
  5627. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  5628. __func__, fmt.hdr.token, stream_id, ac->session);
  5629. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5630. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5631. sizeof(fmt.fmt_blk);
  5632. fmt.param.num_channels = channels;
  5633. fmt.param.bits_per_sample = bits_per_sample;
  5634. fmt.param.sample_rate = rate;
  5635. fmt.param.is_signed = 1;
  5636. fmt.param.sample_word_size = sample_word_size;
  5637. channel_mapping = fmt.param.channel_mapping;
  5638. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5639. if (use_default_chmap) {
  5640. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5641. pr_err("%s: map channels failed %d\n",
  5642. __func__, channels);
  5643. rc = -EINVAL;
  5644. goto fail_cmd;
  5645. }
  5646. } else {
  5647. memcpy(channel_mapping, channel_map,
  5648. PCM_FORMAT_MAX_NUM_CHANNEL);
  5649. }
  5650. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5651. if (rc < 0) {
  5652. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5653. rc = -EINVAL;
  5654. goto fail_cmd;
  5655. }
  5656. rc = wait_event_timeout(ac->cmd_wait,
  5657. (atomic_read(&ac->cmd_state) >= 0),
  5658. msecs_to_jiffies(TIMEOUT_MS));
  5659. if (!rc) {
  5660. pr_err("%s: timeout. waited for format update\n", __func__);
  5661. rc = -ETIMEDOUT;
  5662. goto fail_cmd;
  5663. }
  5664. if (atomic_read(&ac->cmd_state) > 0) {
  5665. pr_err("%s: DSP returned error[%s]\n",
  5666. __func__, adsp_err_get_err_str(
  5667. atomic_read(&ac->cmd_state)));
  5668. rc = adsp_err_get_lnx_err_code(
  5669. atomic_read(&ac->cmd_state));
  5670. goto fail_cmd;
  5671. }
  5672. return 0;
  5673. fail_cmd:
  5674. return rc;
  5675. }
  5676. static int __q6asm_media_format_block_pcm_v4(struct audio_client *ac,
  5677. uint32_t rate, uint32_t channels,
  5678. uint16_t bits_per_sample,
  5679. int stream_id,
  5680. bool use_default_chmap,
  5681. char *channel_map,
  5682. uint16_t sample_word_size,
  5683. uint16_t endianness,
  5684. uint16_t mode)
  5685. {
  5686. struct asm_multi_channel_pcm_fmt_blk_param_v4 fmt;
  5687. u8 *channel_mapping;
  5688. int rc;
  5689. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  5690. ac->session, rate, channels,
  5691. bits_per_sample, sample_word_size);
  5692. memset(&fmt, 0, sizeof(fmt));
  5693. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5694. atomic_set(&ac->cmd_state, -1);
  5695. /*
  5696. * Updated the token field with stream/session for compressed playback
  5697. * Platform driver must know the the stream with which the command is
  5698. * associated
  5699. */
  5700. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5701. fmt.hdr.token = ((ac->session << 8) & 0xFFFF00) |
  5702. (stream_id & 0xFF);
  5703. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  5704. __func__, fmt.hdr.token, stream_id, ac->session);
  5705. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5706. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5707. sizeof(fmt.fmt_blk);
  5708. fmt.param.num_channels = channels;
  5709. fmt.param.bits_per_sample = bits_per_sample;
  5710. fmt.param.sample_rate = rate;
  5711. fmt.param.is_signed = 1;
  5712. fmt.param.sample_word_size = sample_word_size;
  5713. fmt.param.endianness = endianness;
  5714. fmt.param.mode = mode;
  5715. channel_mapping = fmt.param.channel_mapping;
  5716. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5717. if (use_default_chmap) {
  5718. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5719. pr_err("%s: map channels failed %d\n",
  5720. __func__, channels);
  5721. rc = -EINVAL;
  5722. goto fail_cmd;
  5723. }
  5724. } else {
  5725. memcpy(channel_mapping, channel_map,
  5726. PCM_FORMAT_MAX_NUM_CHANNEL);
  5727. }
  5728. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5729. if (rc < 0) {
  5730. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5731. rc = -EINVAL;
  5732. goto fail_cmd;
  5733. }
  5734. rc = wait_event_timeout(ac->cmd_wait,
  5735. (atomic_read(&ac->cmd_state) >= 0),
  5736. msecs_to_jiffies(TIMEOUT_MS));
  5737. if (!rc) {
  5738. pr_err("%s: timeout. waited for format update\n", __func__);
  5739. rc = -ETIMEDOUT;
  5740. goto fail_cmd;
  5741. }
  5742. if (atomic_read(&ac->cmd_state) > 0) {
  5743. pr_err("%s: DSP returned error[%s]\n",
  5744. __func__, adsp_err_get_err_str(
  5745. atomic_read(&ac->cmd_state)));
  5746. rc = adsp_err_get_lnx_err_code(
  5747. atomic_read(&ac->cmd_state));
  5748. goto fail_cmd;
  5749. }
  5750. return 0;
  5751. fail_cmd:
  5752. return rc;
  5753. }
  5754. static int __q6asm_media_format_block_pcm_v5(struct audio_client *ac,
  5755. uint32_t rate, uint32_t channels,
  5756. uint16_t bits_per_sample,
  5757. int stream_id,
  5758. bool use_default_chmap,
  5759. char *channel_map,
  5760. uint16_t sample_word_size,
  5761. uint16_t endianness,
  5762. uint16_t mode)
  5763. {
  5764. struct asm_multi_channel_pcm_fmt_blk_param_v5 fmt;
  5765. u8 *channel_mapping;
  5766. int rc;
  5767. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  5768. ac->session, rate, channels,
  5769. bits_per_sample, sample_word_size);
  5770. memset(&fmt, 0, sizeof(fmt));
  5771. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5772. atomic_set(&ac->cmd_state, -1);
  5773. /*
  5774. * Updated the token field with stream/session for compressed playback
  5775. * Platform driver must know the the stream with which the command is
  5776. * associated
  5777. */
  5778. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5779. fmt.hdr.token = ((ac->session << 8) & 0xFFFF00) |
  5780. (stream_id & 0xFF);
  5781. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  5782. __func__, fmt.hdr.token, stream_id, ac->session);
  5783. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5784. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5785. sizeof(fmt.fmt_blk);
  5786. fmt.param.num_channels = (uint16_t) channels & 0xFFFF;
  5787. fmt.param.bits_per_sample = bits_per_sample;
  5788. fmt.param.sample_rate = rate;
  5789. fmt.param.is_signed = 1;
  5790. fmt.param.sample_word_size = sample_word_size;
  5791. fmt.param.endianness = endianness;
  5792. fmt.param.mode = mode;
  5793. channel_mapping = fmt.param.channel_mapping;
  5794. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  5795. if (use_default_chmap) {
  5796. if (q6asm_map_channels(channel_mapping, fmt.param.num_channels, false)) {
  5797. pr_err("%s: map channels failed %d\n",
  5798. __func__, channels);
  5799. rc = -EINVAL;
  5800. goto fail_cmd;
  5801. }
  5802. } else {
  5803. memcpy(channel_mapping, channel_map,
  5804. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  5805. }
  5806. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5807. if (rc < 0) {
  5808. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5809. rc = -EINVAL;
  5810. goto fail_cmd;
  5811. }
  5812. rc = wait_event_timeout(ac->cmd_wait,
  5813. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5814. if (!rc) {
  5815. pr_err("%s: timeout. waited for format update\n", __func__);
  5816. rc = -ETIMEDOUT;
  5817. goto fail_cmd;
  5818. }
  5819. if (atomic_read(&ac->cmd_state) > 0) {
  5820. pr_err("%s: DSP returned error[%s]\n",
  5821. __func__, adsp_err_get_err_str(
  5822. atomic_read(&ac->cmd_state)));
  5823. rc = adsp_err_get_lnx_err_code(
  5824. atomic_read(&ac->cmd_state));
  5825. goto fail_cmd;
  5826. }
  5827. return 0;
  5828. fail_cmd:
  5829. return rc;
  5830. }
  5831. /**
  5832. * q6asm_media_format_block_pcm -
  5833. * command to set mediafmt block for PCM on ASM stream
  5834. *
  5835. * @ac: Audio client handle
  5836. * @rate: sample rate
  5837. * @channels: number of ASM channels
  5838. *
  5839. * Returns 0 on success or error on failure
  5840. */
  5841. int q6asm_media_format_block_pcm(struct audio_client *ac,
  5842. uint32_t rate, uint32_t channels)
  5843. {
  5844. return __q6asm_media_format_block_pcm(ac, rate,
  5845. channels, 16, ac->stream_id,
  5846. true, NULL);
  5847. }
  5848. EXPORT_SYMBOL(q6asm_media_format_block_pcm);
  5849. /**
  5850. * q6asm_media_format_block_pcm_format_support -
  5851. * command to set mediafmt block for PCM format support
  5852. *
  5853. * @ac: Audio client handle
  5854. * @rate: sample rate
  5855. * @channels: number of ASM channels
  5856. * @bits_per_sample: number of bits per sample
  5857. *
  5858. * Returns 0 on success or error on failure
  5859. */
  5860. int q6asm_media_format_block_pcm_format_support(struct audio_client *ac,
  5861. uint32_t rate, uint32_t channels,
  5862. uint16_t bits_per_sample)
  5863. {
  5864. return __q6asm_media_format_block_pcm(ac, rate,
  5865. channels, bits_per_sample, ac->stream_id,
  5866. true, NULL);
  5867. }
  5868. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support);
  5869. int q6asm_media_format_block_pcm_format_support_v2(struct audio_client *ac,
  5870. uint32_t rate, uint32_t channels,
  5871. uint16_t bits_per_sample, int stream_id,
  5872. bool use_default_chmap, char *channel_map)
  5873. {
  5874. if (!use_default_chmap && (channel_map == NULL)) {
  5875. pr_err("%s: No valid chan map and can't use default\n",
  5876. __func__);
  5877. return -EINVAL;
  5878. }
  5879. return __q6asm_media_format_block_pcm(ac, rate,
  5880. channels, bits_per_sample, stream_id,
  5881. use_default_chmap, channel_map);
  5882. }
  5883. /*
  5884. * q6asm_media_format_block_pcm_format_support_v3- sends pcm decoder
  5885. * configuration parameters
  5886. *
  5887. * @ac: Client session handle
  5888. * @rate: sample rate
  5889. * @channels: number of channels
  5890. * @bits_per_sample: bit width of encoder session
  5891. * @stream_id: stream id of stream to be associated with this session
  5892. * @use_default_chmap: true if default channel map to be used
  5893. * @channel_map: input channel map
  5894. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  5895. */
  5896. int q6asm_media_format_block_pcm_format_support_v3(struct audio_client *ac,
  5897. uint32_t rate,
  5898. uint32_t channels,
  5899. uint16_t bits_per_sample,
  5900. int stream_id,
  5901. bool use_default_chmap,
  5902. char *channel_map,
  5903. uint16_t sample_word_size)
  5904. {
  5905. if (!use_default_chmap && (channel_map == NULL)) {
  5906. pr_err("%s: No valid chan map and can't use default\n",
  5907. __func__);
  5908. return -EINVAL;
  5909. }
  5910. return __q6asm_media_format_block_pcm_v3(ac, rate,
  5911. channels, bits_per_sample, stream_id,
  5912. use_default_chmap, channel_map,
  5913. sample_word_size);
  5914. }
  5915. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support_v3);
  5916. /*
  5917. * q6asm_media_format_block_pcm_format_support_v4- sends pcm decoder
  5918. * configuration parameters
  5919. *
  5920. * @ac: Client session handle
  5921. * @rate: sample rate
  5922. * @channels: number of channels
  5923. * @bits_per_sample: bit width of encoder session
  5924. * @stream_id: stream id of stream to be associated with this session
  5925. * @use_default_chmap: true if default channel map to be used
  5926. * @channel_map: input channel map
  5927. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  5928. * @endianness: endianness of the pcm data
  5929. * @mode: Mode to provide additional info about the pcm input data
  5930. */
  5931. int q6asm_media_format_block_pcm_format_support_v4(struct audio_client *ac,
  5932. uint32_t rate,
  5933. uint32_t channels,
  5934. uint16_t bits_per_sample,
  5935. int stream_id,
  5936. bool use_default_chmap,
  5937. char *channel_map,
  5938. uint16_t sample_word_size,
  5939. uint16_t endianness,
  5940. uint16_t mode)
  5941. {
  5942. if (!use_default_chmap && (channel_map == NULL)) {
  5943. pr_err("%s: No valid chan map and can't use default\n",
  5944. __func__);
  5945. return -EINVAL;
  5946. }
  5947. return __q6asm_media_format_block_pcm_v4(ac, rate,
  5948. channels, bits_per_sample, stream_id,
  5949. use_default_chmap, channel_map,
  5950. sample_word_size, endianness,
  5951. mode);
  5952. }
  5953. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support_v4);
  5954. /*
  5955. * q6asm_media_format_block_pcm_format_support_v5- sends pcm decoder
  5956. * configuration parameters
  5957. *
  5958. * @ac: Client session handle
  5959. * @rate: sample rate
  5960. * @channels: number of channels
  5961. * @bits_per_sample: bit width of encoder session
  5962. * @stream_id: stream id of stream to be associated with this session
  5963. * @use_default_chmap: true if default channel map to be used
  5964. * @channel_map: input channel map
  5965. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  5966. * @endianness: endianness of the pcm data
  5967. * @mode: Mode to provide additional info about the pcm input data
  5968. */
  5969. int q6asm_media_format_block_pcm_format_support_v5(struct audio_client *ac,
  5970. uint32_t rate,
  5971. uint32_t channels,
  5972. uint16_t bits_per_sample,
  5973. int stream_id,
  5974. bool use_default_chmap,
  5975. char *channel_map,
  5976. uint16_t sample_word_size,
  5977. uint16_t endianness,
  5978. uint16_t mode)
  5979. {
  5980. if (!use_default_chmap && (channel_map == NULL)) {
  5981. pr_err("%s: No valid chan map and can't use default\n",
  5982. __func__);
  5983. return -EINVAL;
  5984. }
  5985. return __q6asm_media_format_block_pcm_v5(ac, rate,
  5986. channels, bits_per_sample, stream_id,
  5987. use_default_chmap, channel_map,
  5988. sample_word_size, endianness,
  5989. mode);
  5990. }
  5991. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support_v5);
  5992. static int __q6asm_media_format_block_multi_ch_pcm(struct audio_client *ac,
  5993. uint32_t rate, uint32_t channels,
  5994. bool use_default_chmap, char *channel_map,
  5995. uint16_t bits_per_sample)
  5996. {
  5997. struct asm_multi_channel_pcm_fmt_blk_v2 fmt;
  5998. u8 *channel_mapping;
  5999. int rc = 0;
  6000. pr_debug("%s: session[%d]rate[%d]ch[%d]\n", __func__, ac->session, rate,
  6001. channels);
  6002. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6003. atomic_set(&ac->cmd_state, -1);
  6004. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6005. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6006. sizeof(fmt.fmt_blk);
  6007. fmt.num_channels = channels;
  6008. fmt.bits_per_sample = bits_per_sample;
  6009. fmt.sample_rate = rate;
  6010. fmt.is_signed = 1;
  6011. channel_mapping = fmt.channel_mapping;
  6012. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  6013. if (use_default_chmap) {
  6014. if (q6asm_map_channels(channel_mapping, channels, false)) {
  6015. pr_err("%s: map channels failed %d\n",
  6016. __func__, channels);
  6017. return -EINVAL;
  6018. }
  6019. } else {
  6020. memcpy(channel_mapping, channel_map,
  6021. PCM_FORMAT_MAX_NUM_CHANNEL);
  6022. }
  6023. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6024. if (rc < 0) {
  6025. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6026. rc = -EINVAL;
  6027. goto fail_cmd;
  6028. }
  6029. rc = wait_event_timeout(ac->cmd_wait,
  6030. (atomic_read(&ac->cmd_state) >= 0),
  6031. msecs_to_jiffies(TIMEOUT_MS));
  6032. if (!rc) {
  6033. pr_err("%s: timeout. waited for format update\n", __func__);
  6034. rc = -ETIMEDOUT;
  6035. goto fail_cmd;
  6036. }
  6037. if (atomic_read(&ac->cmd_state) > 0) {
  6038. pr_err("%s: DSP returned error[%s]\n",
  6039. __func__, adsp_err_get_err_str(
  6040. atomic_read(&ac->cmd_state)));
  6041. rc = adsp_err_get_lnx_err_code(
  6042. atomic_read(&ac->cmd_state));
  6043. goto fail_cmd;
  6044. }
  6045. return 0;
  6046. fail_cmd:
  6047. return rc;
  6048. }
  6049. static int __q6asm_media_format_block_multi_ch_pcm_v3(struct audio_client *ac,
  6050. uint32_t rate,
  6051. uint32_t channels,
  6052. bool use_default_chmap,
  6053. char *channel_map,
  6054. uint16_t bits_per_sample,
  6055. uint16_t sample_word_size)
  6056. {
  6057. struct asm_multi_channel_pcm_fmt_blk_param_v3 fmt;
  6058. u8 *channel_mapping;
  6059. int rc;
  6060. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  6061. ac->session, rate, channels,
  6062. bits_per_sample, sample_word_size);
  6063. memset(&fmt, 0, sizeof(fmt));
  6064. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6065. atomic_set(&ac->cmd_state, -1);
  6066. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6067. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6068. sizeof(fmt.fmt_blk);
  6069. fmt.param.num_channels = channels;
  6070. fmt.param.bits_per_sample = bits_per_sample;
  6071. fmt.param.sample_rate = rate;
  6072. fmt.param.is_signed = 1;
  6073. fmt.param.sample_word_size = sample_word_size;
  6074. channel_mapping = fmt.param.channel_mapping;
  6075. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  6076. if (use_default_chmap) {
  6077. if (q6asm_map_channels(channel_mapping, channels, false)) {
  6078. pr_err("%s: map channels failed %d\n",
  6079. __func__, channels);
  6080. rc = -EINVAL;
  6081. goto fail_cmd;
  6082. }
  6083. } else {
  6084. memcpy(channel_mapping, channel_map,
  6085. PCM_FORMAT_MAX_NUM_CHANNEL);
  6086. }
  6087. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6088. if (rc < 0) {
  6089. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6090. goto fail_cmd;
  6091. }
  6092. rc = wait_event_timeout(ac->cmd_wait,
  6093. (atomic_read(&ac->cmd_state) >= 0),
  6094. msecs_to_jiffies(TIMEOUT_MS));
  6095. if (!rc) {
  6096. pr_err("%s: timeout. waited for format update\n", __func__);
  6097. rc = -ETIMEDOUT;
  6098. goto fail_cmd;
  6099. }
  6100. if (atomic_read(&ac->cmd_state) > 0) {
  6101. pr_err("%s: DSP returned error[%s]\n",
  6102. __func__, adsp_err_get_err_str(
  6103. atomic_read(&ac->cmd_state)));
  6104. rc = adsp_err_get_lnx_err_code(
  6105. atomic_read(&ac->cmd_state));
  6106. goto fail_cmd;
  6107. }
  6108. return 0;
  6109. fail_cmd:
  6110. return rc;
  6111. }
  6112. static int __q6asm_media_format_block_multi_ch_pcm_v4(struct audio_client *ac,
  6113. uint32_t rate,
  6114. uint32_t channels,
  6115. bool use_default_chmap,
  6116. char *channel_map,
  6117. uint16_t bits_per_sample,
  6118. uint16_t sample_word_size,
  6119. uint16_t endianness,
  6120. uint16_t mode)
  6121. {
  6122. struct asm_multi_channel_pcm_fmt_blk_param_v4 fmt;
  6123. u8 *channel_mapping;
  6124. int rc;
  6125. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  6126. ac->session, rate, channels,
  6127. bits_per_sample, sample_word_size);
  6128. memset(&fmt, 0, sizeof(fmt));
  6129. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6130. atomic_set(&ac->cmd_state, -1);
  6131. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6132. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6133. sizeof(fmt.fmt_blk);
  6134. fmt.param.num_channels = channels;
  6135. fmt.param.bits_per_sample = bits_per_sample;
  6136. fmt.param.sample_rate = rate;
  6137. fmt.param.is_signed = 1;
  6138. fmt.param.sample_word_size = sample_word_size;
  6139. fmt.param.endianness = endianness;
  6140. fmt.param.mode = mode;
  6141. channel_mapping = fmt.param.channel_mapping;
  6142. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  6143. if (use_default_chmap) {
  6144. if (q6asm_map_channels(channel_mapping, channels, false)) {
  6145. pr_err("%s: map channels failed %d\n",
  6146. __func__, channels);
  6147. rc = -EINVAL;
  6148. goto fail_cmd;
  6149. }
  6150. } else {
  6151. memcpy(channel_mapping, channel_map,
  6152. PCM_FORMAT_MAX_NUM_CHANNEL);
  6153. }
  6154. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6155. if (rc < 0) {
  6156. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6157. goto fail_cmd;
  6158. }
  6159. rc = wait_event_timeout(ac->cmd_wait,
  6160. (atomic_read(&ac->cmd_state) >= 0),
  6161. msecs_to_jiffies(TIMEOUT_MS));
  6162. if (!rc) {
  6163. pr_err("%s: timeout. waited for format update\n", __func__);
  6164. rc = -ETIMEDOUT;
  6165. goto fail_cmd;
  6166. }
  6167. if (atomic_read(&ac->cmd_state) > 0) {
  6168. pr_err("%s: DSP returned error[%s]\n",
  6169. __func__, adsp_err_get_err_str(
  6170. atomic_read(&ac->cmd_state)));
  6171. rc = adsp_err_get_lnx_err_code(
  6172. atomic_read(&ac->cmd_state));
  6173. goto fail_cmd;
  6174. }
  6175. return 0;
  6176. fail_cmd:
  6177. return rc;
  6178. }
  6179. static int __q6asm_media_format_block_multi_ch_pcm_v5(struct audio_client *ac,
  6180. uint32_t rate,
  6181. uint32_t channels,
  6182. bool use_default_chmap,
  6183. char *channel_map,
  6184. uint16_t bits_per_sample,
  6185. uint16_t sample_word_size,
  6186. uint16_t endianness,
  6187. uint16_t mode)
  6188. {
  6189. struct asm_multi_channel_pcm_fmt_blk_param_v5 fmt;
  6190. u8 *channel_mapping;
  6191. int rc;
  6192. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  6193. ac->session, rate, channels,
  6194. bits_per_sample, sample_word_size);
  6195. memset(&fmt, 0, sizeof(fmt));
  6196. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6197. atomic_set(&ac->cmd_state, -1);
  6198. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6199. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6200. sizeof(fmt.fmt_blk);
  6201. fmt.param.num_channels = channels;
  6202. fmt.param.bits_per_sample = bits_per_sample;
  6203. fmt.param.sample_rate = rate;
  6204. fmt.param.is_signed = 1;
  6205. fmt.param.sample_word_size = sample_word_size;
  6206. fmt.param.endianness = endianness;
  6207. fmt.param.mode = mode;
  6208. channel_mapping = fmt.param.channel_mapping;
  6209. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  6210. if (use_default_chmap) {
  6211. if (q6asm_map_channels(channel_mapping, channels, false)) {
  6212. pr_err("%s: map channels failed %d\n",
  6213. __func__, channels);
  6214. rc = -EINVAL;
  6215. goto fail_cmd;
  6216. }
  6217. } else {
  6218. memcpy(channel_mapping, channel_map,
  6219. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  6220. }
  6221. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6222. if (rc < 0) {
  6223. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6224. goto fail_cmd;
  6225. }
  6226. rc = wait_event_timeout(ac->cmd_wait,
  6227. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  6228. if (!rc) {
  6229. pr_err("%s: timeout. waited for format update\n", __func__);
  6230. rc = -ETIMEDOUT;
  6231. goto fail_cmd;
  6232. }
  6233. if (atomic_read(&ac->cmd_state) > 0) {
  6234. pr_err("%s: DSP returned error[%s]\n",
  6235. __func__, adsp_err_get_err_str(
  6236. atomic_read(&ac->cmd_state)));
  6237. rc = adsp_err_get_lnx_err_code(
  6238. atomic_read(&ac->cmd_state));
  6239. goto fail_cmd;
  6240. }
  6241. return 0;
  6242. fail_cmd:
  6243. return rc;
  6244. }
  6245. int q6asm_media_format_block_multi_ch_pcm(struct audio_client *ac,
  6246. uint32_t rate, uint32_t channels,
  6247. bool use_default_chmap, char *channel_map)
  6248. {
  6249. return __q6asm_media_format_block_multi_ch_pcm(ac, rate,
  6250. channels, use_default_chmap, channel_map, 16);
  6251. }
  6252. int q6asm_media_format_block_multi_ch_pcm_v2(
  6253. struct audio_client *ac,
  6254. uint32_t rate, uint32_t channels,
  6255. bool use_default_chmap, char *channel_map,
  6256. uint16_t bits_per_sample)
  6257. {
  6258. return __q6asm_media_format_block_multi_ch_pcm(ac, rate,
  6259. channels, use_default_chmap, channel_map,
  6260. bits_per_sample);
  6261. }
  6262. /*
  6263. * q6asm_media_format_block_multi_ch_pcm_v3 - sends pcm decoder configuration
  6264. * parameters
  6265. *
  6266. * @ac: Client session handle
  6267. * @rate: sample rate
  6268. * @channels: number of channels
  6269. * @bits_per_sample: bit width of encoder session
  6270. * @use_default_chmap: true if default channel map to be used
  6271. * @channel_map: input channel map
  6272. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  6273. */
  6274. int q6asm_media_format_block_multi_ch_pcm_v3(struct audio_client *ac,
  6275. uint32_t rate, uint32_t channels,
  6276. bool use_default_chmap,
  6277. char *channel_map,
  6278. uint16_t bits_per_sample,
  6279. uint16_t sample_word_size)
  6280. {
  6281. return __q6asm_media_format_block_multi_ch_pcm_v3(ac, rate, channels,
  6282. use_default_chmap,
  6283. channel_map,
  6284. bits_per_sample,
  6285. sample_word_size);
  6286. }
  6287. EXPORT_SYMBOL(q6asm_media_format_block_multi_ch_pcm_v3);
  6288. /*
  6289. * q6asm_media_format_block_multi_ch_pcm_v4 - sends pcm decoder configuration
  6290. * parameters
  6291. *
  6292. * @ac: Client session handle
  6293. * @rate: sample rate
  6294. * @channels: number of channels
  6295. * @bits_per_sample: bit width of encoder session
  6296. * @use_default_chmap: true if default channel map to be used
  6297. * @channel_map: input channel map
  6298. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  6299. * @endianness: endianness of the pcm data
  6300. * @mode: Mode to provide additional info about the pcm input data
  6301. */
  6302. int q6asm_media_format_block_multi_ch_pcm_v4(struct audio_client *ac,
  6303. uint32_t rate, uint32_t channels,
  6304. bool use_default_chmap,
  6305. char *channel_map,
  6306. uint16_t bits_per_sample,
  6307. uint16_t sample_word_size,
  6308. uint16_t endianness,
  6309. uint16_t mode)
  6310. {
  6311. return __q6asm_media_format_block_multi_ch_pcm_v4(ac, rate, channels,
  6312. use_default_chmap,
  6313. channel_map,
  6314. bits_per_sample,
  6315. sample_word_size,
  6316. endianness,
  6317. mode);
  6318. }
  6319. EXPORT_SYMBOL(q6asm_media_format_block_multi_ch_pcm_v4);
  6320. /*
  6321. * q6asm_media_format_block_multi_ch_pcm_v5 - sends pcm decoder configuration
  6322. * parameters
  6323. *
  6324. * @ac: Client session handle
  6325. * @rate: sample rate
  6326. * @channels: number of channels
  6327. * @bits_per_sample: bit width of encoder session
  6328. * @use_default_chmap: true if default channel map to be used
  6329. * @channel_map: input channel map
  6330. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  6331. * @endianness: endianness of the pcm data
  6332. * @mode: Mode to provide additional info about the pcm input data
  6333. */
  6334. int q6asm_media_format_block_multi_ch_pcm_v5(struct audio_client *ac,
  6335. uint32_t rate, uint32_t channels,
  6336. bool use_default_chmap,
  6337. char *channel_map,
  6338. uint16_t bits_per_sample,
  6339. uint16_t sample_word_size,
  6340. uint16_t endianness,
  6341. uint16_t mode)
  6342. {
  6343. return __q6asm_media_format_block_multi_ch_pcm_v5(ac, rate, channels,
  6344. use_default_chmap,
  6345. channel_map,
  6346. bits_per_sample,
  6347. sample_word_size,
  6348. endianness,
  6349. mode);
  6350. }
  6351. EXPORT_SYMBOL(q6asm_media_format_block_multi_ch_pcm_v5);
  6352. /*
  6353. * q6asm_media_format_block_gen_compr - set up generic compress format params
  6354. *
  6355. * @ac: Client session handle
  6356. * @rate: sample rate
  6357. * @channels: number of channels
  6358. * @use_default_chmap: true if default channel map to be used
  6359. * @channel_map: input channel map
  6360. * @bits_per_sample: bit width of gen compress stream
  6361. */
  6362. int q6asm_media_format_block_gen_compr(struct audio_client *ac,
  6363. uint32_t rate, uint32_t channels,
  6364. bool use_default_chmap, char *channel_map,
  6365. uint16_t bits_per_sample)
  6366. {
  6367. struct asm_generic_compressed_fmt_blk_t fmt;
  6368. u8 *channel_mapping;
  6369. int rc = 0;
  6370. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]\n",
  6371. __func__, ac->session, rate,
  6372. channels, bits_per_sample);
  6373. memset(&fmt, 0, sizeof(fmt));
  6374. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6375. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6376. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6377. sizeof(fmt.fmt_blk);
  6378. fmt.num_channels = channels;
  6379. fmt.bits_per_sample = bits_per_sample;
  6380. fmt.sampling_rate = rate;
  6381. channel_mapping = fmt.channel_mapping;
  6382. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  6383. if (use_default_chmap) {
  6384. if (q6asm_map_channels(channel_mapping, channels, false)) {
  6385. pr_err("%s: map channels failed %d\n",
  6386. __func__, channels);
  6387. return -EINVAL;
  6388. }
  6389. } else {
  6390. memcpy(channel_mapping, channel_map,
  6391. PCM_FORMAT_MAX_NUM_CHANNEL);
  6392. }
  6393. atomic_set(&ac->cmd_state, -1);
  6394. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6395. if (rc < 0) {
  6396. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6397. rc = -EINVAL;
  6398. goto fail_cmd;
  6399. }
  6400. rc = wait_event_timeout(ac->cmd_wait,
  6401. (atomic_read(&ac->cmd_state) >= 0),
  6402. msecs_to_jiffies(TIMEOUT_MS));
  6403. if (!rc) {
  6404. pr_err("%s: timeout. waited for format update\n", __func__);
  6405. rc = -ETIMEDOUT;
  6406. goto fail_cmd;
  6407. }
  6408. if (atomic_read(&ac->cmd_state) > 0) {
  6409. pr_err("%s: DSP returned error[%s]\n",
  6410. __func__, adsp_err_get_err_str(
  6411. atomic_read(&ac->cmd_state)));
  6412. rc = adsp_err_get_lnx_err_code(
  6413. atomic_read(&ac->cmd_state));
  6414. }
  6415. return 0;
  6416. fail_cmd:
  6417. return rc;
  6418. }
  6419. EXPORT_SYMBOL(q6asm_media_format_block_gen_compr);
  6420. /*
  6421. * q6asm_media_format_block_iec - set up IEC61937 (compressed) or IEC60958
  6422. * (pcm) format params. Both audio standards
  6423. * use the same format and are used for
  6424. * HDMI or SPDIF.
  6425. *
  6426. * @ac: Client session handle
  6427. * @rate: sample rate
  6428. * @channels: number of channels
  6429. */
  6430. int q6asm_media_format_block_iec(struct audio_client *ac,
  6431. uint32_t rate, uint32_t channels)
  6432. {
  6433. struct asm_iec_compressed_fmt_blk_t fmt;
  6434. int rc = 0;
  6435. pr_debug("%s: session[%d]rate[%d]ch[%d]\n",
  6436. __func__, ac->session, rate,
  6437. channels);
  6438. memset(&fmt, 0, sizeof(fmt));
  6439. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6440. fmt.hdr.opcode = ASM_DATA_CMD_IEC_60958_MEDIA_FMT;
  6441. fmt.num_channels = channels;
  6442. fmt.sampling_rate = rate;
  6443. atomic_set(&ac->cmd_state, -1);
  6444. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6445. if (rc < 0) {
  6446. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6447. rc = -EINVAL;
  6448. goto fail_cmd;
  6449. }
  6450. rc = wait_event_timeout(ac->cmd_wait,
  6451. (atomic_read(&ac->cmd_state) >= 0),
  6452. msecs_to_jiffies(TIMEOUT_MS));
  6453. if (!rc) {
  6454. pr_err("%s: timeout. waited for format update\n", __func__);
  6455. rc = -ETIMEDOUT;
  6456. goto fail_cmd;
  6457. }
  6458. if (atomic_read(&ac->cmd_state) > 0) {
  6459. pr_err("%s: DSP returned error[%s]\n",
  6460. __func__, adsp_err_get_err_str(
  6461. atomic_read(&ac->cmd_state)));
  6462. rc = adsp_err_get_lnx_err_code(
  6463. atomic_read(&ac->cmd_state));
  6464. }
  6465. return 0;
  6466. fail_cmd:
  6467. return rc;
  6468. }
  6469. EXPORT_SYMBOL(q6asm_media_format_block_iec);
  6470. static int __q6asm_media_format_block_multi_aac(struct audio_client *ac,
  6471. struct asm_aac_cfg *cfg, int stream_id)
  6472. {
  6473. struct asm_aac_fmt_blk_v2 fmt;
  6474. int rc = 0;
  6475. pr_debug("%s: session[%d]rate[%d]ch[%d]\n", __func__, ac->session,
  6476. cfg->sample_rate, cfg->ch_cfg);
  6477. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6478. atomic_set(&ac->cmd_state, -1);
  6479. /*
  6480. * Updated the token field with stream/session for compressed playback
  6481. * Platform driver must know the the stream with which the command is
  6482. * associated
  6483. */
  6484. if (ac->io_mode & COMPRESSED_STREAM_IO)
  6485. q6asm_update_token(&fmt.hdr.token,
  6486. ac->session,
  6487. stream_id,
  6488. 0, /* Buffer index is NA */
  6489. 0, /* Direction flag is NA */
  6490. WAIT_CMD);
  6491. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  6492. __func__, fmt.hdr.token, stream_id, ac->session);
  6493. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6494. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6495. sizeof(fmt.fmt_blk);
  6496. fmt.aac_fmt_flag = cfg->format;
  6497. fmt.audio_objype = cfg->aot;
  6498. /* If zero, PCE is assumed to be available in bitstream*/
  6499. fmt.total_size_of_PCE_bits = 0;
  6500. fmt.channel_config = cfg->ch_cfg;
  6501. fmt.sample_rate = cfg->sample_rate;
  6502. pr_debug("%s: format=0x%x cfg_size=%d aac-cfg=0x%x aot=%d ch=%d sr=%d\n",
  6503. __func__, fmt.aac_fmt_flag, fmt.fmt_blk.fmt_blk_size,
  6504. fmt.aac_fmt_flag,
  6505. fmt.audio_objype,
  6506. fmt.channel_config,
  6507. fmt.sample_rate);
  6508. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6509. if (rc < 0) {
  6510. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6511. rc = -EINVAL;
  6512. goto fail_cmd;
  6513. }
  6514. rc = wait_event_timeout(ac->cmd_wait,
  6515. (atomic_read(&ac->cmd_state) >= 0),
  6516. msecs_to_jiffies(TIMEOUT_MS));
  6517. if (!rc) {
  6518. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6519. rc = -ETIMEDOUT;
  6520. goto fail_cmd;
  6521. }
  6522. if (atomic_read(&ac->cmd_state) > 0) {
  6523. pr_err("%s: DSP returned error[%s]\n",
  6524. __func__, adsp_err_get_err_str(
  6525. atomic_read(&ac->cmd_state)));
  6526. rc = adsp_err_get_lnx_err_code(
  6527. atomic_read(&ac->cmd_state));
  6528. goto fail_cmd;
  6529. }
  6530. return 0;
  6531. fail_cmd:
  6532. return rc;
  6533. }
  6534. /**
  6535. * q6asm_media_format_block_multi_aac -
  6536. * command to set mediafmt block for multi_aac on ASM stream
  6537. *
  6538. * @ac: Audio client handle
  6539. * @cfg: multi_aac config
  6540. *
  6541. * Returns 0 on success or error on failure
  6542. */
  6543. int q6asm_media_format_block_multi_aac(struct audio_client *ac,
  6544. struct asm_aac_cfg *cfg)
  6545. {
  6546. return __q6asm_media_format_block_multi_aac(ac, cfg, ac->stream_id);
  6547. }
  6548. EXPORT_SYMBOL(q6asm_media_format_block_multi_aac);
  6549. /**
  6550. * q6asm_media_format_block_aac -
  6551. * command to set mediafmt block for aac on ASM
  6552. *
  6553. * @ac: Audio client handle
  6554. * @cfg: aac config
  6555. *
  6556. * Returns 0 on success or error on failure
  6557. */
  6558. int q6asm_media_format_block_aac(struct audio_client *ac,
  6559. struct asm_aac_cfg *cfg)
  6560. {
  6561. return __q6asm_media_format_block_multi_aac(ac, cfg, ac->stream_id);
  6562. }
  6563. EXPORT_SYMBOL(q6asm_media_format_block_aac);
  6564. /**
  6565. * q6asm_stream_media_format_block_aac -
  6566. * command to set mediafmt block for aac on ASM stream
  6567. *
  6568. * @ac: Audio client handle
  6569. * @cfg: aac config
  6570. * @stream_id: stream ID info
  6571. *
  6572. * Returns 0 on success or error on failure
  6573. */
  6574. int q6asm_stream_media_format_block_aac(struct audio_client *ac,
  6575. struct asm_aac_cfg *cfg, int stream_id)
  6576. {
  6577. return __q6asm_media_format_block_multi_aac(ac, cfg, stream_id);
  6578. }
  6579. EXPORT_SYMBOL(q6asm_stream_media_format_block_aac);
  6580. /**
  6581. * q6asm_media_format_block_wma -
  6582. * command to set mediafmt block for wma on ASM stream
  6583. *
  6584. * @ac: Audio client handle
  6585. * @cfg: wma config
  6586. * @stream_id: stream ID info
  6587. *
  6588. * Returns 0 on success or error on failure
  6589. */
  6590. int q6asm_media_format_block_wma(struct audio_client *ac,
  6591. void *cfg, int stream_id)
  6592. {
  6593. struct asm_wmastdv9_fmt_blk_v2 fmt;
  6594. struct asm_wma_cfg *wma_cfg = (struct asm_wma_cfg *)cfg;
  6595. int rc = 0;
  6596. pr_debug("session[%d]format_tag[0x%4x] rate[%d] ch[0x%4x] bps[%d], balign[0x%4x], bit_sample[0x%4x], ch_msk[%d], enc_opt[0x%4x]\n",
  6597. ac->session, wma_cfg->format_tag, wma_cfg->sample_rate,
  6598. wma_cfg->ch_cfg, wma_cfg->avg_bytes_per_sec,
  6599. wma_cfg->block_align, wma_cfg->valid_bits_per_sample,
  6600. wma_cfg->ch_mask, wma_cfg->encode_opt);
  6601. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6602. atomic_set(&ac->cmd_state, -1);
  6603. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6604. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6605. sizeof(fmt.fmtblk);
  6606. fmt.fmtag = wma_cfg->format_tag;
  6607. fmt.num_channels = wma_cfg->ch_cfg;
  6608. fmt.sample_rate = wma_cfg->sample_rate;
  6609. fmt.avg_bytes_per_sec = wma_cfg->avg_bytes_per_sec;
  6610. fmt.blk_align = wma_cfg->block_align;
  6611. fmt.bits_per_sample =
  6612. wma_cfg->valid_bits_per_sample;
  6613. fmt.channel_mask = wma_cfg->ch_mask;
  6614. fmt.enc_options = wma_cfg->encode_opt;
  6615. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6616. if (rc < 0) {
  6617. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6618. rc = -EINVAL;
  6619. goto fail_cmd;
  6620. }
  6621. rc = wait_event_timeout(ac->cmd_wait,
  6622. (atomic_read(&ac->cmd_state) >= 0),
  6623. msecs_to_jiffies(TIMEOUT_MS));
  6624. if (!rc) {
  6625. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6626. rc = -ETIMEDOUT;
  6627. goto fail_cmd;
  6628. }
  6629. if (atomic_read(&ac->cmd_state) > 0) {
  6630. pr_err("%s: DSP returned error[%s]\n",
  6631. __func__, adsp_err_get_err_str(
  6632. atomic_read(&ac->cmd_state)));
  6633. rc = adsp_err_get_lnx_err_code(
  6634. atomic_read(&ac->cmd_state));
  6635. goto fail_cmd;
  6636. }
  6637. return 0;
  6638. fail_cmd:
  6639. return rc;
  6640. }
  6641. EXPORT_SYMBOL(q6asm_media_format_block_wma);
  6642. /**
  6643. * q6asm_media_format_block_wmapro -
  6644. * command to set mediafmt block for wmapro on ASM stream
  6645. *
  6646. * @ac: Audio client handle
  6647. * @cfg: wmapro config
  6648. * @stream_id: stream ID info
  6649. *
  6650. * Returns 0 on success or error on failure
  6651. */
  6652. int q6asm_media_format_block_wmapro(struct audio_client *ac,
  6653. void *cfg, int stream_id)
  6654. {
  6655. struct asm_wmaprov10_fmt_blk_v2 fmt;
  6656. struct asm_wmapro_cfg *wmapro_cfg = (struct asm_wmapro_cfg *)cfg;
  6657. int rc = 0;
  6658. pr_debug("%s: session[%d]format_tag[0x%4x] rate[%d] ch[0x%4x] bps[%d], balign[0x%4x], bit_sample[0x%4x], ch_msk[%d], enc_opt[0x%4x], adv_enc_opt[0x%4x], adv_enc_opt2[0x%8x]\n",
  6659. __func__,
  6660. ac->session, wmapro_cfg->format_tag, wmapro_cfg->sample_rate,
  6661. wmapro_cfg->ch_cfg, wmapro_cfg->avg_bytes_per_sec,
  6662. wmapro_cfg->block_align, wmapro_cfg->valid_bits_per_sample,
  6663. wmapro_cfg->ch_mask, wmapro_cfg->encode_opt,
  6664. wmapro_cfg->adv_encode_opt, wmapro_cfg->adv_encode_opt2);
  6665. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6666. atomic_set(&ac->cmd_state, -1);
  6667. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6668. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6669. sizeof(fmt.fmtblk);
  6670. fmt.fmtag = wmapro_cfg->format_tag;
  6671. fmt.num_channels = wmapro_cfg->ch_cfg;
  6672. fmt.sample_rate = wmapro_cfg->sample_rate;
  6673. fmt.avg_bytes_per_sec =
  6674. wmapro_cfg->avg_bytes_per_sec;
  6675. fmt.blk_align = wmapro_cfg->block_align;
  6676. fmt.bits_per_sample = wmapro_cfg->valid_bits_per_sample;
  6677. fmt.channel_mask = wmapro_cfg->ch_mask;
  6678. fmt.enc_options = wmapro_cfg->encode_opt;
  6679. fmt.usAdvancedEncodeOpt = wmapro_cfg->adv_encode_opt;
  6680. fmt.advanced_enc_options2 = wmapro_cfg->adv_encode_opt2;
  6681. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6682. if (rc < 0) {
  6683. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6684. rc = -EINVAL;
  6685. goto fail_cmd;
  6686. }
  6687. rc = wait_event_timeout(ac->cmd_wait,
  6688. (atomic_read(&ac->cmd_state) >= 0),
  6689. msecs_to_jiffies(TIMEOUT_MS));
  6690. if (!rc) {
  6691. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6692. rc = -ETIMEDOUT;
  6693. goto fail_cmd;
  6694. }
  6695. if (atomic_read(&ac->cmd_state) > 0) {
  6696. pr_err("%s: DSP returned error[%s]\n",
  6697. __func__, adsp_err_get_err_str(
  6698. atomic_read(&ac->cmd_state)));
  6699. rc = adsp_err_get_lnx_err_code(
  6700. atomic_read(&ac->cmd_state));
  6701. goto fail_cmd;
  6702. }
  6703. return 0;
  6704. fail_cmd:
  6705. return rc;
  6706. }
  6707. EXPORT_SYMBOL(q6asm_media_format_block_wmapro);
  6708. /**
  6709. * q6asm_media_format_block_amrwbplus -
  6710. * command to set mediafmt block for amrwbplus on ASM stream
  6711. *
  6712. * @ac: Audio client handle
  6713. * @cfg: amrwbplus config
  6714. * @stream_id: stream ID info
  6715. *
  6716. * Returns 0 on success or error on failure
  6717. */
  6718. int q6asm_media_format_block_amrwbplus(struct audio_client *ac,
  6719. struct asm_amrwbplus_cfg *cfg)
  6720. {
  6721. struct asm_amrwbplus_fmt_blk_v2 fmt;
  6722. int rc = 0;
  6723. pr_debug("%s: session[%d]band-mode[%d]frame-fmt[%d]ch[%d]\n",
  6724. __func__,
  6725. ac->session,
  6726. cfg->amr_band_mode,
  6727. cfg->amr_frame_fmt,
  6728. cfg->num_channels);
  6729. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6730. atomic_set(&ac->cmd_state, -1);
  6731. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6732. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6733. sizeof(fmt.fmtblk);
  6734. fmt.amr_frame_fmt = cfg->amr_frame_fmt;
  6735. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6736. if (rc < 0) {
  6737. pr_err("%s: Comamnd media format update failed.. %d\n",
  6738. __func__, rc);
  6739. rc = -EINVAL;
  6740. goto fail_cmd;
  6741. }
  6742. rc = wait_event_timeout(ac->cmd_wait,
  6743. (atomic_read(&ac->cmd_state) >= 0),
  6744. msecs_to_jiffies(TIMEOUT_MS));
  6745. if (!rc) {
  6746. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6747. rc = -ETIMEDOUT;
  6748. goto fail_cmd;
  6749. }
  6750. if (atomic_read(&ac->cmd_state) > 0) {
  6751. pr_err("%s: DSP returned error[%s]\n",
  6752. __func__, adsp_err_get_err_str(
  6753. atomic_read(&ac->cmd_state)));
  6754. rc = adsp_err_get_lnx_err_code(
  6755. atomic_read(&ac->cmd_state));
  6756. goto fail_cmd;
  6757. }
  6758. return 0;
  6759. fail_cmd:
  6760. return rc;
  6761. }
  6762. EXPORT_SYMBOL(q6asm_media_format_block_amrwbplus);
  6763. /**
  6764. * q6asm_stream_media_format_block_flac -
  6765. * command to set mediafmt block for flac on ASM stream
  6766. *
  6767. * @ac: Audio client handle
  6768. * @cfg: FLAC config
  6769. * @stream_id: stream ID info
  6770. *
  6771. * Returns 0 on success or error on failure
  6772. */
  6773. int q6asm_stream_media_format_block_flac(struct audio_client *ac,
  6774. struct asm_flac_cfg *cfg, int stream_id)
  6775. {
  6776. struct asm_flac_fmt_blk_v2 fmt;
  6777. int rc = 0;
  6778. pr_debug("%s :session[%d] rate[%d] ch[%d] size[%d] stream_id[%d]\n",
  6779. __func__, ac->session, cfg->sample_rate, cfg->ch_cfg,
  6780. cfg->sample_size, stream_id);
  6781. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6782. atomic_set(&ac->cmd_state, -1);
  6783. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6784. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6785. sizeof(fmt.fmtblk);
  6786. fmt.is_stream_info_present = cfg->stream_info_present;
  6787. fmt.num_channels = cfg->ch_cfg;
  6788. fmt.min_blk_size = cfg->min_blk_size;
  6789. fmt.max_blk_size = cfg->max_blk_size;
  6790. fmt.sample_rate = cfg->sample_rate;
  6791. fmt.min_frame_size = cfg->min_frame_size;
  6792. fmt.max_frame_size = cfg->max_frame_size;
  6793. fmt.sample_size = cfg->sample_size;
  6794. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6795. if (rc < 0) {
  6796. pr_err("%s :Comamnd media format update failed %d\n",
  6797. __func__, rc);
  6798. goto fail_cmd;
  6799. }
  6800. rc = wait_event_timeout(ac->cmd_wait,
  6801. (atomic_read(&ac->cmd_state) >= 0),
  6802. msecs_to_jiffies(TIMEOUT_MS));
  6803. if (!rc) {
  6804. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6805. rc = -ETIMEDOUT;
  6806. goto fail_cmd;
  6807. }
  6808. if (atomic_read(&ac->cmd_state) > 0) {
  6809. pr_err("%s: DSP returned error[%s]\n",
  6810. __func__, adsp_err_get_err_str(
  6811. atomic_read(&ac->cmd_state)));
  6812. rc = adsp_err_get_lnx_err_code(
  6813. atomic_read(&ac->cmd_state));
  6814. goto fail_cmd;
  6815. }
  6816. return 0;
  6817. fail_cmd:
  6818. return rc;
  6819. }
  6820. EXPORT_SYMBOL(q6asm_stream_media_format_block_flac);
  6821. /**
  6822. * q6asm_media_format_block_alac -
  6823. * command to set mediafmt block for alac on ASM stream
  6824. *
  6825. * @ac: Audio client handle
  6826. * @cfg: ALAC config
  6827. * @stream_id: stream ID info
  6828. *
  6829. * Returns 0 on success or error on failure
  6830. */
  6831. int q6asm_media_format_block_alac(struct audio_client *ac,
  6832. struct asm_alac_cfg *cfg, int stream_id)
  6833. {
  6834. struct asm_alac_fmt_blk_v2 fmt;
  6835. int rc = 0;
  6836. pr_debug("%s :session[%d]rate[%d]ch[%d]\n", __func__,
  6837. ac->session, cfg->sample_rate, cfg->num_channels);
  6838. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6839. atomic_set(&ac->cmd_state, -1);
  6840. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6841. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6842. sizeof(fmt.fmtblk);
  6843. fmt.frame_length = cfg->frame_length;
  6844. fmt.compatible_version = cfg->compatible_version;
  6845. fmt.bit_depth = cfg->bit_depth;
  6846. fmt.pb = cfg->pb;
  6847. fmt.mb = cfg->mb;
  6848. fmt.kb = cfg->kb;
  6849. fmt.num_channels = cfg->num_channels;
  6850. fmt.max_run = cfg->max_run;
  6851. fmt.max_frame_bytes = cfg->max_frame_bytes;
  6852. fmt.avg_bit_rate = cfg->avg_bit_rate;
  6853. fmt.sample_rate = cfg->sample_rate;
  6854. fmt.channel_layout_tag = cfg->channel_layout_tag;
  6855. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6856. if (rc < 0) {
  6857. pr_err("%s :Comamnd media format update failed %d\n",
  6858. __func__, rc);
  6859. goto fail_cmd;
  6860. }
  6861. rc = wait_event_timeout(ac->cmd_wait,
  6862. (atomic_read(&ac->cmd_state) >= 0),
  6863. msecs_to_jiffies(TIMEOUT_MS));
  6864. if (!rc) {
  6865. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6866. rc = -ETIMEDOUT;
  6867. goto fail_cmd;
  6868. }
  6869. if (atomic_read(&ac->cmd_state) > 0) {
  6870. pr_err("%s: DSP returned error[%s]\n",
  6871. __func__, adsp_err_get_err_str(
  6872. atomic_read(&ac->cmd_state)));
  6873. rc = adsp_err_get_lnx_err_code(
  6874. atomic_read(&ac->cmd_state));
  6875. goto fail_cmd;
  6876. }
  6877. return 0;
  6878. fail_cmd:
  6879. return rc;
  6880. }
  6881. EXPORT_SYMBOL(q6asm_media_format_block_alac);
  6882. /*
  6883. * q6asm_media_format_block_g711 - sends g711 decoder configuration
  6884. * parameters
  6885. * @ac: Client session handle
  6886. * @cfg: Audio stream manager configuration parameters
  6887. * @stream_id: Stream id
  6888. */
  6889. int q6asm_media_format_block_g711(struct audio_client *ac,
  6890. struct asm_g711_dec_cfg *cfg, int stream_id)
  6891. {
  6892. struct asm_g711_dec_fmt_blk_v2 fmt;
  6893. int rc = 0;
  6894. if (!ac) {
  6895. pr_err("%s: audio client is null\n", __func__);
  6896. return -EINVAL;
  6897. }
  6898. if (!cfg) {
  6899. pr_err("%s: Invalid ASM config\n", __func__);
  6900. return -EINVAL;
  6901. }
  6902. if (stream_id <= 0) {
  6903. pr_err("%s: Invalid stream id\n", __func__);
  6904. return -EINVAL;
  6905. }
  6906. pr_debug("%s :session[%d]rate[%d]\n", __func__,
  6907. ac->session, cfg->sample_rate);
  6908. memset(&fmt, 0, sizeof(struct asm_g711_dec_fmt_blk_v2));
  6909. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6910. atomic_set(&ac->cmd_state, -1);
  6911. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6912. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6913. sizeof(fmt.fmtblk);
  6914. fmt.sample_rate = cfg->sample_rate;
  6915. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6916. if (rc < 0) {
  6917. pr_err("%s :Command media format update failed %d\n",
  6918. __func__, rc);
  6919. goto fail_cmd;
  6920. }
  6921. rc = wait_event_timeout(ac->cmd_wait,
  6922. (atomic_read(&ac->cmd_state) >= 0),
  6923. msecs_to_jiffies(TIMEOUT_MS));
  6924. if (!rc) {
  6925. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6926. rc = -ETIMEDOUT;
  6927. goto fail_cmd;
  6928. }
  6929. if (atomic_read(&ac->cmd_state) > 0) {
  6930. pr_err("%s: DSP returned error[%s]\n",
  6931. __func__, adsp_err_get_err_str(
  6932. atomic_read(&ac->cmd_state)));
  6933. rc = adsp_err_get_lnx_err_code(
  6934. atomic_read(&ac->cmd_state));
  6935. goto fail_cmd;
  6936. }
  6937. return 0;
  6938. fail_cmd:
  6939. return rc;
  6940. }
  6941. EXPORT_SYMBOL(q6asm_media_format_block_g711);
  6942. /**
  6943. * q6asm_stream_media_format_block_vorbis -
  6944. * command to set mediafmt block for vorbis on ASM stream
  6945. *
  6946. * @ac: Audio client handle
  6947. * @cfg: vorbis config
  6948. * @stream_id: stream ID info
  6949. *
  6950. * Returns 0 on success or error on failure
  6951. */
  6952. int q6asm_stream_media_format_block_vorbis(struct audio_client *ac,
  6953. struct asm_vorbis_cfg *cfg, int stream_id)
  6954. {
  6955. struct asm_vorbis_fmt_blk_v2 fmt;
  6956. int rc = 0;
  6957. pr_debug("%s :session[%d] bit_stream_fmt[%d] stream_id[%d]\n",
  6958. __func__, ac->session, cfg->bit_stream_fmt, stream_id);
  6959. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6960. atomic_set(&ac->cmd_state, -1);
  6961. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6962. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6963. sizeof(fmt.fmtblk);
  6964. fmt.bit_stream_fmt = cfg->bit_stream_fmt;
  6965. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6966. if (rc < 0) {
  6967. pr_err("%s :Comamnd media format update failed %d\n",
  6968. __func__, rc);
  6969. goto fail_cmd;
  6970. }
  6971. rc = wait_event_timeout(ac->cmd_wait,
  6972. (atomic_read(&ac->cmd_state) >= 0),
  6973. msecs_to_jiffies(TIMEOUT_MS));
  6974. if (!rc) {
  6975. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6976. rc = -ETIMEDOUT;
  6977. goto fail_cmd;
  6978. }
  6979. if (atomic_read(&ac->cmd_state) > 0) {
  6980. pr_err("%s: DSP returned error[%s]\n",
  6981. __func__, adsp_err_get_err_str(
  6982. atomic_read(&ac->cmd_state)));
  6983. rc = adsp_err_get_lnx_err_code(
  6984. atomic_read(&ac->cmd_state));
  6985. goto fail_cmd;
  6986. }
  6987. return 0;
  6988. fail_cmd:
  6989. return rc;
  6990. }
  6991. EXPORT_SYMBOL(q6asm_stream_media_format_block_vorbis);
  6992. /**
  6993. * q6asm_media_format_block_ape -
  6994. * command to set mediafmt block for APE on ASM stream
  6995. *
  6996. * @ac: Audio client handle
  6997. * @cfg: APE config
  6998. * @stream_id: stream ID info
  6999. *
  7000. * Returns 0 on success or error on failure
  7001. */
  7002. int q6asm_media_format_block_ape(struct audio_client *ac,
  7003. struct asm_ape_cfg *cfg, int stream_id)
  7004. {
  7005. struct asm_ape_fmt_blk_v2 fmt;
  7006. int rc = 0;
  7007. pr_debug("%s :session[%d]rate[%d]ch[%d]\n", __func__,
  7008. ac->session, cfg->sample_rate, cfg->num_channels);
  7009. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  7010. atomic_set(&ac->cmd_state, -1);
  7011. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  7012. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  7013. sizeof(fmt.fmtblk);
  7014. fmt.compatible_version = cfg->compatible_version;
  7015. fmt.compression_level = cfg->compression_level;
  7016. fmt.format_flags = cfg->format_flags;
  7017. fmt.blocks_per_frame = cfg->blocks_per_frame;
  7018. fmt.final_frame_blocks = cfg->final_frame_blocks;
  7019. fmt.total_frames = cfg->total_frames;
  7020. fmt.bits_per_sample = cfg->bits_per_sample;
  7021. fmt.num_channels = cfg->num_channels;
  7022. fmt.sample_rate = cfg->sample_rate;
  7023. fmt.seek_table_present = cfg->seek_table_present;
  7024. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  7025. if (rc < 0) {
  7026. pr_err("%s :Comamnd media format update failed %d\n",
  7027. __func__, rc);
  7028. goto fail_cmd;
  7029. }
  7030. rc = wait_event_timeout(ac->cmd_wait,
  7031. (atomic_read(&ac->cmd_state) >= 0),
  7032. msecs_to_jiffies(TIMEOUT_MS));
  7033. if (!rc) {
  7034. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  7035. rc = -ETIMEDOUT;
  7036. goto fail_cmd;
  7037. }
  7038. if (atomic_read(&ac->cmd_state) > 0) {
  7039. pr_err("%s: DSP returned error[%s]\n",
  7040. __func__, adsp_err_get_err_str(
  7041. atomic_read(&ac->cmd_state)));
  7042. rc = adsp_err_get_lnx_err_code(
  7043. atomic_read(&ac->cmd_state));
  7044. goto fail_cmd;
  7045. }
  7046. return 0;
  7047. fail_cmd:
  7048. return rc;
  7049. }
  7050. EXPORT_SYMBOL(q6asm_media_format_block_ape);
  7051. /*
  7052. * q6asm_media_format_block_dsd- Sends DSD Decoder
  7053. * configuration parameters
  7054. *
  7055. * @ac: Client session handle
  7056. * @cfg: DSD Media Format Configuration.
  7057. * @stream_id: stream id of stream to be associated with this session
  7058. *
  7059. * Return 0 on success or negative error code on failure
  7060. */
  7061. int q6asm_media_format_block_dsd(struct audio_client *ac,
  7062. struct asm_dsd_cfg *cfg, int stream_id)
  7063. {
  7064. struct asm_dsd_fmt_blk_v2 fmt;
  7065. int rc;
  7066. pr_debug("%s: session[%d] data_rate[%d] ch[%d]\n", __func__,
  7067. ac->session, cfg->dsd_data_rate, cfg->num_channels);
  7068. memset(&fmt, 0, sizeof(fmt));
  7069. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  7070. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  7071. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  7072. sizeof(fmt.fmtblk);
  7073. fmt.num_version = cfg->num_version;
  7074. fmt.is_bitwise_big_endian = cfg->is_bitwise_big_endian;
  7075. fmt.dsd_channel_block_size = cfg->dsd_channel_block_size;
  7076. fmt.num_channels = cfg->num_channels;
  7077. fmt.dsd_data_rate = cfg->dsd_data_rate;
  7078. atomic_set(&ac->cmd_state, -1);
  7079. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  7080. if (rc < 0) {
  7081. pr_err("%s: Command DSD media format update failed, err: %d\n",
  7082. __func__, rc);
  7083. goto done;
  7084. }
  7085. rc = wait_event_timeout(ac->cmd_wait,
  7086. (atomic_read(&ac->cmd_state) >= 0),
  7087. msecs_to_jiffies(TIMEOUT_MS));
  7088. if (!rc) {
  7089. pr_err("%s: timeout. waited for DSD FORMAT_UPDATE\n", __func__);
  7090. rc = -ETIMEDOUT;
  7091. goto done;
  7092. }
  7093. if (atomic_read(&ac->cmd_state) > 0) {
  7094. pr_err("%s: DSP returned error[%s]\n",
  7095. __func__, adsp_err_get_err_str(
  7096. atomic_read(&ac->cmd_state)));
  7097. rc = adsp_err_get_lnx_err_code(
  7098. atomic_read(&ac->cmd_state));
  7099. goto done;
  7100. }
  7101. return 0;
  7102. done:
  7103. return rc;
  7104. }
  7105. EXPORT_SYMBOL(q6asm_media_format_block_dsd);
  7106. /**
  7107. * q6asm_stream_media_format_block_aptx_dec -
  7108. * command to set mediafmt block for APTX dec on ASM stream
  7109. *
  7110. * @ac: Audio client handle
  7111. * @srate: sample rate
  7112. * @stream_id: stream ID info
  7113. *
  7114. * Returns 0 on success or error on failure
  7115. */
  7116. int q6asm_stream_media_format_block_aptx_dec(struct audio_client *ac,
  7117. uint32_t srate, int stream_id)
  7118. {
  7119. struct asm_aptx_dec_fmt_blk_v2 aptx_fmt;
  7120. int rc = 0;
  7121. if (!ac->session) {
  7122. pr_err("%s: ac session invalid\n", __func__);
  7123. rc = -EINVAL;
  7124. goto fail_cmd;
  7125. }
  7126. pr_debug("%s :session[%d] rate[%d] stream_id[%d]\n",
  7127. __func__, ac->session, srate, stream_id);
  7128. q6asm_stream_add_hdr(ac, &aptx_fmt.hdr, sizeof(aptx_fmt), TRUE,
  7129. stream_id);
  7130. atomic_set(&ac->cmd_state, -1);
  7131. aptx_fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  7132. aptx_fmt.fmtblk.fmt_blk_size = sizeof(aptx_fmt) - sizeof(aptx_fmt.hdr) -
  7133. sizeof(aptx_fmt.fmtblk);
  7134. aptx_fmt.sample_rate = srate;
  7135. rc = apr_send_pkt(ac->apr, (uint32_t *) &aptx_fmt);
  7136. if (rc < 0) {
  7137. pr_err("%s :Comamnd media format update failed %d\n",
  7138. __func__, rc);
  7139. goto fail_cmd;
  7140. }
  7141. rc = wait_event_timeout(ac->cmd_wait,
  7142. (atomic_read(&ac->cmd_state) >= 0),
  7143. msecs_to_jiffies(TIMEOUT_MS));
  7144. if (!rc) {
  7145. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  7146. rc = -ETIMEDOUT;
  7147. goto fail_cmd;
  7148. }
  7149. if (atomic_read(&ac->cmd_state) > 0) {
  7150. pr_err("%s: DSP returned error[%s]\n",
  7151. __func__, adsp_err_get_err_str(
  7152. atomic_read(&ac->cmd_state)));
  7153. rc = adsp_err_get_lnx_err_code(
  7154. atomic_read(&ac->cmd_state));
  7155. goto fail_cmd;
  7156. }
  7157. rc = 0;
  7158. fail_cmd:
  7159. return rc;
  7160. }
  7161. EXPORT_SYMBOL(q6asm_stream_media_format_block_aptx_dec);
  7162. static int __q6asm_ds1_set_endp_params(struct audio_client *ac, int param_id,
  7163. int param_value, int stream_id)
  7164. {
  7165. struct asm_dec_ddp_endp_param_v2 ddp_cfg;
  7166. int rc = 0;
  7167. pr_debug("%s: session[%d] stream[%d],param_id[%d]param_value[%d]",
  7168. __func__, ac->session, stream_id, param_id, param_value);
  7169. q6asm_stream_add_hdr(ac, &ddp_cfg.hdr, sizeof(ddp_cfg), TRUE,
  7170. stream_id);
  7171. atomic_set(&ac->cmd_state, -1);
  7172. /*
  7173. * Updated the token field with stream/session for compressed playback
  7174. * Platform driver must know the stream with which the command is
  7175. * associated
  7176. */
  7177. if (ac->io_mode & COMPRESSED_STREAM_IO)
  7178. q6asm_update_token(&ddp_cfg.hdr.token,
  7179. ac->session,
  7180. stream_id,
  7181. 0, /* Buffer index is NA */
  7182. 0, /* Direction flag is NA */
  7183. WAIT_CMD);
  7184. ddp_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  7185. ddp_cfg.encdec.param_id = param_id;
  7186. ddp_cfg.encdec.param_size = sizeof(struct asm_dec_ddp_endp_param_v2) -
  7187. (sizeof(struct apr_hdr) +
  7188. sizeof(struct asm_stream_cmd_set_encdec_param));
  7189. ddp_cfg.endp_param_value = param_value;
  7190. rc = apr_send_pkt(ac->apr, (uint32_t *) &ddp_cfg);
  7191. if (rc < 0) {
  7192. pr_err("%s: Command opcode[0x%x] failed %d\n",
  7193. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  7194. goto fail_cmd;
  7195. }
  7196. rc = wait_event_timeout(ac->cmd_wait,
  7197. (atomic_read(&ac->cmd_state) >= 0),
  7198. msecs_to_jiffies(TIMEOUT_MS));
  7199. if (!rc) {
  7200. pr_err("%s: timeout opcode[0x%x]\n", __func__,
  7201. ddp_cfg.hdr.opcode);
  7202. rc = -ETIMEDOUT;
  7203. goto fail_cmd;
  7204. }
  7205. if (atomic_read(&ac->cmd_state) > 0) {
  7206. pr_err("%s: DSP returned error[%s]\n",
  7207. __func__, adsp_err_get_err_str(
  7208. atomic_read(&ac->cmd_state)));
  7209. rc = adsp_err_get_lnx_err_code(
  7210. atomic_read(&ac->cmd_state));
  7211. goto fail_cmd;
  7212. }
  7213. return 0;
  7214. fail_cmd:
  7215. return rc;
  7216. }
  7217. /**
  7218. * q6asm_ds1_set_endp_params -
  7219. * command to set DS1 params for ASM
  7220. *
  7221. * @ac: Audio client handle
  7222. * @param_id: param id
  7223. * @param_value: value of param
  7224. *
  7225. * Returns 0 on success or error on failure
  7226. */
  7227. int q6asm_ds1_set_endp_params(struct audio_client *ac,
  7228. int param_id, int param_value)
  7229. {
  7230. return __q6asm_ds1_set_endp_params(ac, param_id, param_value,
  7231. ac->stream_id);
  7232. }
  7233. /**
  7234. * q6asm_ds1_set_stream_endp_params -
  7235. * command to set DS1 params for ASM stream
  7236. *
  7237. * @ac: Audio client handle
  7238. * @param_id: param id
  7239. * @param_value: value of param
  7240. * @stream_id: stream ID info
  7241. *
  7242. * Returns 0 on success or error on failure
  7243. */
  7244. int q6asm_ds1_set_stream_endp_params(struct audio_client *ac,
  7245. int param_id, int param_value,
  7246. int stream_id)
  7247. {
  7248. return __q6asm_ds1_set_endp_params(ac, param_id, param_value,
  7249. stream_id);
  7250. }
  7251. EXPORT_SYMBOL(q6asm_ds1_set_stream_endp_params);
  7252. /**
  7253. * q6asm_memory_map -
  7254. * command to send memory map for ASM
  7255. *
  7256. * @ac: Audio client handle
  7257. * @buf_add: buffer address to map
  7258. * @dir: RX or TX session
  7259. * @bufsz: size of each buffer
  7260. * @bufcnt: buffer count
  7261. *
  7262. * Returns 0 on success or error on failure
  7263. */
  7264. int q6asm_memory_map(struct audio_client *ac, phys_addr_t buf_add, int dir,
  7265. uint32_t bufsz, uint32_t bufcnt)
  7266. {
  7267. struct avs_cmd_shared_mem_map_regions *mmap_regions = NULL;
  7268. struct avs_shared_map_region_payload *mregions = NULL;
  7269. struct audio_port_data *port = NULL;
  7270. void *mmap_region_cmd = NULL;
  7271. void *payload = NULL;
  7272. struct asm_buffer_node *buffer_node = NULL;
  7273. int rc = 0;
  7274. int cmd_size = 0;
  7275. if (!ac) {
  7276. pr_err("%s: APR handle NULL\n", __func__);
  7277. return -EINVAL;
  7278. }
  7279. if (ac->mmap_apr == NULL) {
  7280. pr_err("%s: mmap APR handle NULL\n", __func__);
  7281. return -EINVAL;
  7282. }
  7283. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  7284. buffer_node = kmalloc(sizeof(struct asm_buffer_node), GFP_KERNEL);
  7285. if (!buffer_node)
  7286. return -ENOMEM;
  7287. cmd_size = sizeof(struct avs_cmd_shared_mem_map_regions)
  7288. + sizeof(struct avs_shared_map_region_payload) * bufcnt;
  7289. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  7290. if (mmap_region_cmd == NULL) {
  7291. rc = -EINVAL;
  7292. kfree(buffer_node);
  7293. return rc;
  7294. }
  7295. mmap_regions = (struct avs_cmd_shared_mem_map_regions *)
  7296. mmap_region_cmd;
  7297. q6asm_add_mmaphdr(ac, &mmap_regions->hdr, cmd_size, dir);
  7298. atomic_set(&ac->mem_state, -1);
  7299. mmap_regions->hdr.opcode = ASM_CMD_SHARED_MEM_MAP_REGIONS;
  7300. mmap_regions->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  7301. mmap_regions->num_regions = bufcnt & 0x00ff;
  7302. mmap_regions->property_flag = 0x00;
  7303. payload = ((u8 *) mmap_region_cmd +
  7304. sizeof(struct avs_cmd_shared_mem_map_regions));
  7305. mregions = (struct avs_shared_map_region_payload *)payload;
  7306. ac->port[dir].tmp_hdl = 0;
  7307. port = &ac->port[dir];
  7308. pr_debug("%s: buf_add 0x%pK, bufsz: %d\n", __func__,
  7309. &buf_add, bufsz);
  7310. mregions->shm_addr_lsw = lower_32_bits(buf_add);
  7311. mregions->shm_addr_msw = msm_audio_populate_upper_32_bits(buf_add);
  7312. mregions->mem_size_bytes = bufsz;
  7313. ++mregions;
  7314. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) mmap_region_cmd);
  7315. if (rc < 0) {
  7316. pr_err("%s: mmap op[0x%x]rc[%d]\n", __func__,
  7317. mmap_regions->hdr.opcode, rc);
  7318. rc = -EINVAL;
  7319. kfree(buffer_node);
  7320. goto fail_cmd;
  7321. }
  7322. rc = wait_event_timeout(ac->mem_wait,
  7323. (atomic_read(&ac->mem_state) >= 0 &&
  7324. ac->port[dir].tmp_hdl),
  7325. msecs_to_jiffies(TIMEOUT_MS));
  7326. if (!rc) {
  7327. pr_err("%s: timeout. waited for memory_map\n", __func__);
  7328. rc = -ETIMEDOUT;
  7329. kfree(buffer_node);
  7330. goto fail_cmd;
  7331. }
  7332. if (atomic_read(&ac->mem_state) > 0) {
  7333. pr_err("%s: DSP returned error[%s] for memory_map\n",
  7334. __func__, adsp_err_get_err_str(
  7335. atomic_read(&ac->mem_state)));
  7336. rc = adsp_err_get_lnx_err_code(
  7337. atomic_read(&ac->mem_state));
  7338. kfree(buffer_node);
  7339. goto fail_cmd;
  7340. }
  7341. buffer_node->buf_phys_addr = buf_add;
  7342. buffer_node->mmap_hdl = ac->port[dir].tmp_hdl;
  7343. list_add_tail(&buffer_node->list, &ac->port[dir].mem_map_handle);
  7344. ac->port[dir].tmp_hdl = 0;
  7345. rc = 0;
  7346. fail_cmd:
  7347. kfree(mmap_region_cmd);
  7348. return rc;
  7349. }
  7350. EXPORT_SYMBOL(q6asm_memory_map);
  7351. /**
  7352. * q6asm_memory_unmap -
  7353. * command to send memory unmap for ASM
  7354. *
  7355. * @ac: Audio client handle
  7356. * @buf_add: buffer address to unmap
  7357. * @dir: RX or TX session
  7358. *
  7359. * Returns 0 on success or error on failure
  7360. */
  7361. int q6asm_memory_unmap(struct audio_client *ac, phys_addr_t buf_add, int dir)
  7362. {
  7363. struct avs_cmd_shared_mem_unmap_regions mem_unmap;
  7364. struct asm_buffer_node *buf_node = NULL;
  7365. struct list_head *ptr, *next;
  7366. int rc = 0;
  7367. if (!ac) {
  7368. pr_err("%s: APR handle NULL\n", __func__);
  7369. return -EINVAL;
  7370. }
  7371. if (this_mmap.apr == NULL) {
  7372. pr_err("%s: APR handle NULL\n", __func__);
  7373. return -EINVAL;
  7374. }
  7375. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  7376. q6asm_add_mmaphdr(ac, &mem_unmap.hdr,
  7377. sizeof(struct avs_cmd_shared_mem_unmap_regions),
  7378. dir);
  7379. atomic_set(&ac->mem_state, -1);
  7380. mem_unmap.hdr.opcode = ASM_CMD_SHARED_MEM_UNMAP_REGIONS;
  7381. mem_unmap.mem_map_handle = 0;
  7382. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7383. buf_node = list_entry(ptr, struct asm_buffer_node,
  7384. list);
  7385. if (buf_node->buf_phys_addr == buf_add) {
  7386. pr_debug("%s: Found the element\n", __func__);
  7387. mem_unmap.mem_map_handle = buf_node->mmap_hdl;
  7388. break;
  7389. }
  7390. }
  7391. pr_debug("%s: mem_unmap-mem_map_handle: 0x%x\n",
  7392. __func__, mem_unmap.mem_map_handle);
  7393. if (mem_unmap.mem_map_handle == 0) {
  7394. pr_err("%s: Do not send null mem handle to DSP\n", __func__);
  7395. rc = 0;
  7396. goto fail_cmd;
  7397. }
  7398. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) &mem_unmap);
  7399. if (rc < 0) {
  7400. pr_err("%s: mem_unmap op[0x%x]rc[%d]\n", __func__,
  7401. mem_unmap.hdr.opcode, rc);
  7402. rc = -EINVAL;
  7403. goto fail_cmd;
  7404. }
  7405. rc = wait_event_timeout(ac->mem_wait,
  7406. (atomic_read(&ac->mem_state) >= 0),
  7407. msecs_to_jiffies(TIMEOUT_MS));
  7408. if (!rc) {
  7409. pr_err("%s: timeout. waited for memory_unmap of handle 0x%x\n",
  7410. __func__, mem_unmap.mem_map_handle);
  7411. rc = -ETIMEDOUT;
  7412. goto fail_cmd;
  7413. } else if (atomic_read(&ac->mem_state) > 0) {
  7414. pr_err("%s DSP returned error [%s] map handle 0x%x\n",
  7415. __func__, adsp_err_get_err_str(
  7416. atomic_read(&ac->mem_state)),
  7417. mem_unmap.mem_map_handle);
  7418. rc = adsp_err_get_lnx_err_code(
  7419. atomic_read(&ac->mem_state));
  7420. goto fail_cmd;
  7421. } else if (atomic_read(&ac->unmap_cb_success) == 0) {
  7422. pr_err("%s: Error in mem unmap callback of handle 0x%x\n",
  7423. __func__, mem_unmap.mem_map_handle);
  7424. rc = -EINVAL;
  7425. goto fail_cmd;
  7426. }
  7427. rc = 0;
  7428. fail_cmd:
  7429. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7430. buf_node = list_entry(ptr, struct asm_buffer_node,
  7431. list);
  7432. if (buf_node->buf_phys_addr == buf_add) {
  7433. list_del(&buf_node->list);
  7434. kfree(buf_node);
  7435. break;
  7436. }
  7437. }
  7438. return rc;
  7439. }
  7440. EXPORT_SYMBOL(q6asm_memory_unmap);
  7441. /**
  7442. * q6asm_memory_map_regions -
  7443. * command to send memory map regions for ASM
  7444. *
  7445. * @ac: Audio client handle
  7446. * @dir: RX or TX session
  7447. * @bufsz: size of each buffer
  7448. * @bufcnt: buffer count
  7449. * @is_contiguous: alloc contiguous mem or not
  7450. *
  7451. * Returns 0 on success or error on failure
  7452. */
  7453. static int q6asm_memory_map_regions(struct audio_client *ac, int dir,
  7454. uint32_t bufsz, uint32_t bufcnt,
  7455. bool is_contiguous)
  7456. {
  7457. struct avs_cmd_shared_mem_map_regions *mmap_regions = NULL;
  7458. struct avs_shared_map_region_payload *mregions = NULL;
  7459. struct audio_port_data *port = NULL;
  7460. struct audio_buffer *ab = NULL;
  7461. void *mmap_region_cmd = NULL;
  7462. void *payload = NULL;
  7463. struct asm_buffer_node *buffer_node = NULL;
  7464. int rc = 0;
  7465. int i = 0;
  7466. uint32_t cmd_size = 0;
  7467. uint32_t bufcnt_t;
  7468. uint32_t bufsz_t;
  7469. if (!ac) {
  7470. pr_err("%s: APR handle NULL\n", __func__);
  7471. return -EINVAL;
  7472. }
  7473. if (ac->mmap_apr == NULL) {
  7474. pr_err("%s: mmap APR handle NULL\n", __func__);
  7475. return -EINVAL;
  7476. }
  7477. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  7478. bufcnt_t = (is_contiguous) ? 1 : bufcnt;
  7479. bufsz_t = (is_contiguous) ? (bufsz * bufcnt) : bufsz;
  7480. if (is_contiguous) {
  7481. /* The size to memory map should be multiple of 4K bytes */
  7482. bufsz_t = PAGE_ALIGN(bufsz_t);
  7483. }
  7484. if (bufcnt_t > (UINT_MAX
  7485. - sizeof(struct avs_cmd_shared_mem_map_regions))
  7486. / sizeof(struct avs_shared_map_region_payload)) {
  7487. pr_err("%s: Unsigned Integer Overflow. bufcnt_t = %u\n",
  7488. __func__, bufcnt_t);
  7489. return -EINVAL;
  7490. }
  7491. cmd_size = sizeof(struct avs_cmd_shared_mem_map_regions)
  7492. + (sizeof(struct avs_shared_map_region_payload)
  7493. * bufcnt_t);
  7494. if (bufcnt > (UINT_MAX / sizeof(struct asm_buffer_node))) {
  7495. pr_err("%s: Unsigned Integer Overflow. bufcnt = %u\n",
  7496. __func__, bufcnt);
  7497. return -EINVAL;
  7498. }
  7499. buffer_node = kzalloc(sizeof(struct asm_buffer_node) * bufcnt,
  7500. GFP_KERNEL);
  7501. if (!buffer_node)
  7502. return -ENOMEM;
  7503. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  7504. if (mmap_region_cmd == NULL) {
  7505. rc = -EINVAL;
  7506. kfree(buffer_node);
  7507. return rc;
  7508. }
  7509. mmap_regions = (struct avs_cmd_shared_mem_map_regions *)
  7510. mmap_region_cmd;
  7511. q6asm_add_mmaphdr(ac, &mmap_regions->hdr, cmd_size, dir);
  7512. atomic_set(&ac->mem_state, -1);
  7513. pr_debug("%s: mmap_region=0x%pK token=0x%x\n", __func__,
  7514. mmap_regions, ((ac->session << 8) | dir));
  7515. mmap_regions->hdr.opcode = ASM_CMD_SHARED_MEM_MAP_REGIONS;
  7516. mmap_regions->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  7517. mmap_regions->num_regions = bufcnt_t; /*bufcnt & 0x00ff; */
  7518. mmap_regions->property_flag = 0x00;
  7519. pr_debug("%s: map_regions->nregions = %d\n", __func__,
  7520. mmap_regions->num_regions);
  7521. payload = ((u8 *) mmap_region_cmd +
  7522. sizeof(struct avs_cmd_shared_mem_map_regions));
  7523. mregions = (struct avs_shared_map_region_payload *)payload;
  7524. ac->port[dir].tmp_hdl = 0;
  7525. port = &ac->port[dir];
  7526. for (i = 0; i < bufcnt_t; i++) {
  7527. ab = &port->buf[i];
  7528. mregions->shm_addr_lsw = lower_32_bits(ab->phys);
  7529. mregions->shm_addr_msw =
  7530. msm_audio_populate_upper_32_bits(ab->phys);
  7531. mregions->mem_size_bytes = bufsz_t;
  7532. ++mregions;
  7533. }
  7534. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) mmap_region_cmd);
  7535. if (rc < 0) {
  7536. pr_err("%s: mmap_regions op[0x%x]rc[%d]\n", __func__,
  7537. mmap_regions->hdr.opcode, rc);
  7538. rc = -EINVAL;
  7539. kfree(buffer_node);
  7540. goto fail_cmd;
  7541. }
  7542. rc = wait_event_timeout(ac->mem_wait,
  7543. (atomic_read(&ac->mem_state) >= 0 &&
  7544. ac->port[dir].tmp_hdl),
  7545. msecs_to_jiffies(TIMEOUT_MS));
  7546. if (!rc) {
  7547. pr_err("%s: timeout. waited for memory_map\n", __func__);
  7548. rc = -ETIMEDOUT;
  7549. kfree(buffer_node);
  7550. goto fail_cmd;
  7551. }
  7552. if (atomic_read(&ac->mem_state) > 0) {
  7553. pr_err("%s DSP returned error for memory_map [%s]\n",
  7554. __func__, adsp_err_get_err_str(
  7555. atomic_read(&ac->mem_state)));
  7556. rc = adsp_err_get_lnx_err_code(
  7557. atomic_read(&ac->mem_state));
  7558. kfree(buffer_node);
  7559. goto fail_cmd;
  7560. }
  7561. mutex_lock(&ac->cmd_lock);
  7562. for (i = 0; i < bufcnt; i++) {
  7563. ab = &port->buf[i];
  7564. buffer_node[i].buf_phys_addr = ab->phys;
  7565. buffer_node[i].mmap_hdl = ac->port[dir].tmp_hdl;
  7566. list_add_tail(&buffer_node[i].list,
  7567. &ac->port[dir].mem_map_handle);
  7568. pr_debug("%s: i=%d, bufadd[i] = 0x%pK, maphdl[i] = 0x%x\n",
  7569. __func__, i, &buffer_node[i].buf_phys_addr,
  7570. buffer_node[i].mmap_hdl);
  7571. }
  7572. ac->port[dir].tmp_hdl = 0;
  7573. mutex_unlock(&ac->cmd_lock);
  7574. rc = 0;
  7575. fail_cmd:
  7576. kfree(mmap_region_cmd);
  7577. return rc;
  7578. }
  7579. EXPORT_SYMBOL(q6asm_memory_map_regions);
  7580. /**
  7581. * q6asm_memory_unmap_regions -
  7582. * command to send memory unmap regions for ASM
  7583. *
  7584. * @ac: Audio client handle
  7585. * @dir: RX or TX session
  7586. *
  7587. * Returns 0 on success or error on failure
  7588. */
  7589. static int q6asm_memory_unmap_regions(struct audio_client *ac, int dir)
  7590. {
  7591. struct avs_cmd_shared_mem_unmap_regions mem_unmap;
  7592. struct audio_port_data *port = NULL;
  7593. struct asm_buffer_node *buf_node = NULL;
  7594. struct list_head *ptr, *next;
  7595. phys_addr_t buf_add;
  7596. int rc = 0;
  7597. int cmd_size = 0;
  7598. if (!ac) {
  7599. pr_err("%s: APR handle NULL\n", __func__);
  7600. return -EINVAL;
  7601. }
  7602. if (ac->mmap_apr == NULL) {
  7603. pr_err("%s: mmap APR handle NULL\n", __func__);
  7604. return -EINVAL;
  7605. }
  7606. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  7607. cmd_size = sizeof(struct avs_cmd_shared_mem_unmap_regions);
  7608. q6asm_add_mmaphdr(ac, &mem_unmap.hdr, cmd_size, dir);
  7609. atomic_set(&ac->mem_state, -1);
  7610. port = &ac->port[dir];
  7611. buf_add = port->buf->phys;
  7612. mem_unmap.hdr.opcode = ASM_CMD_SHARED_MEM_UNMAP_REGIONS;
  7613. mem_unmap.mem_map_handle = 0;
  7614. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7615. buf_node = list_entry(ptr, struct asm_buffer_node,
  7616. list);
  7617. if (buf_node->buf_phys_addr == buf_add) {
  7618. pr_debug("%s: Found the element\n", __func__);
  7619. mem_unmap.mem_map_handle = buf_node->mmap_hdl;
  7620. break;
  7621. }
  7622. }
  7623. pr_debug("%s: mem_unmap-mem_map_handle: 0x%x\n",
  7624. __func__, mem_unmap.mem_map_handle);
  7625. if (mem_unmap.mem_map_handle == 0) {
  7626. pr_err("%s: Do not send null mem handle to DSP\n", __func__);
  7627. rc = 0;
  7628. goto fail_cmd;
  7629. }
  7630. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) &mem_unmap);
  7631. if (rc < 0) {
  7632. pr_err("mmap_regions op[0x%x]rc[%d]\n",
  7633. mem_unmap.hdr.opcode, rc);
  7634. goto fail_cmd;
  7635. }
  7636. rc = wait_event_timeout(ac->mem_wait,
  7637. (atomic_read(&ac->mem_state) >= 0),
  7638. msecs_to_jiffies(TIMEOUT_MS));
  7639. if (!rc) {
  7640. pr_err("%s: timeout. waited for memory_unmap of handle 0x%x\n",
  7641. __func__, mem_unmap.mem_map_handle);
  7642. rc = -ETIMEDOUT;
  7643. goto fail_cmd;
  7644. } else if (atomic_read(&ac->mem_state) > 0) {
  7645. pr_err("%s: DSP returned error[%s]\n",
  7646. __func__, adsp_err_get_err_str(
  7647. atomic_read(&ac->mem_state)));
  7648. rc = adsp_err_get_lnx_err_code(
  7649. atomic_read(&ac->mem_state));
  7650. goto fail_cmd;
  7651. } else if (atomic_read(&ac->unmap_cb_success) == 0) {
  7652. pr_err("%s: Error in mem unmap callback of handle 0x%x\n",
  7653. __func__, mem_unmap.mem_map_handle);
  7654. rc = -EINVAL;
  7655. goto fail_cmd;
  7656. }
  7657. rc = 0;
  7658. fail_cmd:
  7659. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7660. buf_node = list_entry(ptr, struct asm_buffer_node,
  7661. list);
  7662. if (buf_node->buf_phys_addr == buf_add) {
  7663. list_del(&buf_node->list);
  7664. kfree(buf_node);
  7665. break;
  7666. }
  7667. }
  7668. return rc;
  7669. }
  7670. EXPORT_SYMBOL(q6asm_memory_unmap_regions);
  7671. int q6asm_set_lrgain(struct audio_client *ac, int left_gain, int right_gain)
  7672. {
  7673. struct asm_volume_ctrl_multichannel_gain multi_ch_gain;
  7674. struct param_hdr_v3 param_info;
  7675. int rc = 0;
  7676. memset(&param_info, 0, sizeof(param_info));
  7677. memset(&multi_ch_gain, 0, sizeof(multi_ch_gain));
  7678. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  7679. param_info.instance_id = INSTANCE_ID_0;
  7680. param_info.param_id = ASM_PARAM_ID_MULTICHANNEL_GAIN;
  7681. param_info.param_size = sizeof(multi_ch_gain);
  7682. multi_ch_gain.gain_data[0].channeltype = PCM_CHANNEL_FL;
  7683. multi_ch_gain.gain_data[0].gain = left_gain << 15;
  7684. multi_ch_gain.gain_data[1].channeltype = PCM_CHANNEL_FR;
  7685. multi_ch_gain.gain_data[1].gain = right_gain << 15;
  7686. multi_ch_gain.num_channels = 2;
  7687. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  7688. (u8 *) &multi_ch_gain);
  7689. if (rc < 0)
  7690. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7691. __func__, param_info.param_id, rc);
  7692. return rc;
  7693. }
  7694. /*
  7695. * q6asm_set_multich_gain: set multiple channel gains on an ASM session
  7696. * @ac: audio client handle
  7697. * @channels: number of channels caller intends to set gains
  7698. * @gains: list of gains of audio channels
  7699. * @ch_map: list of channel mapping. Only valid if use_default is false
  7700. * @use_default: flag to indicate whether to use default mapping
  7701. */
  7702. int q6asm_set_multich_gain(struct audio_client *ac, uint32_t channels,
  7703. uint32_t *gains, uint8_t *ch_map, bool use_default)
  7704. {
  7705. struct asm_volume_ctrl_multichannel_gain multich_gain;
  7706. struct param_hdr_v3 param_info;
  7707. int rc = 0;
  7708. int i;
  7709. u8 default_chmap[VOLUME_CONTROL_MAX_CHANNELS];
  7710. if (ac == NULL) {
  7711. pr_err("%s: Audio client is NULL\n", __func__);
  7712. return -EINVAL;
  7713. }
  7714. if (gains == NULL) {
  7715. dev_err(ac->dev, "%s: gain_list is NULL\n", __func__);
  7716. rc = -EINVAL;
  7717. goto done;
  7718. }
  7719. if (channels > VOLUME_CONTROL_MAX_CHANNELS) {
  7720. dev_err(ac->dev, "%s: Invalid channel count %d\n",
  7721. __func__, channels);
  7722. rc = -EINVAL;
  7723. goto done;
  7724. }
  7725. if (!use_default && ch_map == NULL) {
  7726. dev_err(ac->dev, "%s: NULL channel map\n", __func__);
  7727. rc = -EINVAL;
  7728. goto done;
  7729. }
  7730. memset(&param_info, 0, sizeof(param_info));
  7731. memset(&multich_gain, 0, sizeof(multich_gain));
  7732. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  7733. param_info.instance_id = INSTANCE_ID_0;
  7734. param_info.param_id = ASM_PARAM_ID_MULTICHANNEL_GAIN;
  7735. param_info.param_size = sizeof(multich_gain);
  7736. if (use_default) {
  7737. rc = q6asm_map_channels(default_chmap, channels, false);
  7738. if (rc < 0)
  7739. goto done;
  7740. for (i = 0; i < channels; i++) {
  7741. multich_gain.gain_data[i].channeltype =
  7742. default_chmap[i];
  7743. multich_gain.gain_data[i].gain = gains[i] << 15;
  7744. }
  7745. } else {
  7746. for (i = 0; i < channels; i++) {
  7747. multich_gain.gain_data[i].channeltype = ch_map[i];
  7748. multich_gain.gain_data[i].gain = gains[i] << 15;
  7749. }
  7750. }
  7751. multich_gain.num_channels = channels;
  7752. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  7753. (u8 *) &multich_gain);
  7754. if (rc)
  7755. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7756. __func__, param_info.param_id, rc);
  7757. done:
  7758. return rc;
  7759. }
  7760. EXPORT_SYMBOL(q6asm_set_multich_gain);
  7761. /**
  7762. * q6asm_set_mute -
  7763. * command to set mute for ASM
  7764. *
  7765. * @ac: Audio client handle
  7766. * @muteflag: mute value
  7767. *
  7768. * Returns 0 on success or error on failure
  7769. */
  7770. int q6asm_set_mute(struct audio_client *ac, int muteflag)
  7771. {
  7772. struct asm_volume_ctrl_mute_config mute;
  7773. struct param_hdr_v3 param_info;
  7774. int rc = 0;
  7775. memset(&mute, 0, sizeof(mute));
  7776. memset(&param_info, 0, sizeof(param_info));
  7777. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  7778. param_info.instance_id = INSTANCE_ID_0;
  7779. param_info.param_id = ASM_PARAM_ID_VOL_CTRL_MUTE_CONFIG;
  7780. param_info.param_size = sizeof(mute);
  7781. mute.mute_flag = muteflag;
  7782. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info, (u8 *) &mute);
  7783. if (rc)
  7784. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7785. __func__, param_info.param_id, rc);
  7786. return rc;
  7787. }
  7788. EXPORT_SYMBOL(q6asm_set_mute);
  7789. static int __q6asm_set_volume(struct audio_client *ac, int volume, int instance)
  7790. {
  7791. struct asm_volume_ctrl_master_gain vol;
  7792. struct param_hdr_v3 param_info;
  7793. int rc = 0;
  7794. memset(&vol, 0, sizeof(vol));
  7795. memset(&param_info, 0, sizeof(param_info));
  7796. rc = q6asm_set_soft_volume_module_instance_ids(instance, &param_info);
  7797. if (rc) {
  7798. pr_err("%s: Failed to pack soft volume module and instance IDs, error %d\n",
  7799. __func__, rc);
  7800. return rc;
  7801. }
  7802. param_info.param_id = ASM_PARAM_ID_VOL_CTRL_MASTER_GAIN;
  7803. param_info.param_size = sizeof(vol);
  7804. vol.master_gain = volume;
  7805. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info, (u8 *) &vol);
  7806. if (rc)
  7807. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7808. __func__, param_info.param_id, rc);
  7809. return rc;
  7810. }
  7811. /**
  7812. * q6asm_set_volume -
  7813. * command to set volume for ASM
  7814. *
  7815. * @ac: Audio client handle
  7816. * @volume: volume level
  7817. *
  7818. * Returns 0 on success or error on failure
  7819. */
  7820. int q6asm_set_volume(struct audio_client *ac, int volume)
  7821. {
  7822. return __q6asm_set_volume(ac, volume, SOFT_VOLUME_INSTANCE_1);
  7823. }
  7824. EXPORT_SYMBOL(q6asm_set_volume);
  7825. int q6asm_set_volume_v2(struct audio_client *ac, int volume, int instance)
  7826. {
  7827. return __q6asm_set_volume(ac, volume, instance);
  7828. }
  7829. /**
  7830. * q6asm_set_aptx_dec_bt_addr -
  7831. * command to aptx decoder BT addr for ASM
  7832. *
  7833. * @ac: Audio client handle
  7834. * @cfg: APTX decoder bt addr config
  7835. *
  7836. * Returns 0 on success or error on failure
  7837. */
  7838. int q6asm_set_aptx_dec_bt_addr(struct audio_client *ac,
  7839. struct aptx_dec_bt_addr_cfg *cfg)
  7840. {
  7841. struct aptx_dec_bt_dev_addr paylod;
  7842. int sz = 0;
  7843. int rc = 0;
  7844. pr_debug("%s: BT addr nap %d, uap %d, lap %d\n", __func__, cfg->nap,
  7845. cfg->uap, cfg->lap);
  7846. if (ac == NULL) {
  7847. pr_err("%s: AC handle NULL\n", __func__);
  7848. rc = -EINVAL;
  7849. goto fail_cmd;
  7850. }
  7851. if (ac->apr == NULL) {
  7852. pr_err("%s: AC APR handle NULL\n", __func__);
  7853. rc = -EINVAL;
  7854. goto fail_cmd;
  7855. }
  7856. sz = sizeof(struct aptx_dec_bt_dev_addr);
  7857. q6asm_add_hdr_async(ac, &paylod.hdr, sz, TRUE);
  7858. atomic_set(&ac->cmd_state, -1);
  7859. paylod.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  7860. paylod.encdec.param_id = APTX_DECODER_BT_ADDRESS;
  7861. paylod.encdec.param_size = sz - sizeof(paylod.hdr)
  7862. - sizeof(paylod.encdec);
  7863. paylod.bt_addr_cfg.lap = cfg->lap;
  7864. paylod.bt_addr_cfg.uap = cfg->uap;
  7865. paylod.bt_addr_cfg.nap = cfg->nap;
  7866. rc = apr_send_pkt(ac->apr, (uint32_t *) &paylod);
  7867. if (rc < 0) {
  7868. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7869. __func__, paylod.encdec.param_id, rc);
  7870. rc = -EINVAL;
  7871. goto fail_cmd;
  7872. }
  7873. rc = wait_event_timeout(ac->cmd_wait,
  7874. (atomic_read(&ac->cmd_state) >= 0),
  7875. msecs_to_jiffies(TIMEOUT_MS));
  7876. if (!rc) {
  7877. pr_err("%s: timeout, set-params paramid[0x%x]\n", __func__,
  7878. paylod.encdec.param_id);
  7879. rc = -ETIMEDOUT;
  7880. goto fail_cmd;
  7881. }
  7882. if (atomic_read(&ac->cmd_state) > 0) {
  7883. pr_err("%s: DSP returned error[%s] set-params paramid[0x%x]\n",
  7884. __func__, adsp_err_get_err_str(
  7885. atomic_read(&ac->cmd_state)),
  7886. paylod.encdec.param_id);
  7887. rc = adsp_err_get_lnx_err_code(
  7888. atomic_read(&ac->cmd_state));
  7889. goto fail_cmd;
  7890. }
  7891. pr_debug("%s: set BT addr is success\n", __func__);
  7892. rc = 0;
  7893. fail_cmd:
  7894. return rc;
  7895. }
  7896. EXPORT_SYMBOL(q6asm_set_aptx_dec_bt_addr);
  7897. /**
  7898. * q6asm_send_ion_fd -
  7899. * command to send ION memory map for ASM
  7900. *
  7901. * @ac: Audio client handle
  7902. * @fd: ION file desc
  7903. *
  7904. * Returns 0 on success or error on failure
  7905. */
  7906. int q6asm_send_ion_fd(struct audio_client *ac, int fd)
  7907. {
  7908. struct dma_buf *dma_buf;
  7909. dma_addr_t paddr;
  7910. size_t pa_len = 0;
  7911. void *vaddr;
  7912. int ret;
  7913. int sz = 0;
  7914. struct avs_rtic_shared_mem_addr shm;
  7915. if (ac == NULL) {
  7916. pr_err("%s: APR handle NULL\n", __func__);
  7917. ret = -EINVAL;
  7918. goto fail_cmd;
  7919. }
  7920. if (ac->apr == NULL) {
  7921. pr_err("%s: AC APR handle NULL\n", __func__);
  7922. ret = -EINVAL;
  7923. goto fail_cmd;
  7924. }
  7925. ret = msm_audio_ion_import(&dma_buf,
  7926. fd,
  7927. NULL,
  7928. 0,
  7929. &paddr,
  7930. &pa_len,
  7931. &vaddr);
  7932. if (ret) {
  7933. pr_err("%s: audio ION import failed, rc = %d\n",
  7934. __func__, ret);
  7935. ret = -ENOMEM;
  7936. goto fail_cmd;
  7937. }
  7938. /* get payload length */
  7939. sz = sizeof(struct avs_rtic_shared_mem_addr);
  7940. q6asm_add_hdr_async(ac, &shm.hdr, sz, TRUE);
  7941. atomic_set(&ac->cmd_state, -1);
  7942. shm.shm_buf_addr_lsw = lower_32_bits(paddr);
  7943. shm.shm_buf_addr_msw = msm_audio_populate_upper_32_bits(paddr);
  7944. shm.buf_size = pa_len;
  7945. shm.shm_buf_num_regions = 1;
  7946. shm.shm_buf_mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  7947. shm.shm_buf_flag = 0x00;
  7948. shm.encdec.param_id = AVS_PARAM_ID_RTIC_SHARED_MEMORY_ADDR;
  7949. shm.encdec.param_size = sizeof(struct avs_rtic_shared_mem_addr) -
  7950. sizeof(struct apr_hdr) -
  7951. sizeof(struct asm_stream_cmd_set_encdec_param_v2);
  7952. shm.encdec.service_id = OUT;
  7953. shm.encdec.reserved = 0;
  7954. shm.map_region.shm_addr_lsw = shm.shm_buf_addr_lsw;
  7955. shm.map_region.shm_addr_msw = shm.shm_buf_addr_msw;
  7956. shm.map_region.mem_size_bytes = pa_len;
  7957. shm.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM_V2;
  7958. ret = apr_send_pkt(ac->apr, (uint32_t *) &shm);
  7959. if (ret < 0) {
  7960. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7961. __func__, shm.encdec.param_id, ret);
  7962. ret = -EINVAL;
  7963. goto fail_cmd;
  7964. }
  7965. ret = wait_event_timeout(ac->cmd_wait,
  7966. (atomic_read(&ac->cmd_state) >= 0),
  7967. msecs_to_jiffies(TIMEOUT_MS));
  7968. if (!ret) {
  7969. pr_err("%s: timeout, shm.encdec paramid[0x%x]\n", __func__,
  7970. shm.encdec.param_id);
  7971. ret = -ETIMEDOUT;
  7972. goto fail_cmd;
  7973. }
  7974. if (atomic_read(&ac->cmd_state) > 0) {
  7975. pr_err("%s: DSP returned error[%s] shm.encdec paramid[0x%x]\n",
  7976. __func__,
  7977. adsp_err_get_err_str(atomic_read(&ac->cmd_state)),
  7978. shm.encdec.param_id);
  7979. ret = adsp_err_get_lnx_err_code(atomic_read(&ac->cmd_state));
  7980. goto fail_cmd;
  7981. }
  7982. ret = 0;
  7983. fail_cmd:
  7984. return ret;
  7985. }
  7986. EXPORT_SYMBOL(q6asm_send_ion_fd);
  7987. /**
  7988. * q6asm_send_rtic_event_ack -
  7989. * command to send RTIC event ack
  7990. *
  7991. * @ac: Audio client handle
  7992. * @param: params for event ack
  7993. * @params_length: length of params
  7994. *
  7995. * Returns 0 on success or error on failure
  7996. */
  7997. int q6asm_send_rtic_event_ack(struct audio_client *ac,
  7998. void *param, uint32_t params_length)
  7999. {
  8000. char *asm_params = NULL;
  8001. int sz, rc;
  8002. struct avs_param_rtic_event_ack ack;
  8003. if (!param || !ac) {
  8004. pr_err("%s: %s is NULL\n", __func__,
  8005. (!param) ? "param" : "ac");
  8006. rc = -EINVAL;
  8007. goto done;
  8008. }
  8009. sz = sizeof(struct avs_param_rtic_event_ack) + params_length;
  8010. asm_params = kzalloc(sz, GFP_KERNEL);
  8011. if (!asm_params) {
  8012. rc = -ENOMEM;
  8013. goto done;
  8014. }
  8015. q6asm_add_hdr_async(ac, &ack.hdr,
  8016. sizeof(struct avs_param_rtic_event_ack) +
  8017. params_length, TRUE);
  8018. atomic_set(&ac->cmd_state, -1);
  8019. ack.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM_V2;
  8020. ack.encdec.param_id = AVS_PARAM_ID_RTIC_EVENT_ACK;
  8021. ack.encdec.param_size = params_length;
  8022. ack.encdec.reserved = 0;
  8023. ack.encdec.service_id = OUT;
  8024. memcpy(asm_params, &ack, sizeof(struct avs_param_rtic_event_ack));
  8025. memcpy(asm_params + sizeof(struct avs_param_rtic_event_ack),
  8026. param, params_length);
  8027. rc = apr_send_pkt(ac->apr, (uint32_t *) asm_params);
  8028. if (rc < 0) {
  8029. pr_err("%s: apr pkt failed for rtic event ack\n", __func__);
  8030. rc = -EINVAL;
  8031. goto fail_send_param;
  8032. }
  8033. rc = wait_event_timeout(ac->cmd_wait,
  8034. (atomic_read(&ac->cmd_state) >= 0),
  8035. msecs_to_jiffies(TIMEOUT_MS));
  8036. if (!rc) {
  8037. pr_err("%s: timeout for rtic event ack cmd\n", __func__);
  8038. rc = -ETIMEDOUT;
  8039. goto fail_send_param;
  8040. }
  8041. if (atomic_read(&ac->cmd_state) > 0) {
  8042. pr_err("%s: DSP returned error[%s] for rtic event ack cmd\n",
  8043. __func__, adsp_err_get_err_str(
  8044. atomic_read(&ac->cmd_state)));
  8045. rc = adsp_err_get_lnx_err_code(
  8046. atomic_read(&ac->cmd_state));
  8047. goto fail_send_param;
  8048. }
  8049. rc = 0;
  8050. fail_send_param:
  8051. kfree(asm_params);
  8052. done:
  8053. return rc;
  8054. }
  8055. EXPORT_SYMBOL(q6asm_send_rtic_event_ack);
  8056. /**
  8057. * q6asm_set_softpause -
  8058. * command to set pause for ASM
  8059. *
  8060. * @ac: Audio client handle
  8061. * @pause_param: params for pause
  8062. *
  8063. * Returns 0 on success or error on failure
  8064. */
  8065. int q6asm_set_softpause(struct audio_client *ac,
  8066. struct asm_softpause_params *pause_param)
  8067. {
  8068. struct asm_soft_pause_params softpause;
  8069. struct param_hdr_v3 param_info;
  8070. int rc = 0;
  8071. memset(&softpause, 0, sizeof(softpause));
  8072. memset(&param_info, 0, sizeof(param_info));
  8073. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  8074. param_info.instance_id = INSTANCE_ID_0;
  8075. param_info.param_id = ASM_PARAM_ID_SOFT_PAUSE_PARAMETERS;
  8076. param_info.param_size = sizeof(softpause);
  8077. softpause.enable_flag = pause_param->enable;
  8078. softpause.period = pause_param->period;
  8079. softpause.step = pause_param->step;
  8080. softpause.ramping_curve = pause_param->rampingcurve;
  8081. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  8082. (u8 *) &softpause);
  8083. if (rc)
  8084. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  8085. __func__, param_info.param_id, rc);
  8086. return rc;
  8087. }
  8088. EXPORT_SYMBOL(q6asm_set_softpause);
  8089. static int __q6asm_set_softvolume(struct audio_client *ac,
  8090. struct asm_softvolume_params *softvol_param,
  8091. int instance)
  8092. {
  8093. struct asm_soft_step_volume_params softvol;
  8094. struct param_hdr_v3 param_info;
  8095. int rc = 0;
  8096. memset(&softvol, 0, sizeof(softvol));
  8097. memset(&param_info, 0, sizeof(param_info));
  8098. rc = q6asm_set_soft_volume_module_instance_ids(instance, &param_info);
  8099. if (rc) {
  8100. pr_err("%s: Failed to pack soft volume module and instance IDs, error %d\n",
  8101. __func__, rc);
  8102. return rc;
  8103. }
  8104. param_info.param_id = ASM_PARAM_ID_SOFT_VOL_STEPPING_PARAMETERS;
  8105. param_info.param_size = sizeof(softvol);
  8106. softvol.period = softvol_param->period;
  8107. softvol.step = softvol_param->step;
  8108. softvol.ramping_curve = softvol_param->rampingcurve;
  8109. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  8110. (u8 *) &softvol);
  8111. if (rc)
  8112. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  8113. __func__, param_info.param_id, rc);
  8114. return rc;
  8115. }
  8116. /**
  8117. * q6asm_set_softvolume -
  8118. * command to set softvolume for ASM
  8119. *
  8120. * @ac: Audio client handle
  8121. * @softvol_param: params for softvol
  8122. *
  8123. * Returns 0 on success or error on failure
  8124. */
  8125. int q6asm_set_softvolume(struct audio_client *ac,
  8126. struct asm_softvolume_params *softvol_param)
  8127. {
  8128. return __q6asm_set_softvolume(ac, softvol_param,
  8129. SOFT_VOLUME_INSTANCE_1);
  8130. }
  8131. EXPORT_SYMBOL(q6asm_set_softvolume);
  8132. /**
  8133. * q6asm_set_softvolume_v2 -
  8134. * command to set softvolume V2 for ASM
  8135. *
  8136. * @ac: Audio client handle
  8137. * @softvol_param: params for softvol
  8138. * @instance: instance to apply softvol
  8139. *
  8140. * Returns 0 on success or error on failure
  8141. */
  8142. int q6asm_set_softvolume_v2(struct audio_client *ac,
  8143. struct asm_softvolume_params *softvol_param,
  8144. int instance)
  8145. {
  8146. return __q6asm_set_softvolume(ac, softvol_param, instance);
  8147. }
  8148. EXPORT_SYMBOL(q6asm_set_softvolume_v2);
  8149. /**
  8150. * q6asm_equalizer -
  8151. * command to set equalizer for ASM
  8152. *
  8153. * @ac: Audio client handle
  8154. * @eq_p: Equalizer params
  8155. *
  8156. * Returns 0 on success or error on failure
  8157. */
  8158. int q6asm_equalizer(struct audio_client *ac, void *eq_p)
  8159. {
  8160. struct asm_eq_params eq;
  8161. struct msm_audio_eq_stream_config *eq_params = NULL;
  8162. struct param_hdr_v3 param_info;
  8163. int i = 0;
  8164. int rc = 0;
  8165. if (ac == NULL) {
  8166. pr_err("%s: Audio client is NULL\n", __func__);
  8167. return -EINVAL;
  8168. }
  8169. if (eq_p == NULL) {
  8170. pr_err("%s: [%d]: Invalid Eq param\n", __func__, ac->session);
  8171. rc = -EINVAL;
  8172. goto fail_cmd;
  8173. }
  8174. memset(&eq, 0, sizeof(eq));
  8175. memset(&param_info, 0, sizeof(param_info));
  8176. eq_params = (struct msm_audio_eq_stream_config *) eq_p;
  8177. param_info.module_id = ASM_MODULE_ID_EQUALIZER;
  8178. param_info.instance_id = INSTANCE_ID_0;
  8179. param_info.param_id = ASM_PARAM_ID_EQUALIZER_PARAMETERS;
  8180. param_info.param_size = sizeof(eq);
  8181. eq.enable_flag = eq_params->enable;
  8182. eq.num_bands = eq_params->num_bands;
  8183. pr_debug("%s: enable:%d numbands:%d\n", __func__, eq_params->enable,
  8184. eq_params->num_bands);
  8185. for (i = 0; i < eq_params->num_bands; i++) {
  8186. eq.eq_bands[i].band_idx =
  8187. eq_params->eq_bands[i].band_idx;
  8188. eq.eq_bands[i].filterype =
  8189. eq_params->eq_bands[i].filter_type;
  8190. eq.eq_bands[i].center_freq_hz =
  8191. eq_params->eq_bands[i].center_freq_hz;
  8192. eq.eq_bands[i].filter_gain =
  8193. eq_params->eq_bands[i].filter_gain;
  8194. eq.eq_bands[i].q_factor =
  8195. eq_params->eq_bands[i].q_factor;
  8196. pr_debug("%s: filter_type:%u bandnum:%d\n", __func__,
  8197. eq_params->eq_bands[i].filter_type, i);
  8198. pr_debug("%s: center_freq_hz:%u bandnum:%d\n", __func__,
  8199. eq_params->eq_bands[i].center_freq_hz, i);
  8200. pr_debug("%s: filter_gain:%d bandnum:%d\n", __func__,
  8201. eq_params->eq_bands[i].filter_gain, i);
  8202. pr_debug("%s: q_factor:%d bandnum:%d\n", __func__,
  8203. eq_params->eq_bands[i].q_factor, i);
  8204. }
  8205. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info, (u8 *) &eq);
  8206. if (rc)
  8207. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  8208. __func__, param_info.param_id, rc);
  8209. fail_cmd:
  8210. return rc;
  8211. }
  8212. EXPORT_SYMBOL(q6asm_equalizer);
  8213. static int __q6asm_read(struct audio_client *ac, bool is_custom_len_reqd,
  8214. int len)
  8215. {
  8216. struct asm_data_cmd_read_v2 read;
  8217. struct asm_buffer_node *buf_node = NULL;
  8218. struct list_head *ptr, *next;
  8219. struct audio_buffer *ab;
  8220. int dsp_buf;
  8221. struct audio_port_data *port;
  8222. int rc;
  8223. if (ac == NULL) {
  8224. pr_err("%s: APR handle NULL\n", __func__);
  8225. return -EINVAL;
  8226. }
  8227. if (ac->apr == NULL) {
  8228. pr_err("%s: AC APR handle NULL\n", __func__);
  8229. return -EINVAL;
  8230. }
  8231. if (ac->io_mode & SYNC_IO_MODE) {
  8232. port = &ac->port[OUT];
  8233. q6asm_add_hdr(ac, &read.hdr, sizeof(read), FALSE);
  8234. mutex_lock(&port->lock);
  8235. dsp_buf = port->dsp_buf;
  8236. if (port->buf == NULL) {
  8237. pr_err("%s: buf is NULL\n", __func__);
  8238. mutex_unlock(&port->lock);
  8239. return -EINVAL;
  8240. }
  8241. ab = &port->buf[dsp_buf];
  8242. dev_vdbg(ac->dev, "%s: session[%d]dsp-buf[%d][%pK]cpu_buf[%d][%pK]\n",
  8243. __func__,
  8244. ac->session,
  8245. dsp_buf,
  8246. port->buf[dsp_buf].data,
  8247. port->cpu_buf,
  8248. &port->buf[port->cpu_buf].phys);
  8249. read.hdr.opcode = ASM_DATA_CMD_READ_V2;
  8250. read.buf_addr_lsw = lower_32_bits(ab->phys);
  8251. read.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  8252. list_for_each_safe(ptr, next, &ac->port[OUT].mem_map_handle) {
  8253. buf_node = list_entry(ptr, struct asm_buffer_node,
  8254. list);
  8255. if (buf_node->buf_phys_addr == ab->phys) {
  8256. read.mem_map_handle = buf_node->mmap_hdl;
  8257. break;
  8258. }
  8259. }
  8260. dev_vdbg(ac->dev, "memory_map handle in q6asm_read: [%0x]:",
  8261. read.mem_map_handle);
  8262. read.buf_size = is_custom_len_reqd ? len : ab->size;
  8263. read.seq_id = port->dsp_buf;
  8264. q6asm_update_token(&read.hdr.token,
  8265. 0, /* Session ID is NA */
  8266. 0, /* Stream ID is NA */
  8267. port->dsp_buf,
  8268. 0, /* Direction flag is NA */
  8269. WAIT_CMD);
  8270. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  8271. port->max_buf_cnt);
  8272. mutex_unlock(&port->lock);
  8273. dev_vdbg(ac->dev, "%s: buf add[%pK] token[0x%x] uid[%d]\n",
  8274. __func__, &ab->phys, read.hdr.token,
  8275. read.seq_id);
  8276. rc = apr_send_pkt(ac->apr, (uint32_t *) &read);
  8277. if (rc < 0) {
  8278. pr_err("%s: read op[0x%x]rc[%d]\n",
  8279. __func__, read.hdr.opcode, rc);
  8280. goto fail_cmd;
  8281. }
  8282. return 0;
  8283. }
  8284. fail_cmd:
  8285. return -EINVAL;
  8286. }
  8287. /**
  8288. * q6asm_read -
  8289. * command to read buffer data from DSP
  8290. *
  8291. * @ac: Audio client handle
  8292. *
  8293. * Returns 0 on success or error on failure
  8294. */
  8295. int q6asm_read(struct audio_client *ac)
  8296. {
  8297. return __q6asm_read(ac, false/*is_custom_len_reqd*/, 0);
  8298. }
  8299. EXPORT_SYMBOL(q6asm_read);
  8300. /**
  8301. * q6asm_read_v2 -
  8302. * command to read buffer data from DSP
  8303. *
  8304. * @ac: Audio client handle
  8305. * @len: buffer size to read
  8306. *
  8307. * Returns 0 on success or error on failure
  8308. */
  8309. int q6asm_read_v2(struct audio_client *ac, uint32_t len)
  8310. {
  8311. return __q6asm_read(ac, true /*is_custom_len_reqd*/, len);
  8312. }
  8313. EXPORT_SYMBOL(q6asm_read_v2);
  8314. /**
  8315. * q6asm_read_nolock -
  8316. * command to read buffer data from DSP
  8317. * with no wait for ack.
  8318. *
  8319. * @ac: Audio client handle
  8320. *
  8321. * Returns 0 on success or error on failure
  8322. */
  8323. int q6asm_read_nolock(struct audio_client *ac)
  8324. {
  8325. struct asm_data_cmd_read_v2 read;
  8326. struct asm_buffer_node *buf_node = NULL;
  8327. struct list_head *ptr, *next;
  8328. struct audio_buffer *ab;
  8329. int dsp_buf;
  8330. struct audio_port_data *port;
  8331. int rc;
  8332. if (ac == NULL) {
  8333. pr_err("%s: APR handle NULL\n", __func__);
  8334. return -EINVAL;
  8335. }
  8336. if (ac->apr == NULL) {
  8337. pr_err("%s: AC APR handle NULL\n", __func__);
  8338. return -EINVAL;
  8339. }
  8340. if (ac->io_mode & SYNC_IO_MODE) {
  8341. port = &ac->port[OUT];
  8342. q6asm_add_hdr_async(ac, &read.hdr, sizeof(read), FALSE);
  8343. dsp_buf = port->dsp_buf;
  8344. ab = &port->buf[dsp_buf];
  8345. dev_vdbg(ac->dev, "%s: session[%d]dsp-buf[%d][%pK]cpu_buf[%d][%pK]\n",
  8346. __func__,
  8347. ac->session,
  8348. dsp_buf,
  8349. port->buf[dsp_buf].data,
  8350. port->cpu_buf,
  8351. &port->buf[port->cpu_buf].phys);
  8352. read.hdr.opcode = ASM_DATA_CMD_READ_V2;
  8353. read.buf_addr_lsw = lower_32_bits(ab->phys);
  8354. read.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  8355. read.buf_size = ab->size;
  8356. read.seq_id = port->dsp_buf;
  8357. q6asm_update_token(&read.hdr.token,
  8358. 0, /* Session ID is NA */
  8359. 0, /* Stream ID is NA */
  8360. port->dsp_buf,
  8361. 0, /* Direction flag is NA */
  8362. WAIT_CMD);
  8363. list_for_each_safe(ptr, next, &ac->port[OUT].mem_map_handle) {
  8364. buf_node = list_entry(ptr, struct asm_buffer_node,
  8365. list);
  8366. if (buf_node->buf_phys_addr == ab->phys) {
  8367. read.mem_map_handle = buf_node->mmap_hdl;
  8368. break;
  8369. }
  8370. }
  8371. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  8372. port->max_buf_cnt);
  8373. dev_vdbg(ac->dev, "%s: buf add[%pK] token[0x%x] uid[%d]\n",
  8374. __func__, &ab->phys, read.hdr.token,
  8375. read.seq_id);
  8376. rc = apr_send_pkt(ac->apr, (uint32_t *) &read);
  8377. if (rc < 0) {
  8378. pr_err("%s: read op[0x%x]rc[%d]\n",
  8379. __func__, read.hdr.opcode, rc);
  8380. goto fail_cmd;
  8381. }
  8382. return 0;
  8383. }
  8384. fail_cmd:
  8385. return -EINVAL;
  8386. }
  8387. EXPORT_SYMBOL(q6asm_read_nolock);
  8388. /**
  8389. * q6asm_async_write -
  8390. * command to write DSP buffer
  8391. *
  8392. * @ac: Audio client handle
  8393. * @param: params for async write
  8394. *
  8395. * Returns 0 on success or error on failure
  8396. */
  8397. int q6asm_async_write(struct audio_client *ac,
  8398. struct audio_aio_write_param *param)
  8399. {
  8400. int rc = 0;
  8401. struct asm_data_cmd_write_v2 write;
  8402. struct asm_buffer_node *buf_node = NULL;
  8403. struct list_head *ptr, *next;
  8404. struct audio_buffer *ab;
  8405. struct audio_port_data *port;
  8406. phys_addr_t lbuf_phys_addr;
  8407. u32 liomode;
  8408. u32 io_compressed;
  8409. u32 io_compressed_stream;
  8410. if (ac == NULL) {
  8411. pr_err("%s: APR handle NULL\n", __func__);
  8412. return -EINVAL;
  8413. }
  8414. if (ac->apr == NULL) {
  8415. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  8416. return -EINVAL;
  8417. }
  8418. q6asm_stream_add_hdr_async(
  8419. ac, &write.hdr, sizeof(write), TRUE, ac->stream_id);
  8420. port = &ac->port[IN];
  8421. ab = &port->buf[port->dsp_buf];
  8422. /* Pass session id as token for AIO scheme */
  8423. write.hdr.token = param->uid;
  8424. write.hdr.opcode = ASM_DATA_CMD_WRITE_V2;
  8425. write.buf_addr_lsw = lower_32_bits(param->paddr);
  8426. write.buf_addr_msw = msm_audio_populate_upper_32_bits(param->paddr);
  8427. write.buf_size = param->len;
  8428. write.timestamp_msw = param->msw_ts;
  8429. write.timestamp_lsw = param->lsw_ts;
  8430. liomode = (ASYNC_IO_MODE | NT_MODE);
  8431. io_compressed = (ASYNC_IO_MODE | COMPRESSED_IO);
  8432. io_compressed_stream = (ASYNC_IO_MODE | COMPRESSED_STREAM_IO);
  8433. if (ac->io_mode == liomode)
  8434. lbuf_phys_addr = (param->paddr - 32);
  8435. else if (ac->io_mode == io_compressed ||
  8436. ac->io_mode == io_compressed_stream)
  8437. lbuf_phys_addr = (param->paddr - param->metadata_len);
  8438. else {
  8439. if (param->flags & SET_TIMESTAMP)
  8440. lbuf_phys_addr = param->paddr -
  8441. sizeof(struct snd_codec_metadata);
  8442. else
  8443. lbuf_phys_addr = param->paddr;
  8444. }
  8445. dev_vdbg(ac->dev, "%s: token[0x%x], buf_addr[%pK], buf_size[0x%x], ts_msw[0x%x], ts_lsw[0x%x], lbuf_phys_addr: 0x[%pK]\n",
  8446. __func__,
  8447. write.hdr.token, &param->paddr,
  8448. write.buf_size, write.timestamp_msw,
  8449. write.timestamp_lsw, &lbuf_phys_addr);
  8450. /* Use 0xFF00 for disabling timestamps */
  8451. if (param->flags == 0xFF00)
  8452. write.flags = (0x00000000 | (param->flags & 0x800000FF));
  8453. else
  8454. write.flags = (0x80000000 | param->flags);
  8455. write.flags |= param->last_buffer << ASM_SHIFT_LAST_BUFFER_FLAG;
  8456. write.seq_id = param->uid;
  8457. list_for_each_safe(ptr, next, &ac->port[IN].mem_map_handle) {
  8458. buf_node = list_entry(ptr, struct asm_buffer_node,
  8459. list);
  8460. if (buf_node->buf_phys_addr == lbuf_phys_addr) {
  8461. write.mem_map_handle = buf_node->mmap_hdl;
  8462. break;
  8463. }
  8464. }
  8465. rc = apr_send_pkt(ac->apr, (uint32_t *) &write);
  8466. if (rc < 0) {
  8467. pr_err("%s: write op[0x%x]rc[%d]\n", __func__,
  8468. write.hdr.opcode, rc);
  8469. goto fail_cmd;
  8470. }
  8471. return 0;
  8472. fail_cmd:
  8473. return -EINVAL;
  8474. }
  8475. EXPORT_SYMBOL(q6asm_async_write);
  8476. /**
  8477. * q6asm_async_read -
  8478. * command to read DSP buffer
  8479. *
  8480. * @ac: Audio client handle
  8481. * @param: params for async read
  8482. *
  8483. * Returns 0 on success or error on failure
  8484. */
  8485. int q6asm_async_read(struct audio_client *ac,
  8486. struct audio_aio_read_param *param)
  8487. {
  8488. int rc = 0;
  8489. struct asm_data_cmd_read_v2 read;
  8490. struct asm_buffer_node *buf_node = NULL;
  8491. struct list_head *ptr, *next;
  8492. phys_addr_t lbuf_phys_addr;
  8493. u32 liomode;
  8494. u32 io_compressed;
  8495. int dir = 0;
  8496. if (ac == NULL) {
  8497. pr_err("%s: APR handle NULL\n", __func__);
  8498. return -EINVAL;
  8499. }
  8500. if (ac->apr == NULL) {
  8501. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  8502. return -EINVAL;
  8503. }
  8504. q6asm_add_hdr_async(ac, &read.hdr, sizeof(read), FALSE);
  8505. /* Pass session id as token for AIO scheme */
  8506. read.hdr.token = param->uid;
  8507. read.hdr.opcode = ASM_DATA_CMD_READ_V2;
  8508. read.buf_addr_lsw = lower_32_bits(param->paddr);
  8509. read.buf_addr_msw = msm_audio_populate_upper_32_bits(param->paddr);
  8510. read.buf_size = param->len;
  8511. read.seq_id = param->uid;
  8512. liomode = (NT_MODE | ASYNC_IO_MODE);
  8513. io_compressed = (ASYNC_IO_MODE | COMPRESSED_IO);
  8514. if (ac->io_mode == liomode) {
  8515. lbuf_phys_addr = (param->paddr - 32);
  8516. /*legacy wma driver case*/
  8517. dir = IN;
  8518. } else if (ac->io_mode == io_compressed) {
  8519. lbuf_phys_addr = (param->paddr - 64);
  8520. dir = OUT;
  8521. } else {
  8522. if (param->flags & COMPRESSED_TIMESTAMP_FLAG)
  8523. lbuf_phys_addr = param->paddr -
  8524. sizeof(struct snd_codec_metadata);
  8525. else
  8526. lbuf_phys_addr = param->paddr;
  8527. dir = OUT;
  8528. }
  8529. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  8530. buf_node = list_entry(ptr, struct asm_buffer_node,
  8531. list);
  8532. if (buf_node->buf_phys_addr == lbuf_phys_addr) {
  8533. read.mem_map_handle = buf_node->mmap_hdl;
  8534. break;
  8535. }
  8536. }
  8537. rc = apr_send_pkt(ac->apr, (uint32_t *) &read);
  8538. if (rc < 0) {
  8539. pr_err("%s: read op[0x%x]rc[%d]\n", __func__,
  8540. read.hdr.opcode, rc);
  8541. goto fail_cmd;
  8542. }
  8543. return 0;
  8544. fail_cmd:
  8545. return -EINVAL;
  8546. }
  8547. EXPORT_SYMBOL(q6asm_async_read);
  8548. /**
  8549. * q6asm_write -
  8550. * command to write buffer data to DSP
  8551. *
  8552. * @ac: Audio client handle
  8553. * @len: buffer size
  8554. * @msw_ts: upper 32bits of timestamp
  8555. * @lsw_ts: lower 32bits of timestamp
  8556. * @flags: Flags for timestamp mode
  8557. *
  8558. * Returns 0 on success or error on failure
  8559. */
  8560. int q6asm_write(struct audio_client *ac, uint32_t len, uint32_t msw_ts,
  8561. uint32_t lsw_ts, uint32_t flags)
  8562. {
  8563. int rc = 0;
  8564. struct asm_data_cmd_write_v2 write;
  8565. struct asm_buffer_node *buf_node = NULL;
  8566. struct audio_port_data *port;
  8567. struct audio_buffer *ab;
  8568. int dsp_buf = 0;
  8569. if (ac == NULL) {
  8570. pr_err("%s: APR handle NULL\n", __func__);
  8571. return -EINVAL;
  8572. }
  8573. if (ac->apr == NULL) {
  8574. pr_err("%s: AC APR handle NULL\n", __func__);
  8575. return -EINVAL;
  8576. }
  8577. dev_vdbg(ac->dev, "%s: session[%d] len=%d\n",
  8578. __func__, ac->session, len);
  8579. if (ac->io_mode & SYNC_IO_MODE) {
  8580. port = &ac->port[IN];
  8581. q6asm_add_hdr(ac, &write.hdr, sizeof(write),
  8582. FALSE);
  8583. mutex_lock(&port->lock);
  8584. dsp_buf = port->dsp_buf;
  8585. ab = &port->buf[dsp_buf];
  8586. q6asm_update_token(&write.hdr.token,
  8587. 0, /* Session ID is NA */
  8588. 0, /* Stream ID is NA */
  8589. port->dsp_buf,
  8590. 0, /* Direction flag is NA */
  8591. NO_WAIT_CMD);
  8592. write.hdr.opcode = ASM_DATA_CMD_WRITE_V2;
  8593. write.buf_addr_lsw = lower_32_bits(ab->phys);
  8594. write.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  8595. write.buf_size = len;
  8596. write.seq_id = port->dsp_buf;
  8597. write.timestamp_lsw = lsw_ts;
  8598. write.timestamp_msw = msw_ts;
  8599. /* Use 0xFF00 for disabling timestamps */
  8600. if (flags == 0xFF00)
  8601. write.flags = (0x00000000 | (flags & 0x800000FF));
  8602. else
  8603. write.flags = (0x80000000 | flags);
  8604. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  8605. port->max_buf_cnt);
  8606. buf_node = list_first_entry(&ac->port[IN].mem_map_handle,
  8607. struct asm_buffer_node,
  8608. list);
  8609. write.mem_map_handle = buf_node->mmap_hdl;
  8610. dev_vdbg(ac->dev, "%s: ab->phys[%pK]bufadd[0x%x] token[0x%x]buf_id[0x%x]buf_size[0x%x]mmaphdl[0x%x]"
  8611. , __func__,
  8612. &ab->phys,
  8613. write.buf_addr_lsw,
  8614. write.hdr.token,
  8615. write.seq_id,
  8616. write.buf_size,
  8617. write.mem_map_handle);
  8618. mutex_unlock(&port->lock);
  8619. config_debug_fs_write(ab);
  8620. rc = apr_send_pkt(ac->apr, (uint32_t *) &write);
  8621. if (rc < 0) {
  8622. pr_err("%s: write op[0x%x]rc[%d]\n",
  8623. __func__, write.hdr.opcode, rc);
  8624. goto fail_cmd;
  8625. }
  8626. return 0;
  8627. }
  8628. fail_cmd:
  8629. return -EINVAL;
  8630. }
  8631. EXPORT_SYMBOL(q6asm_write);
  8632. /**
  8633. * q6asm_write_nolock -
  8634. * command to write buffer data to DSP
  8635. * with no wait for ack.
  8636. *
  8637. * @ac: Audio client handle
  8638. * @len: buffer size
  8639. * @msw_ts: upper 32bits of timestamp
  8640. * @lsw_ts: lower 32bits of timestamp
  8641. * @flags: Flags for timestamp mode
  8642. *
  8643. * Returns 0 on success or error on failure
  8644. */
  8645. int q6asm_write_nolock(struct audio_client *ac, uint32_t len, uint32_t msw_ts,
  8646. uint32_t lsw_ts, uint32_t flags)
  8647. {
  8648. int rc = 0;
  8649. struct asm_data_cmd_write_v2 write;
  8650. struct asm_buffer_node *buf_node = NULL;
  8651. struct audio_port_data *port;
  8652. struct audio_buffer *ab;
  8653. int dsp_buf = 0;
  8654. if (ac == NULL) {
  8655. pr_err("%s: APR handle NULL\n", __func__);
  8656. return -EINVAL;
  8657. }
  8658. if (ac->apr == NULL) {
  8659. pr_err("%s: AC APR handle NULL\n", __func__);
  8660. return -EINVAL;
  8661. }
  8662. dev_vdbg(ac->dev, "%s: session[%d] len=%d\n",
  8663. __func__, ac->session, len);
  8664. if (ac->io_mode & SYNC_IO_MODE) {
  8665. port = &ac->port[IN];
  8666. q6asm_add_hdr_async(ac, &write.hdr, sizeof(write),
  8667. FALSE);
  8668. dsp_buf = port->dsp_buf;
  8669. ab = &port->buf[dsp_buf];
  8670. q6asm_update_token(&write.hdr.token,
  8671. 0, /* Session ID is NA */
  8672. 0, /* Stream ID is NA */
  8673. port->dsp_buf,
  8674. 0, /* Direction flag is NA */
  8675. NO_WAIT_CMD);
  8676. write.hdr.opcode = ASM_DATA_CMD_WRITE_V2;
  8677. write.buf_addr_lsw = lower_32_bits(ab->phys);
  8678. write.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  8679. write.buf_size = len;
  8680. write.seq_id = port->dsp_buf;
  8681. write.timestamp_lsw = lsw_ts;
  8682. write.timestamp_msw = msw_ts;
  8683. buf_node = list_first_entry(&ac->port[IN].mem_map_handle,
  8684. struct asm_buffer_node,
  8685. list);
  8686. write.mem_map_handle = buf_node->mmap_hdl;
  8687. /* Use 0xFF00 for disabling timestamps */
  8688. if (flags == 0xFF00)
  8689. write.flags = (0x00000000 | (flags & 0x800000FF));
  8690. else
  8691. write.flags = (0x80000000 | flags);
  8692. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  8693. port->max_buf_cnt);
  8694. dev_vdbg(ac->dev, "%s: ab->phys[%pK]bufadd[0x%x]token[0x%x] buf_id[0x%x]buf_size[0x%x]mmaphdl[0x%x]"
  8695. , __func__,
  8696. &ab->phys,
  8697. write.buf_addr_lsw,
  8698. write.hdr.token,
  8699. write.seq_id,
  8700. write.buf_size,
  8701. write.mem_map_handle);
  8702. rc = apr_send_pkt(ac->apr, (uint32_t *) &write);
  8703. if (rc < 0) {
  8704. pr_err("%s: write op[0x%x]rc[%d]\n",
  8705. __func__, write.hdr.opcode, rc);
  8706. goto fail_cmd;
  8707. }
  8708. return 0;
  8709. }
  8710. fail_cmd:
  8711. return -EINVAL;
  8712. }
  8713. EXPORT_SYMBOL(q6asm_write_nolock);
  8714. /**
  8715. * q6asm_get_session_time -
  8716. * command to retrieve timestamp info
  8717. *
  8718. * @ac: Audio client handle
  8719. * @tstamp: pointer to fill with timestamp info
  8720. *
  8721. * Returns 0 on success or error on failure
  8722. */
  8723. int q6asm_get_session_time(struct audio_client *ac, uint64_t *tstamp)
  8724. {
  8725. struct asm_mtmx_strtr_get_params mtmx_params;
  8726. int rc;
  8727. if (ac == NULL) {
  8728. pr_err("%s: APR handle NULL\n", __func__);
  8729. return -EINVAL;
  8730. }
  8731. if (ac->apr == NULL) {
  8732. pr_err("%s: AC APR handle NULL\n", __func__);
  8733. return -EINVAL;
  8734. }
  8735. if (tstamp == NULL) {
  8736. pr_err("%s: tstamp NULL\n", __func__);
  8737. return -EINVAL;
  8738. }
  8739. q6asm_add_hdr(ac, &mtmx_params.hdr, sizeof(mtmx_params), TRUE);
  8740. mtmx_params.hdr.opcode = ASM_SESSION_CMD_GET_MTMX_STRTR_PARAMS_V2;
  8741. mtmx_params.param_info.data_payload_addr_lsw = 0;
  8742. mtmx_params.param_info.data_payload_addr_msw = 0;
  8743. mtmx_params.param_info.mem_map_handle = 0;
  8744. mtmx_params.param_info.direction = (ac->io_mode & TUN_READ_IO_MODE
  8745. ? 1 : 0);
  8746. mtmx_params.param_info.module_id =
  8747. ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8748. mtmx_params.param_info.param_id =
  8749. ASM_SESSION_MTMX_STRTR_PARAM_SESSION_TIME_V3;
  8750. mtmx_params.param_info.param_max_size =
  8751. sizeof(struct param_hdr_v1) +
  8752. sizeof(struct asm_session_mtmx_strtr_param_session_time_v3_t);
  8753. atomic_set(&ac->time_flag, 1);
  8754. dev_vdbg(ac->dev, "%s: session[%d]opcode[0x%x]\n", __func__,
  8755. ac->session, mtmx_params.hdr.opcode);
  8756. rc = apr_send_pkt(ac->apr, (uint32_t *) &mtmx_params);
  8757. if (rc < 0) {
  8758. pr_err("%s: Commmand 0x%x failed %d\n", __func__,
  8759. mtmx_params.hdr.opcode, rc);
  8760. goto fail_cmd;
  8761. }
  8762. rc = wait_event_timeout(ac->time_wait,
  8763. (atomic_read(&ac->time_flag) == 0),
  8764. msecs_to_jiffies(TIMEOUT_MS));
  8765. if (!rc) {
  8766. pr_err("%s: timeout in getting session time from DSP\n",
  8767. __func__);
  8768. goto fail_cmd;
  8769. }
  8770. *tstamp = ac->time_stamp;
  8771. return 0;
  8772. fail_cmd:
  8773. return -EINVAL;
  8774. }
  8775. EXPORT_SYMBOL(q6asm_get_session_time);
  8776. /**
  8777. * q6asm_get_session_time_legacy -
  8778. * command to retrieve timestamp info
  8779. *
  8780. * @ac: Audio client handle
  8781. * @tstamp: pointer to fill with timestamp info
  8782. *
  8783. * Returns 0 on success or error on failure
  8784. */
  8785. int q6asm_get_session_time_legacy(struct audio_client *ac, uint64_t *tstamp)
  8786. {
  8787. struct apr_hdr hdr;
  8788. int rc;
  8789. if (ac == NULL) {
  8790. pr_err("%s: APR handle NULL\n", __func__);
  8791. return -EINVAL;
  8792. }
  8793. if (ac->apr == NULL) {
  8794. pr_err("%s: AC APR handle NULL\n", __func__);
  8795. return -EINVAL;
  8796. }
  8797. if (tstamp == NULL) {
  8798. pr_err("%s: tstamp NULL\n", __func__);
  8799. return -EINVAL;
  8800. }
  8801. q6asm_add_hdr(ac, &hdr, sizeof(hdr), TRUE);
  8802. hdr.opcode = ASM_SESSION_CMD_GET_SESSIONTIME_V3;
  8803. atomic_set(&ac->time_flag, 1);
  8804. dev_vdbg(ac->dev, "%s: session[%d]opcode[0x%x]\n", __func__,
  8805. ac->session,
  8806. hdr.opcode);
  8807. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  8808. if (rc < 0) {
  8809. pr_err("%s: Commmand 0x%x failed %d\n",
  8810. __func__, hdr.opcode, rc);
  8811. goto fail_cmd;
  8812. }
  8813. rc = wait_event_timeout(ac->time_wait,
  8814. (atomic_read(&ac->time_flag) == 0),
  8815. msecs_to_jiffies(TIMEOUT_MS));
  8816. if (!rc) {
  8817. pr_err("%s: timeout in getting session time from DSP\n",
  8818. __func__);
  8819. goto fail_cmd;
  8820. }
  8821. *tstamp = ac->time_stamp;
  8822. return 0;
  8823. fail_cmd:
  8824. return -EINVAL;
  8825. }
  8826. EXPORT_SYMBOL(q6asm_get_session_time_legacy);
  8827. /**
  8828. * q6asm_send_mtmx_strtr_window -
  8829. * command to send matrix for window params
  8830. *
  8831. * @ac: Audio client handle
  8832. * @window_param: window params
  8833. * @param_id: param id for window
  8834. *
  8835. * Returns 0 on success or error on failure
  8836. */
  8837. int q6asm_send_mtmx_strtr_window(struct audio_client *ac,
  8838. struct asm_session_mtmx_strtr_param_window_v2_t *window_param,
  8839. uint32_t param_id)
  8840. {
  8841. struct asm_mtmx_strtr_params matrix;
  8842. int sz = 0;
  8843. int rc = 0;
  8844. pr_debug("%s: Window lsw is %d, window msw is %d\n", __func__,
  8845. window_param->window_lsw, window_param->window_msw);
  8846. if (!ac) {
  8847. pr_err("%s: audio client handle is NULL\n", __func__);
  8848. rc = -EINVAL;
  8849. goto fail_cmd;
  8850. }
  8851. if (ac->apr == NULL) {
  8852. pr_err("%s: ac->apr is NULL", __func__);
  8853. rc = -EINVAL;
  8854. goto fail_cmd;
  8855. }
  8856. sz = sizeof(struct asm_mtmx_strtr_params);
  8857. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  8858. atomic_set(&ac->cmd_state, -1);
  8859. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  8860. matrix.param.data_payload_addr_lsw = 0;
  8861. matrix.param.data_payload_addr_msw = 0;
  8862. matrix.param.mem_map_handle = 0;
  8863. matrix.param.data_payload_size =
  8864. sizeof(struct param_hdr_v1) +
  8865. sizeof(struct asm_session_mtmx_strtr_param_window_v2_t);
  8866. matrix.param.direction = 0; /* RX */
  8867. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8868. matrix.data.param_id = param_id;
  8869. matrix.data.param_size =
  8870. sizeof(struct asm_session_mtmx_strtr_param_window_v2_t);
  8871. matrix.data.reserved = 0;
  8872. memcpy(&(matrix.config.window_param),
  8873. window_param,
  8874. sizeof(struct asm_session_mtmx_strtr_param_window_v2_t));
  8875. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  8876. if (rc < 0) {
  8877. pr_err("%s: Render window start send failed paramid [0x%x]\n",
  8878. __func__, matrix.data.param_id);
  8879. rc = -EINVAL;
  8880. goto fail_cmd;
  8881. }
  8882. rc = wait_event_timeout(ac->cmd_wait,
  8883. (atomic_read(&ac->cmd_state) >= 0),
  8884. msecs_to_jiffies(TIMEOUT_MS));
  8885. if (!rc) {
  8886. pr_err("%s: timeout, Render window start paramid[0x%x]\n",
  8887. __func__, matrix.data.param_id);
  8888. rc = -ETIMEDOUT;
  8889. goto fail_cmd;
  8890. }
  8891. if (atomic_read(&ac->cmd_state) > 0) {
  8892. pr_err("%s: DSP returned error[%s]\n",
  8893. __func__, adsp_err_get_err_str(
  8894. atomic_read(&ac->cmd_state)));
  8895. rc = adsp_err_get_lnx_err_code(
  8896. atomic_read(&ac->cmd_state));
  8897. goto fail_cmd;
  8898. }
  8899. rc = 0;
  8900. fail_cmd:
  8901. return rc;
  8902. }
  8903. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_window);
  8904. /**
  8905. * q6asm_send_mtmx_strtr_render_mode -
  8906. * command to send matrix for render mode
  8907. *
  8908. * @ac: Audio client handle
  8909. * @render_mode: rendering mode
  8910. *
  8911. * Returns 0 on success or error on failure
  8912. */
  8913. int q6asm_send_mtmx_strtr_render_mode(struct audio_client *ac,
  8914. uint32_t render_mode)
  8915. {
  8916. struct asm_mtmx_strtr_params matrix;
  8917. struct asm_session_mtmx_strtr_param_render_mode_t render_param;
  8918. int sz = 0;
  8919. int rc = 0;
  8920. pr_debug("%s: render mode is %d\n", __func__, render_mode);
  8921. if (!ac) {
  8922. pr_err("%s: audio client handle is NULL\n", __func__);
  8923. rc = -EINVAL;
  8924. goto exit;
  8925. }
  8926. if (ac->apr == NULL) {
  8927. pr_err("%s: ac->apr is NULL\n", __func__);
  8928. rc = -EINVAL;
  8929. goto exit;
  8930. }
  8931. if ((render_mode != ASM_SESSION_MTMX_STRTR_PARAM_RENDER_DEFAULT) &&
  8932. (render_mode != ASM_SESSION_MTMX_STRTR_PARAM_RENDER_LOCAL_STC)) {
  8933. pr_err("%s: Invalid render mode %d\n", __func__, render_mode);
  8934. rc = -EINVAL;
  8935. goto exit;
  8936. }
  8937. memset(&render_param, 0,
  8938. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t));
  8939. render_param.flags = render_mode;
  8940. memset(&matrix, 0, sizeof(struct asm_mtmx_strtr_params));
  8941. sz = sizeof(struct asm_mtmx_strtr_params);
  8942. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  8943. atomic_set(&ac->cmd_state, -1);
  8944. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  8945. matrix.param.data_payload_addr_lsw = 0;
  8946. matrix.param.data_payload_addr_msw = 0;
  8947. matrix.param.mem_map_handle = 0;
  8948. matrix.param.data_payload_size =
  8949. sizeof(struct param_hdr_v1) +
  8950. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t);
  8951. matrix.param.direction = 0; /* RX */
  8952. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8953. matrix.data.param_id = ASM_SESSION_MTMX_STRTR_PARAM_RENDER_MODE_CMD;
  8954. matrix.data.param_size =
  8955. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t);
  8956. matrix.data.reserved = 0;
  8957. memcpy(&(matrix.config.render_param),
  8958. &render_param,
  8959. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t));
  8960. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  8961. if (rc < 0) {
  8962. pr_err("%s: Render mode send failed paramid [0x%x]\n",
  8963. __func__, matrix.data.param_id);
  8964. rc = -EINVAL;
  8965. goto exit;
  8966. }
  8967. rc = wait_event_timeout(ac->cmd_wait,
  8968. (atomic_read(&ac->cmd_state) >= 0),
  8969. msecs_to_jiffies(TIMEOUT_MS));
  8970. if (!rc) {
  8971. pr_err("%s: timeout, Render mode send paramid [0x%x]\n",
  8972. __func__, matrix.data.param_id);
  8973. rc = -ETIMEDOUT;
  8974. goto exit;
  8975. }
  8976. if (atomic_read(&ac->cmd_state) > 0) {
  8977. pr_err("%s: DSP returned error[%s]\n",
  8978. __func__, adsp_err_get_err_str(
  8979. atomic_read(&ac->cmd_state)));
  8980. rc = adsp_err_get_lnx_err_code(
  8981. atomic_read(&ac->cmd_state));
  8982. goto exit;
  8983. }
  8984. rc = 0;
  8985. exit:
  8986. return rc;
  8987. }
  8988. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_render_mode);
  8989. /**
  8990. * q6asm_send_mtmx_strtr_clk_rec_mode -
  8991. * command to send matrix for clock rec
  8992. *
  8993. * @ac: Audio client handle
  8994. * @clk_rec_mode: mode for clock rec
  8995. *
  8996. * Returns 0 on success or error on failure
  8997. */
  8998. int q6asm_send_mtmx_strtr_clk_rec_mode(struct audio_client *ac,
  8999. uint32_t clk_rec_mode)
  9000. {
  9001. struct asm_mtmx_strtr_params matrix;
  9002. struct asm_session_mtmx_strtr_param_clk_rec_t clk_rec_param;
  9003. int sz = 0;
  9004. int rc = 0;
  9005. pr_debug("%s: clk rec mode is %d\n", __func__, clk_rec_mode);
  9006. if (!ac) {
  9007. pr_err("%s: audio client handle is NULL\n", __func__);
  9008. rc = -EINVAL;
  9009. goto exit;
  9010. }
  9011. if (ac->apr == NULL) {
  9012. pr_err("%s: ac->apr is NULL\n", __func__);
  9013. rc = -EINVAL;
  9014. goto exit;
  9015. }
  9016. if ((clk_rec_mode != ASM_SESSION_MTMX_STRTR_PARAM_CLK_REC_NONE) &&
  9017. (clk_rec_mode != ASM_SESSION_MTMX_STRTR_PARAM_CLK_REC_AUTO)) {
  9018. pr_err("%s: Invalid clk rec mode %d\n", __func__, clk_rec_mode);
  9019. rc = -EINVAL;
  9020. goto exit;
  9021. }
  9022. memset(&clk_rec_param, 0,
  9023. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t));
  9024. clk_rec_param.flags = clk_rec_mode;
  9025. memset(&matrix, 0, sizeof(struct asm_mtmx_strtr_params));
  9026. sz = sizeof(struct asm_mtmx_strtr_params);
  9027. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  9028. atomic_set(&ac->cmd_state, -1);
  9029. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  9030. matrix.param.data_payload_addr_lsw = 0;
  9031. matrix.param.data_payload_addr_msw = 0;
  9032. matrix.param.mem_map_handle = 0;
  9033. matrix.param.data_payload_size =
  9034. sizeof(struct param_hdr_v1) +
  9035. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t);
  9036. matrix.param.direction = 0; /* RX */
  9037. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  9038. matrix.data.param_id = ASM_SESSION_MTMX_STRTR_PARAM_CLK_REC_CMD;
  9039. matrix.data.param_size =
  9040. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t);
  9041. matrix.data.reserved = 0;
  9042. memcpy(&(matrix.config.clk_rec_param),
  9043. &clk_rec_param,
  9044. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t));
  9045. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  9046. if (rc < 0) {
  9047. pr_err("%s: clk rec mode send failed paramid [0x%x]\n",
  9048. __func__, matrix.data.param_id);
  9049. rc = -EINVAL;
  9050. goto exit;
  9051. }
  9052. rc = wait_event_timeout(ac->cmd_wait,
  9053. (atomic_read(&ac->cmd_state) >= 0),
  9054. msecs_to_jiffies(TIMEOUT_MS));
  9055. if (!rc) {
  9056. pr_err("%s: timeout, clk rec mode send paramid [0x%x]\n",
  9057. __func__, matrix.data.param_id);
  9058. rc = -ETIMEDOUT;
  9059. goto exit;
  9060. }
  9061. if (atomic_read(&ac->cmd_state) > 0) {
  9062. pr_err("%s: DSP returned error[%s]\n",
  9063. __func__, adsp_err_get_err_str(
  9064. atomic_read(&ac->cmd_state)));
  9065. rc = adsp_err_get_lnx_err_code(
  9066. atomic_read(&ac->cmd_state));
  9067. goto exit;
  9068. }
  9069. rc = 0;
  9070. exit:
  9071. return rc;
  9072. }
  9073. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_clk_rec_mode);
  9074. /**
  9075. * q6asm_send_mtmx_strtr_enable_adjust_session_clock -
  9076. * command to send matrix for adjust time
  9077. *
  9078. * @ac: Audio client handle
  9079. * @enable: flag to adjust time or not
  9080. *
  9081. * Returns 0 on success or error on failure
  9082. */
  9083. int q6asm_send_mtmx_strtr_enable_adjust_session_clock(struct audio_client *ac,
  9084. bool enable)
  9085. {
  9086. struct asm_mtmx_strtr_params matrix;
  9087. struct asm_session_mtmx_param_adjust_session_time_ctl_t adjust_time;
  9088. int sz = 0;
  9089. int rc = 0;
  9090. pr_debug("%s: adjust session enable %d\n", __func__, enable);
  9091. if (!ac) {
  9092. pr_err("%s: audio client handle is NULL\n", __func__);
  9093. rc = -EINVAL;
  9094. goto exit;
  9095. }
  9096. if (ac->apr == NULL) {
  9097. pr_err("%s: ac->apr is NULL\n", __func__);
  9098. rc = -EINVAL;
  9099. goto exit;
  9100. }
  9101. adjust_time.enable = enable;
  9102. memset(&matrix, 0, sizeof(struct asm_mtmx_strtr_params));
  9103. sz = sizeof(struct asm_mtmx_strtr_params);
  9104. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  9105. atomic_set(&ac->cmd_state, -1);
  9106. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  9107. matrix.param.data_payload_addr_lsw = 0;
  9108. matrix.param.data_payload_addr_msw = 0;
  9109. matrix.param.mem_map_handle = 0;
  9110. matrix.param.data_payload_size =
  9111. sizeof(struct param_hdr_v1) +
  9112. sizeof(struct asm_session_mtmx_param_adjust_session_time_ctl_t);
  9113. matrix.param.direction = 0; /* RX */
  9114. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  9115. matrix.data.param_id = ASM_SESSION_MTMX_PARAM_ADJUST_SESSION_TIME_CTL;
  9116. matrix.data.param_size =
  9117. sizeof(struct asm_session_mtmx_param_adjust_session_time_ctl_t);
  9118. matrix.data.reserved = 0;
  9119. matrix.config.adj_time_param.enable = adjust_time.enable;
  9120. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  9121. if (rc < 0) {
  9122. pr_err("%s: enable adjust session failed failed paramid [0x%x]\n",
  9123. __func__, matrix.data.param_id);
  9124. rc = -EINVAL;
  9125. goto exit;
  9126. }
  9127. rc = wait_event_timeout(ac->cmd_wait,
  9128. (atomic_read(&ac->cmd_state) >= 0),
  9129. msecs_to_jiffies(TIMEOUT_MS));
  9130. if (!rc) {
  9131. pr_err("%s: enable adjust session failed failed paramid [0x%x]\n",
  9132. __func__, matrix.data.param_id);
  9133. rc = -ETIMEDOUT;
  9134. goto exit;
  9135. }
  9136. if (atomic_read(&ac->cmd_state) > 0) {
  9137. pr_err("%s: DSP returned error[%s]\n",
  9138. __func__, adsp_err_get_err_str(
  9139. atomic_read(&ac->cmd_state)));
  9140. rc = adsp_err_get_lnx_err_code(
  9141. atomic_read(&ac->cmd_state));
  9142. goto exit;
  9143. }
  9144. rc = 0;
  9145. exit:
  9146. return rc;
  9147. }
  9148. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_enable_adjust_session_clock);
  9149. static int __q6asm_cmd(struct audio_client *ac, int cmd, uint32_t stream_id)
  9150. {
  9151. struct apr_hdr hdr;
  9152. int rc;
  9153. atomic_t *state;
  9154. int cnt = 0;
  9155. if (!ac) {
  9156. pr_err_ratelimited("%s: APR handle NULL\n", __func__);
  9157. return -EINVAL;
  9158. }
  9159. if (ac->apr == NULL) {
  9160. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  9161. return -EINVAL;
  9162. }
  9163. q6asm_stream_add_hdr(ac, &hdr, sizeof(hdr), TRUE, stream_id);
  9164. atomic_set(&ac->cmd_state, -1);
  9165. /*
  9166. * Updated the token field with stream/session for compressed playback
  9167. * Platform driver must know the the stream with which the command is
  9168. * associated
  9169. */
  9170. if (ac->io_mode & COMPRESSED_STREAM_IO)
  9171. q6asm_update_token(&hdr.token,
  9172. ac->session,
  9173. stream_id,
  9174. 0, /* Buffer index is NA */
  9175. 0, /* Direction flag is NA */
  9176. WAIT_CMD);
  9177. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  9178. __func__, hdr.token, stream_id, ac->session);
  9179. switch (cmd) {
  9180. case CMD_PAUSE:
  9181. pr_debug("%s: CMD_PAUSE\n", __func__);
  9182. hdr.opcode = ASM_SESSION_CMD_PAUSE;
  9183. state = &ac->cmd_state;
  9184. break;
  9185. case CMD_SUSPEND:
  9186. pr_debug("%s: CMD_SUSPEND\n", __func__);
  9187. hdr.opcode = ASM_SESSION_CMD_SUSPEND;
  9188. state = &ac->cmd_state;
  9189. break;
  9190. case CMD_FLUSH:
  9191. pr_debug("%s: CMD_FLUSH\n", __func__);
  9192. hdr.opcode = ASM_STREAM_CMD_FLUSH;
  9193. state = &ac->cmd_state;
  9194. break;
  9195. case CMD_OUT_FLUSH:
  9196. pr_debug("%s: CMD_OUT_FLUSH\n", __func__);
  9197. hdr.opcode = ASM_STREAM_CMD_FLUSH_READBUFS;
  9198. state = &ac->cmd_state;
  9199. break;
  9200. case CMD_EOS:
  9201. pr_debug("%s: CMD_EOS\n", __func__);
  9202. hdr.opcode = ASM_DATA_CMD_EOS;
  9203. atomic_set(&ac->cmd_state, 0);
  9204. state = &ac->cmd_state;
  9205. break;
  9206. case CMD_CLOSE:
  9207. pr_debug("%s: CMD_CLOSE\n", __func__);
  9208. hdr.opcode = ASM_STREAM_CMD_CLOSE;
  9209. state = &ac->cmd_state;
  9210. break;
  9211. default:
  9212. pr_err("%s: Invalid format[%d]\n", __func__, cmd);
  9213. rc = -EINVAL;
  9214. goto fail_cmd;
  9215. }
  9216. pr_debug("%s: session[%d]opcode[0x%x]\n", __func__,
  9217. ac->session,
  9218. hdr.opcode);
  9219. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  9220. if (rc < 0) {
  9221. pr_err("%s: Commmand 0x%x failed %d\n",
  9222. __func__, hdr.opcode, rc);
  9223. rc = -EINVAL;
  9224. goto fail_cmd;
  9225. }
  9226. rc = wait_event_timeout(ac->cmd_wait, (atomic_read(state) >= 0),
  9227. msecs_to_jiffies(TIMEOUT_MS));
  9228. if (!rc) {
  9229. pr_err("%s: timeout. waited for response opcode[0x%x]\n",
  9230. __func__, hdr.opcode);
  9231. rc = -ETIMEDOUT;
  9232. goto fail_cmd;
  9233. }
  9234. if (atomic_read(state) > 0) {
  9235. pr_err("%s: DSP returned error[%s] opcode %d\n",
  9236. __func__, adsp_err_get_err_str(
  9237. atomic_read(state)),
  9238. hdr.opcode);
  9239. rc = adsp_err_get_lnx_err_code(atomic_read(state));
  9240. goto fail_cmd;
  9241. }
  9242. if (cmd == CMD_FLUSH)
  9243. q6asm_reset_buf_state(ac);
  9244. if (cmd == CMD_CLOSE) {
  9245. /* check if DSP return all buffers */
  9246. if (ac->port[IN].buf) {
  9247. for (cnt = 0; cnt < ac->port[IN].max_buf_cnt;
  9248. cnt++) {
  9249. if (ac->port[IN].buf[cnt].used == IN) {
  9250. dev_vdbg(ac->dev, "Write Buf[%d] not returned\n",
  9251. cnt);
  9252. }
  9253. }
  9254. }
  9255. if (ac->port[OUT].buf) {
  9256. for (cnt = 0; cnt < ac->port[OUT].max_buf_cnt; cnt++) {
  9257. if (ac->port[OUT].buf[cnt].used == OUT) {
  9258. dev_vdbg(ac->dev, "Read Buf[%d] not returned\n",
  9259. cnt);
  9260. }
  9261. }
  9262. }
  9263. }
  9264. return 0;
  9265. fail_cmd:
  9266. return rc;
  9267. }
  9268. /**
  9269. * q6asm_cmd -
  9270. * Function used to send commands for
  9271. * ASM with wait for ack.
  9272. *
  9273. * @ac: Audio client handle
  9274. * @cmd: command to send
  9275. *
  9276. * Returns 0 on success or error on failure
  9277. */
  9278. int q6asm_cmd(struct audio_client *ac, int cmd)
  9279. {
  9280. return __q6asm_cmd(ac, cmd, ac->stream_id);
  9281. }
  9282. EXPORT_SYMBOL(q6asm_cmd);
  9283. /**
  9284. * q6asm_stream_cmd -
  9285. * Function used to send commands for
  9286. * ASM stream with wait for ack.
  9287. *
  9288. * @ac: Audio client handle
  9289. * @cmd: command to send
  9290. * @stream_id: Stream ID
  9291. *
  9292. * Returns 0 on success or error on failure
  9293. */
  9294. int q6asm_stream_cmd(struct audio_client *ac, int cmd, uint32_t stream_id)
  9295. {
  9296. return __q6asm_cmd(ac, cmd, stream_id);
  9297. }
  9298. EXPORT_SYMBOL(q6asm_stream_cmd);
  9299. /**
  9300. * q6asm_cmd_nowait -
  9301. * Function used to send commands for
  9302. * ASM stream without wait for ack.
  9303. *
  9304. * @ac: Audio client handle
  9305. * @cmd: command to send
  9306. * @stream_id: Stream ID
  9307. *
  9308. * Returns 0 on success or error on failure
  9309. */
  9310. static int __q6asm_cmd_nowait(struct audio_client *ac, int cmd,
  9311. uint32_t stream_id)
  9312. {
  9313. struct apr_hdr hdr;
  9314. int rc;
  9315. if (!ac) {
  9316. pr_err_ratelimited("%s: APR handle NULL\n", __func__);
  9317. return -EINVAL;
  9318. }
  9319. if (ac->apr == NULL) {
  9320. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  9321. return -EINVAL;
  9322. }
  9323. q6asm_stream_add_hdr_async(ac, &hdr, sizeof(hdr), TRUE, stream_id);
  9324. atomic_set(&ac->cmd_state, 1);
  9325. /*
  9326. * Updated the token field with stream/session for compressed playback
  9327. * Platform driver must know the the stream with which the command is
  9328. * associated
  9329. */
  9330. if (ac->io_mode & COMPRESSED_STREAM_IO)
  9331. q6asm_update_token(&hdr.token,
  9332. ac->session,
  9333. stream_id,
  9334. 0, /* Buffer index is NA */
  9335. 0, /* Direction flag is NA */
  9336. NO_WAIT_CMD);
  9337. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  9338. __func__, hdr.token, stream_id, ac->session);
  9339. switch (cmd) {
  9340. case CMD_PAUSE:
  9341. pr_debug("%s: CMD_PAUSE\n", __func__);
  9342. hdr.opcode = ASM_SESSION_CMD_PAUSE;
  9343. break;
  9344. case CMD_EOS:
  9345. pr_debug("%s: CMD_EOS\n", __func__);
  9346. hdr.opcode = ASM_DATA_CMD_EOS;
  9347. break;
  9348. case CMD_CLOSE:
  9349. pr_debug("%s: CMD_CLOSE\n", __func__);
  9350. hdr.opcode = ASM_STREAM_CMD_CLOSE;
  9351. break;
  9352. default:
  9353. pr_err("%s: Invalid format[%d]\n", __func__, cmd);
  9354. goto fail_cmd;
  9355. }
  9356. pr_debug("%s: session[%d]opcode[0x%x]\n", __func__,
  9357. ac->session,
  9358. hdr.opcode);
  9359. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  9360. if (rc < 0) {
  9361. pr_err("%s: Commmand 0x%x failed %d\n",
  9362. __func__, hdr.opcode, rc);
  9363. goto fail_cmd;
  9364. }
  9365. return 0;
  9366. fail_cmd:
  9367. return -EINVAL;
  9368. }
  9369. int q6asm_cmd_nowait(struct audio_client *ac, int cmd)
  9370. {
  9371. pr_debug("%s: stream_id: %d\n", __func__, ac->stream_id);
  9372. return __q6asm_cmd_nowait(ac, cmd, ac->stream_id);
  9373. }
  9374. EXPORT_SYMBOL(q6asm_cmd_nowait);
  9375. /**
  9376. * q6asm_stream_cmd_nowait -
  9377. * Function used to send commands for
  9378. * ASM stream without wait for ack.
  9379. *
  9380. * @ac: Audio client handle
  9381. * @cmd: command to send
  9382. * @stream_id: Stream ID
  9383. *
  9384. * Returns 0 on success or error on failure
  9385. */
  9386. int q6asm_stream_cmd_nowait(struct audio_client *ac, int cmd,
  9387. uint32_t stream_id)
  9388. {
  9389. pr_debug("%s: stream_id: %d\n", __func__, stream_id);
  9390. return __q6asm_cmd_nowait(ac, cmd, stream_id);
  9391. }
  9392. EXPORT_SYMBOL(q6asm_stream_cmd_nowait);
  9393. int __q6asm_send_meta_data(struct audio_client *ac, uint32_t stream_id,
  9394. uint32_t initial_samples, uint32_t trailing_samples)
  9395. {
  9396. struct asm_data_cmd_remove_silence silence;
  9397. int rc = 0;
  9398. if (!ac) {
  9399. pr_err_ratelimited("%s: APR handle NULL\n", __func__);
  9400. return -EINVAL;
  9401. }
  9402. if (ac->apr == NULL) {
  9403. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  9404. return -EINVAL;
  9405. }
  9406. pr_debug("%s: session[%d]\n", __func__, ac->session);
  9407. q6asm_stream_add_hdr_async(ac, &silence.hdr, sizeof(silence), TRUE,
  9408. stream_id);
  9409. /*
  9410. * Updated the token field with stream/session for compressed playback
  9411. * Platform driver must know the the stream with which the command is
  9412. * associated
  9413. */
  9414. if (ac->io_mode & COMPRESSED_STREAM_IO)
  9415. q6asm_update_token(&silence.hdr.token,
  9416. ac->session,
  9417. stream_id,
  9418. 0, /* Buffer index is NA */
  9419. 0, /* Direction flag is NA */
  9420. NO_WAIT_CMD);
  9421. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  9422. __func__, silence.hdr.token, stream_id, ac->session);
  9423. silence.hdr.opcode = ASM_DATA_CMD_REMOVE_INITIAL_SILENCE;
  9424. silence.num_samples_to_remove = initial_samples;
  9425. rc = apr_send_pkt(ac->apr, (uint32_t *) &silence);
  9426. if (rc < 0) {
  9427. pr_err("%s: Commmand silence failed[%d]", __func__, rc);
  9428. goto fail_cmd;
  9429. }
  9430. silence.hdr.opcode = ASM_DATA_CMD_REMOVE_TRAILING_SILENCE;
  9431. silence.num_samples_to_remove = trailing_samples;
  9432. rc = apr_send_pkt(ac->apr, (uint32_t *) &silence);
  9433. if (rc < 0) {
  9434. pr_err("%s: Commmand silence failed[%d]", __func__, rc);
  9435. goto fail_cmd;
  9436. }
  9437. return 0;
  9438. fail_cmd:
  9439. return -EINVAL;
  9440. }
  9441. /**
  9442. * q6asm_stream_send_meta_data -
  9443. * command to send meta data for stream
  9444. *
  9445. * @ac: Audio client handle
  9446. * @stream_id: Stream ID
  9447. * @initial_samples: Initial samples of stream
  9448. * @trailing_samples: Trailing samples of stream
  9449. *
  9450. * Returns 0 on success or error on failure
  9451. */
  9452. int q6asm_stream_send_meta_data(struct audio_client *ac, uint32_t stream_id,
  9453. uint32_t initial_samples, uint32_t trailing_samples)
  9454. {
  9455. return __q6asm_send_meta_data(ac, stream_id, initial_samples,
  9456. trailing_samples);
  9457. }
  9458. EXPORT_SYMBOL(q6asm_stream_send_meta_data);
  9459. int q6asm_send_meta_data(struct audio_client *ac, uint32_t initial_samples,
  9460. uint32_t trailing_samples)
  9461. {
  9462. return __q6asm_send_meta_data(ac, ac->stream_id, initial_samples,
  9463. trailing_samples);
  9464. }
  9465. static void q6asm_reset_buf_state(struct audio_client *ac)
  9466. {
  9467. int cnt = 0;
  9468. int loopcnt = 0;
  9469. int used;
  9470. struct audio_port_data *port = NULL;
  9471. if (ac->io_mode & SYNC_IO_MODE) {
  9472. used = (ac->io_mode & TUN_WRITE_IO_MODE ? 1 : 0);
  9473. mutex_lock(&ac->cmd_lock);
  9474. for (loopcnt = 0; loopcnt <= OUT; loopcnt++) {
  9475. port = &ac->port[loopcnt];
  9476. cnt = port->max_buf_cnt - 1;
  9477. port->dsp_buf = 0;
  9478. port->cpu_buf = 0;
  9479. while (cnt >= 0) {
  9480. if (!port->buf)
  9481. continue;
  9482. port->buf[cnt].used = used;
  9483. cnt--;
  9484. }
  9485. }
  9486. mutex_unlock(&ac->cmd_lock);
  9487. }
  9488. }
  9489. /**
  9490. * q6asm_reg_tx_overflow -
  9491. * command to register for TX overflow events
  9492. *
  9493. * @ac: Audio client handle
  9494. * @enable: flag to enable or disable events
  9495. *
  9496. * Returns 0 on success or error on failure
  9497. */
  9498. int q6asm_reg_tx_overflow(struct audio_client *ac, uint16_t enable)
  9499. {
  9500. struct asm_session_cmd_regx_overflow tx_overflow;
  9501. int rc;
  9502. if (!ac) {
  9503. pr_err("%s: APR handle NULL\n", __func__);
  9504. return -EINVAL;
  9505. }
  9506. if (ac->apr == NULL) {
  9507. pr_err("%s: AC APR handle NULL\n", __func__);
  9508. return -EINVAL;
  9509. }
  9510. pr_debug("%s: session[%d]enable[%d]\n", __func__,
  9511. ac->session, enable);
  9512. q6asm_add_hdr(ac, &tx_overflow.hdr, sizeof(tx_overflow), TRUE);
  9513. atomic_set(&ac->cmd_state, -1);
  9514. tx_overflow.hdr.opcode =
  9515. ASM_SESSION_CMD_REGISTER_FORX_OVERFLOW_EVENTS;
  9516. /* tx overflow event: enable */
  9517. tx_overflow.enable_flag = enable;
  9518. rc = apr_send_pkt(ac->apr, (uint32_t *) &tx_overflow);
  9519. if (rc < 0) {
  9520. pr_err("%s: tx overflow op[0x%x]rc[%d]\n",
  9521. __func__, tx_overflow.hdr.opcode, rc);
  9522. rc = -EINVAL;
  9523. goto fail_cmd;
  9524. }
  9525. rc = wait_event_timeout(ac->cmd_wait,
  9526. (atomic_read(&ac->cmd_state) >= 0),
  9527. msecs_to_jiffies(TIMEOUT_MS));
  9528. if (!rc) {
  9529. pr_err("%s: timeout. waited for tx overflow\n", __func__);
  9530. rc = -ETIMEDOUT;
  9531. goto fail_cmd;
  9532. }
  9533. if (atomic_read(&ac->cmd_state) > 0) {
  9534. pr_err("%s: DSP returned error[%s]\n",
  9535. __func__, adsp_err_get_err_str(
  9536. atomic_read(&ac->cmd_state)));
  9537. rc = adsp_err_get_lnx_err_code(
  9538. atomic_read(&ac->cmd_state));
  9539. goto fail_cmd;
  9540. }
  9541. return 0;
  9542. fail_cmd:
  9543. return rc;
  9544. }
  9545. EXPORT_SYMBOL(q6asm_reg_tx_overflow);
  9546. int q6asm_reg_rx_underflow(struct audio_client *ac, uint16_t enable)
  9547. {
  9548. struct asm_session_cmd_rgstr_rx_underflow rx_underflow;
  9549. int rc;
  9550. if (!ac) {
  9551. pr_err("%s: AC APR handle NULL\n", __func__);
  9552. return -EINVAL;
  9553. }
  9554. if (ac->apr == NULL) {
  9555. pr_err("%s: APR handle NULL\n", __func__);
  9556. return -EINVAL;
  9557. }
  9558. pr_debug("%s: session[%d]enable[%d]\n", __func__,
  9559. ac->session, enable);
  9560. q6asm_add_hdr_async(ac, &rx_underflow.hdr, sizeof(rx_underflow), FALSE);
  9561. rx_underflow.hdr.opcode =
  9562. ASM_SESSION_CMD_REGISTER_FOR_RX_UNDERFLOW_EVENTS;
  9563. /* tx overflow event: enable */
  9564. rx_underflow.enable_flag = enable;
  9565. rc = apr_send_pkt(ac->apr, (uint32_t *) &rx_underflow);
  9566. if (rc < 0) {
  9567. pr_err("%s: tx overflow op[0x%x]rc[%d]\n",
  9568. __func__, rx_underflow.hdr.opcode, rc);
  9569. goto fail_cmd;
  9570. }
  9571. return 0;
  9572. fail_cmd:
  9573. return -EINVAL;
  9574. }
  9575. /**
  9576. * q6asm_adjust_session_clock -
  9577. * command to adjust session clock
  9578. *
  9579. * @ac: Audio client handle
  9580. * @adjust_time_lsw: lower 32bits
  9581. * @adjust_time_msw: upper 32bits
  9582. *
  9583. * Returns 0 on success or error on failure
  9584. */
  9585. int q6asm_adjust_session_clock(struct audio_client *ac,
  9586. uint32_t adjust_time_lsw,
  9587. uint32_t adjust_time_msw)
  9588. {
  9589. int rc = 0;
  9590. int sz = 0;
  9591. struct asm_session_cmd_adjust_session_clock_v2 adjust_clock;
  9592. pr_debug("%s: adjust_time_lsw is %x, adjust_time_msw is %x\n", __func__,
  9593. adjust_time_lsw, adjust_time_msw);
  9594. if (!ac) {
  9595. pr_err("%s: audio client handle is NULL\n", __func__);
  9596. rc = -EINVAL;
  9597. goto fail_cmd;
  9598. }
  9599. if (ac->apr == NULL) {
  9600. pr_err("%s: ac->apr is NULL", __func__);
  9601. rc = -EINVAL;
  9602. goto fail_cmd;
  9603. }
  9604. sz = sizeof(struct asm_session_cmd_adjust_session_clock_v2);
  9605. q6asm_add_hdr(ac, &adjust_clock.hdr, sz, TRUE);
  9606. atomic_set(&ac->cmd_state, -1);
  9607. adjust_clock.hdr.opcode = ASM_SESSION_CMD_ADJUST_SESSION_CLOCK_V2;
  9608. adjust_clock.adjustime_lsw = adjust_time_lsw;
  9609. adjust_clock.adjustime_msw = adjust_time_msw;
  9610. rc = apr_send_pkt(ac->apr, (uint32_t *) &adjust_clock);
  9611. if (rc < 0) {
  9612. pr_err("%s: adjust_clock send failed paramid [0x%x]\n",
  9613. __func__, adjust_clock.hdr.opcode);
  9614. rc = -EINVAL;
  9615. goto fail_cmd;
  9616. }
  9617. rc = wait_event_timeout(ac->cmd_wait,
  9618. (atomic_read(&ac->cmd_state) >= 0),
  9619. msecs_to_jiffies(TIMEOUT_MS));
  9620. if (!rc) {
  9621. pr_err("%s: timeout, adjust_clock paramid[0x%x]\n",
  9622. __func__, adjust_clock.hdr.opcode);
  9623. rc = -ETIMEDOUT;
  9624. goto fail_cmd;
  9625. }
  9626. if (atomic_read(&ac->cmd_state) > 0) {
  9627. pr_err("%s: DSP returned error[%s]\n",
  9628. __func__, adsp_err_get_err_str(
  9629. atomic_read(&ac->cmd_state)));
  9630. rc = adsp_err_get_lnx_err_code(
  9631. atomic_read(&ac->cmd_state));
  9632. goto fail_cmd;
  9633. }
  9634. rc = 0;
  9635. fail_cmd:
  9636. return rc;
  9637. }
  9638. EXPORT_SYMBOL(q6asm_adjust_session_clock);
  9639. /*
  9640. * q6asm_get_path_delay() - get the path delay for an audio session
  9641. * @ac: audio client handle
  9642. *
  9643. * Retrieves the current audio DSP path delay for the given audio session.
  9644. *
  9645. * Return: 0 on success, error code otherwise
  9646. */
  9647. int q6asm_get_path_delay(struct audio_client *ac)
  9648. {
  9649. int rc = 0;
  9650. struct apr_hdr hdr;
  9651. if (!ac || ac->apr == NULL) {
  9652. pr_err("%s: invalid audio client\n", __func__);
  9653. return -EINVAL;
  9654. }
  9655. hdr.opcode = ASM_SESSION_CMD_GET_PATH_DELAY_V2;
  9656. q6asm_add_hdr(ac, &hdr, sizeof(hdr), TRUE);
  9657. atomic_set(&ac->cmd_state, -1);
  9658. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  9659. if (rc < 0) {
  9660. pr_err("%s: Commmand 0x%x failed %d\n", __func__,
  9661. hdr.opcode, rc);
  9662. return rc;
  9663. }
  9664. rc = wait_event_timeout(ac->cmd_wait,
  9665. (atomic_read(&ac->cmd_state) >= 0),
  9666. msecs_to_jiffies(TIMEOUT_MS));
  9667. if (!rc) {
  9668. pr_err("%s: timeout. waited for response opcode[0x%x]\n",
  9669. __func__, hdr.opcode);
  9670. return -ETIMEDOUT;
  9671. }
  9672. if (atomic_read(&ac->cmd_state) > 0) {
  9673. pr_err("%s: DSP returned error[%s]\n",
  9674. __func__, adsp_err_get_err_str(
  9675. atomic_read(&ac->cmd_state)));
  9676. rc = adsp_err_get_lnx_err_code(
  9677. atomic_read(&ac->cmd_state));
  9678. return rc;
  9679. }
  9680. return 0;
  9681. }
  9682. EXPORT_SYMBOL(q6asm_get_path_delay);
  9683. int q6asm_get_apr_service_id(int session_id)
  9684. {
  9685. pr_debug("%s:\n", __func__);
  9686. if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
  9687. pr_err("%s: invalid session_id = %d\n", __func__, session_id);
  9688. return -EINVAL;
  9689. }
  9690. return ((struct apr_svc *)(session[session_id].ac)->apr)->id;
  9691. }
  9692. int q6asm_get_asm_topology(int session_id)
  9693. {
  9694. int topology = -EINVAL;
  9695. if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
  9696. pr_err("%s: invalid session_id = %d\n", __func__, session_id);
  9697. goto done;
  9698. }
  9699. if (session[session_id].ac == NULL) {
  9700. pr_err("%s: session not created for session id = %d\n",
  9701. __func__, session_id);
  9702. goto done;
  9703. }
  9704. topology = (session[session_id].ac)->topology;
  9705. done:
  9706. return topology;
  9707. }
  9708. int q6asm_get_asm_app_type(int session_id)
  9709. {
  9710. int app_type = -EINVAL;
  9711. if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
  9712. pr_err("%s: invalid session_id = %d\n", __func__, session_id);
  9713. goto done;
  9714. }
  9715. if (session[session_id].ac == NULL) {
  9716. pr_err("%s: session not created for session id = %d\n",
  9717. __func__, session_id);
  9718. goto done;
  9719. }
  9720. app_type = (session[session_id].ac)->app_type;
  9721. done:
  9722. return app_type;
  9723. }
  9724. /*
  9725. * Retrieving cal_block will mark cal_block as stale.
  9726. * Hence it cannot be reused or resent unless the flag
  9727. * is reset.
  9728. */
  9729. static int q6asm_get_asm_topology_apptype(struct q6asm_cal_info *cal_info)
  9730. {
  9731. struct cal_block_data *cal_block = NULL;
  9732. cal_info->topology_id = DEFAULT_POPP_TOPOLOGY;
  9733. cal_info->app_type = DEFAULT_APP_TYPE;
  9734. if (cal_data[ASM_TOPOLOGY_CAL] == NULL)
  9735. goto done;
  9736. mutex_lock(&cal_data[ASM_TOPOLOGY_CAL]->lock);
  9737. cal_block = cal_utils_get_only_cal_block(cal_data[ASM_TOPOLOGY_CAL]);
  9738. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block))
  9739. goto unlock;
  9740. cal_info->topology_id = ((struct audio_cal_info_asm_top *)
  9741. cal_block->cal_info)->topology;
  9742. cal_info->app_type = ((struct audio_cal_info_asm_top *)
  9743. cal_block->cal_info)->app_type;
  9744. cal_utils_mark_cal_used(cal_block);
  9745. unlock:
  9746. mutex_unlock(&cal_data[ASM_TOPOLOGY_CAL]->lock);
  9747. done:
  9748. pr_debug("%s: Using topology %d app_type %d\n", __func__,
  9749. cal_info->topology_id, cal_info->app_type);
  9750. return 0;
  9751. }
  9752. /**
  9753. * q6asm_send_cal -
  9754. * command to send ASM calibration
  9755. *
  9756. * @ac: Audio client handle
  9757. *
  9758. * Returns 0 on success or error on failure
  9759. */
  9760. int q6asm_send_cal(struct audio_client *ac)
  9761. {
  9762. struct cal_block_data *cal_block = NULL;
  9763. struct mem_mapping_hdr mem_hdr;
  9764. u32 payload_size = 0;
  9765. int rc = -EINVAL;
  9766. pr_debug("%s:\n", __func__);
  9767. if (!ac) {
  9768. pr_err("%s: Audio client is NULL\n", __func__);
  9769. return -EINVAL;
  9770. }
  9771. if (ac->io_mode & NT_MODE) {
  9772. pr_debug("%s: called for NT MODE, exiting\n", __func__);
  9773. goto done;
  9774. }
  9775. if (cal_data[ASM_AUDSTRM_CAL] == NULL)
  9776. goto done;
  9777. if (ac->perf_mode == ULTRA_LOW_LATENCY_PCM_MODE) {
  9778. rc = 0; /* no cal is required, not error case */
  9779. goto done;
  9780. }
  9781. memset(&mem_hdr, 0, sizeof(mem_hdr));
  9782. mutex_lock(&cal_data[ASM_AUDSTRM_CAL]->lock);
  9783. cal_block = cal_utils_get_only_cal_block(cal_data[ASM_AUDSTRM_CAL]);
  9784. if (cal_block == NULL) {
  9785. pr_err("%s: cal_block is NULL\n",
  9786. __func__);
  9787. goto unlock;
  9788. }
  9789. if (cal_utils_is_cal_stale(cal_block)) {
  9790. rc = 0; /* not error case */
  9791. pr_debug("%s: cal_block is stale\n",
  9792. __func__);
  9793. goto unlock;
  9794. }
  9795. if (cal_block->cal_data.size == 0) {
  9796. rc = 0; /* not error case */
  9797. pr_debug("%s: cal_data.size is 0, don't send cal data\n",
  9798. __func__);
  9799. goto unlock;
  9800. }
  9801. rc = remap_cal_data(ASM_AUDSTRM_CAL_TYPE, cal_block);
  9802. if (rc) {
  9803. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  9804. __func__, ASM_AUDSTRM_CAL);
  9805. goto unlock;
  9806. }
  9807. mem_hdr.data_payload_addr_lsw =
  9808. lower_32_bits(cal_block->cal_data.paddr);
  9809. mem_hdr.data_payload_addr_msw =
  9810. msm_audio_populate_upper_32_bits(cal_block->cal_data.paddr);
  9811. mem_hdr.mem_map_handle = cal_block->map_data.q6map_handle;
  9812. payload_size = cal_block->cal_data.size;
  9813. pr_debug("%s: phyaddr lsw = %x msw = %x, maphdl = %x calsize = %d\n",
  9814. __func__, mem_hdr.data_payload_addr_lsw,
  9815. mem_hdr.data_payload_addr_msw, mem_hdr.mem_map_handle,
  9816. payload_size);
  9817. rc = q6asm_set_pp_params(ac, &mem_hdr, NULL, payload_size);
  9818. if (rc) {
  9819. pr_err("%s: audio audstrm cal send failed\n", __func__);
  9820. goto unlock;
  9821. }
  9822. if (cal_block)
  9823. cal_utils_mark_cal_used(cal_block);
  9824. rc = 0;
  9825. unlock:
  9826. mutex_unlock(&cal_data[ASM_AUDSTRM_CAL]->lock);
  9827. done:
  9828. return rc;
  9829. }
  9830. EXPORT_SYMBOL(q6asm_send_cal);
  9831. static int get_cal_type_index(int32_t cal_type)
  9832. {
  9833. int ret = -EINVAL;
  9834. switch (cal_type) {
  9835. case ASM_TOPOLOGY_CAL_TYPE:
  9836. ret = ASM_TOPOLOGY_CAL;
  9837. break;
  9838. case ASM_CUST_TOPOLOGY_CAL_TYPE:
  9839. ret = ASM_CUSTOM_TOP_CAL;
  9840. break;
  9841. case ASM_AUDSTRM_CAL_TYPE:
  9842. ret = ASM_AUDSTRM_CAL;
  9843. break;
  9844. case ASM_RTAC_APR_CAL_TYPE:
  9845. ret = ASM_RTAC_APR_CAL;
  9846. break;
  9847. default:
  9848. pr_err("%s: invalid cal type %d!\n", __func__, cal_type);
  9849. }
  9850. return ret;
  9851. }
  9852. static int q6asm_alloc_cal(int32_t cal_type,
  9853. size_t data_size, void *data)
  9854. {
  9855. int ret = 0;
  9856. int cal_index;
  9857. pr_debug("%s:\n", __func__);
  9858. cal_index = get_cal_type_index(cal_type);
  9859. if (cal_index < 0) {
  9860. pr_err("%s: could not get cal index %d!\n",
  9861. __func__, cal_index);
  9862. ret = -EINVAL;
  9863. goto done;
  9864. }
  9865. ret = cal_utils_alloc_cal(data_size, data,
  9866. cal_data[cal_index], 0, NULL);
  9867. if (ret < 0) {
  9868. pr_err("%s: cal_utils_alloc_block failed, ret = %d, cal type = %d!\n",
  9869. __func__, ret, cal_type);
  9870. ret = -EINVAL;
  9871. goto done;
  9872. }
  9873. done:
  9874. return ret;
  9875. }
  9876. static int q6asm_dealloc_cal(int32_t cal_type,
  9877. size_t data_size, void *data)
  9878. {
  9879. int ret = 0;
  9880. int cal_index;
  9881. pr_debug("%s:\n", __func__);
  9882. cal_index = get_cal_type_index(cal_type);
  9883. if (cal_index < 0) {
  9884. pr_err("%s: could not get cal index %d!\n",
  9885. __func__, cal_index);
  9886. ret = -EINVAL;
  9887. goto done;
  9888. }
  9889. ret = cal_utils_dealloc_cal(data_size, data,
  9890. cal_data[cal_index]);
  9891. if (ret < 0) {
  9892. pr_err("%s: cal_utils_dealloc_block failed, ret = %d, cal type = %d!\n",
  9893. __func__, ret, cal_type);
  9894. ret = -EINVAL;
  9895. goto done;
  9896. }
  9897. done:
  9898. return ret;
  9899. }
  9900. static int q6asm_set_cal(int32_t cal_type,
  9901. size_t data_size, void *data)
  9902. {
  9903. int ret = 0;
  9904. int cal_index;
  9905. pr_debug("%s:\n", __func__);
  9906. cal_index = get_cal_type_index(cal_type);
  9907. if (cal_index < 0) {
  9908. pr_err("%s: could not get cal index %d!\n",
  9909. __func__, cal_index);
  9910. ret = -EINVAL;
  9911. goto done;
  9912. }
  9913. ret = cal_utils_set_cal(data_size, data,
  9914. cal_data[cal_index], 0, NULL);
  9915. if (ret < 0) {
  9916. pr_err("%s: cal_utils_set_cal failed, ret = %d, cal type = %d!\n",
  9917. __func__, ret, cal_type);
  9918. ret = -EINVAL;
  9919. goto done;
  9920. }
  9921. if (cal_index == ASM_CUSTOM_TOP_CAL) {
  9922. mutex_lock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  9923. set_custom_topology = 1;
  9924. mutex_unlock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  9925. }
  9926. done:
  9927. return ret;
  9928. }
  9929. static void q6asm_delete_cal_data(void)
  9930. {
  9931. pr_debug("%s:\n", __func__);
  9932. cal_utils_destroy_cal_types(ASM_MAX_CAL_TYPES, cal_data);
  9933. }
  9934. static int q6asm_init_cal_data(void)
  9935. {
  9936. int ret = 0;
  9937. struct cal_type_info cal_type_info[] = {
  9938. {{ASM_TOPOLOGY_CAL_TYPE,
  9939. {NULL, NULL, NULL,
  9940. q6asm_set_cal, NULL, NULL} },
  9941. {NULL, NULL, cal_utils_match_buf_num} },
  9942. {{ASM_CUST_TOPOLOGY_CAL_TYPE,
  9943. {q6asm_alloc_cal, q6asm_dealloc_cal, NULL,
  9944. q6asm_set_cal, NULL, NULL} },
  9945. {NULL, q6asm_unmap_cal_memory, cal_utils_match_buf_num} },
  9946. {{ASM_AUDSTRM_CAL_TYPE,
  9947. {q6asm_alloc_cal, q6asm_dealloc_cal, NULL,
  9948. q6asm_set_cal, NULL, NULL} },
  9949. {NULL, q6asm_unmap_cal_memory, cal_utils_match_buf_num} },
  9950. {{ASM_RTAC_APR_CAL_TYPE,
  9951. {NULL, NULL, NULL, NULL, NULL, NULL} },
  9952. {NULL, NULL, cal_utils_match_buf_num} }
  9953. };
  9954. pr_debug("%s\n", __func__);
  9955. ret = cal_utils_create_cal_types(ASM_MAX_CAL_TYPES, cal_data,
  9956. cal_type_info);
  9957. if (ret < 0) {
  9958. pr_err("%s: could not create cal type! %d\n",
  9959. __func__, ret);
  9960. ret = -EINVAL;
  9961. goto err;
  9962. }
  9963. return ret;
  9964. err:
  9965. q6asm_delete_cal_data();
  9966. return ret;
  9967. }
  9968. static int q6asm_is_valid_session(struct apr_client_data *data, void *priv)
  9969. {
  9970. struct audio_client *ac = (struct audio_client *)priv;
  9971. union asm_token_struct asm_token;
  9972. asm_token.token = data->token;
  9973. if (asm_token._token.session_id != ac->session) {
  9974. pr_err("%s: Invalid session[%d] rxed expected[%d]",
  9975. __func__, asm_token._token.session_id, ac->session);
  9976. return -EINVAL;
  9977. }
  9978. return 0;
  9979. }
  9980. int __init q6asm_init(void)
  9981. {
  9982. int lcnt, ret;
  9983. pr_debug("%s:\n", __func__);
  9984. memset(session, 0, sizeof(struct audio_session) *
  9985. (ASM_ACTIVE_STREAMS_ALLOWED + 1));
  9986. for (lcnt = 0; lcnt <= ASM_ACTIVE_STREAMS_ALLOWED; lcnt++) {
  9987. spin_lock_init(&(session[lcnt].session_lock));
  9988. mutex_init(&(session[lcnt].mutex_lock_per_session));
  9989. }
  9990. set_custom_topology = 1;
  9991. /*setup common client used for cal mem map */
  9992. common_client.session = ASM_CONTROL_SESSION;
  9993. common_client.port[0].buf = &common_buf[0];
  9994. common_client.port[1].buf = &common_buf[1];
  9995. init_waitqueue_head(&common_client.cmd_wait);
  9996. init_waitqueue_head(&common_client.time_wait);
  9997. init_waitqueue_head(&common_client.mem_wait);
  9998. atomic_set(&common_client.time_flag, 1);
  9999. INIT_LIST_HEAD(&common_client.port[0].mem_map_handle);
  10000. INIT_LIST_HEAD(&common_client.port[1].mem_map_handle);
  10001. mutex_init(&common_client.cmd_lock);
  10002. for (lcnt = 0; lcnt <= OUT; lcnt++) {
  10003. mutex_init(&common_client.port[lcnt].lock);
  10004. spin_lock_init(&common_client.port[lcnt].dsp_lock);
  10005. }
  10006. atomic_set(&common_client.cmd_state, 0);
  10007. atomic_set(&common_client.mem_state, 0);
  10008. ret = q6asm_init_cal_data();
  10009. if (ret)
  10010. pr_err("%s: could not init cal data! ret %d\n",
  10011. __func__, ret);
  10012. config_debug_fs_init();
  10013. return 0;
  10014. }
  10015. void q6asm_exit(void)
  10016. {
  10017. q6asm_delete_cal_data();
  10018. }