q6asm.c 275 KB

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