q6asm.c 295 KB

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