q6asm.c 302 KB

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