q6asm.c 272 KB

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