q6asm.c 271 KB

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