q6adm.c 165 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/module.h>
  6. #include <linux/slab.h>
  7. #include <linux/wait.h>
  8. #include <linux/sched.h>
  9. #include <linux/jiffies.h>
  10. #include <linux/uaccess.h>
  11. #include <linux/atomic.h>
  12. #include <sound/asound.h>
  13. #include <dsp/msm-dts-srs-tm-config.h>
  14. #include <dsp/apr_audio-v2.h>
  15. #include <dsp/q6adm-v2.h>
  16. #include <dsp/q6audio-v2.h>
  17. #include <dsp/q6afe-v2.h>
  18. #include <dsp/q6core.h>
  19. #include <dsp/audio_cal_utils.h>
  20. #include <dsp/q6common.h>
  21. #include <ipc/apr.h>
  22. #include "adsp_err.h"
  23. #define TIMEOUT_MS 1000
  24. #define RESET_COPP_ID 99
  25. #define INVALID_COPP_ID 0xFF
  26. /* Used for inband payload copy, max size is 4k */
  27. /* 3 is to account for module, instance & param ID in payload */
  28. #define ADM_GET_PARAMETER_LENGTH (4096 - APR_HDR_SIZE - 3 * sizeof(uint32_t))
  29. #define ULL_SUPPORTED_BITS_PER_SAMPLE 16
  30. #define ULL_SUPPORTED_SAMPLE_RATE 48000
  31. #ifndef CONFIG_DOLBY_DAP
  32. #undef DOLBY_ADM_COPP_TOPOLOGY_ID
  33. #define DOLBY_ADM_COPP_TOPOLOGY_ID 0xFFFFFFFE
  34. #endif
  35. #ifndef CONFIG_DOLBY_DS2
  36. #undef DS2_ADM_COPP_TOPOLOGY_ID
  37. #define DS2_ADM_COPP_TOPOLOGY_ID 0xFFFFFFFF
  38. #endif
  39. #define SESSION_TYPE_RX 0
  40. /* ENUM for adm_status */
  41. enum adm_cal_status {
  42. ADM_STATUS_CALIBRATION_REQUIRED = 0,
  43. ADM_STATUS_MAX,
  44. };
  45. struct adm_copp {
  46. atomic_t id[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  47. atomic_t cnt[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  48. atomic_t topology[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  49. atomic_t mode[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  50. atomic_t stat[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  51. atomic_t rate[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  52. atomic_t bit_width[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  53. atomic_t channels[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  54. atomic_t app_type[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  55. atomic_t acdb_id[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  56. atomic_t session_type[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  57. wait_queue_head_t wait[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  58. wait_queue_head_t adm_delay_wait[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  59. atomic_t adm_delay_stat[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  60. uint32_t adm_delay[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  61. unsigned long adm_status[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  62. };
  63. struct source_tracking_data {
  64. struct dma_buf *dma_buf;
  65. struct param_outband memmap;
  66. int apr_cmd_status;
  67. };
  68. struct adm_ctl {
  69. void *apr;
  70. struct adm_copp copp;
  71. atomic_t matrix_map_stat;
  72. wait_queue_head_t matrix_map_wait;
  73. atomic_t adm_stat;
  74. wait_queue_head_t adm_wait;
  75. struct cal_type_data *cal_data[ADM_MAX_CAL_TYPES];
  76. atomic_t mem_map_handles[ADM_MEM_MAP_INDEX_MAX];
  77. atomic_t mem_map_index;
  78. struct param_outband outband_memmap;
  79. struct source_tracking_data sourceTrackingData;
  80. int set_custom_topology;
  81. int ec_ref_rx;
  82. int num_ec_ref_rx_chans;
  83. int ec_ref_rx_bit_width;
  84. int ec_ref_rx_sampling_rate;
  85. int num_ec_ref_rx_chans_downmixed;
  86. uint16_t ec_ref_chmixer_weights[PCM_FORMAT_MAX_NUM_CHANNEL_V8]
  87. [PCM_FORMAT_MAX_NUM_CHANNEL_V8];
  88. int ffecns_port_id;
  89. int native_mode;
  90. };
  91. static struct adm_ctl this_adm;
  92. struct adm_multi_ch_map {
  93. bool set_channel_map;
  94. char channel_mapping[PCM_FORMAT_MAX_NUM_CHANNEL_V8];
  95. };
  96. #define ADM_MCH_MAP_IDX_PLAYBACK 0
  97. #define ADM_MCH_MAP_IDX_REC 1
  98. static struct adm_multi_ch_map multi_ch_maps[2] = {
  99. { false,
  100. {0, 0, 0, 0, 0, 0, 0, 0,
  101. 0, 0, 0, 0, 0, 0, 0, 0,
  102. 0, 0, 0, 0, 0, 0, 0, 0,
  103. 0, 0, 0, 0, 0, 0, 0, 0}
  104. },
  105. { false,
  106. {0, 0, 0, 0, 0, 0, 0, 0,
  107. 0, 0, 0, 0, 0, 0, 0, 0,
  108. 0, 0, 0, 0, 0, 0, 0, 0,
  109. 0, 0, 0, 0, 0, 0, 0, 0}
  110. }
  111. };
  112. static struct adm_multi_ch_map port_channel_map[AFE_MAX_PORTS];
  113. static int adm_get_parameters[MAX_COPPS_PER_PORT * ADM_GET_PARAMETER_LENGTH];
  114. static int adm_module_topo_list[MAX_COPPS_PER_PORT *
  115. ADM_GET_TOPO_MODULE_INSTANCE_LIST_LENGTH];
  116. static struct mutex dts_srs_lock;
  117. void msm_dts_srs_acquire_lock(void)
  118. {
  119. mutex_lock(&dts_srs_lock);
  120. }
  121. void msm_dts_srs_release_lock(void)
  122. {
  123. mutex_unlock(&dts_srs_lock);
  124. }
  125. static int adm_arrange_mch_map_v8(
  126. struct adm_device_endpoint_payload *ep_payload,
  127. int path,
  128. int channel_mode,
  129. int port_idx);
  130. /**
  131. * adm_validate_and_get_port_index -
  132. * validate given port id
  133. *
  134. * @port_id: Port ID number
  135. *
  136. * Returns valid index on success or error on failure
  137. */
  138. int adm_validate_and_get_port_index(int port_id)
  139. {
  140. int index;
  141. int ret;
  142. ret = q6audio_validate_port(port_id);
  143. if (ret < 0) {
  144. pr_err("%s: port validation failed id 0x%x ret %d\n",
  145. __func__, port_id, ret);
  146. return -EINVAL;
  147. }
  148. index = afe_get_port_index(port_id);
  149. if (index < 0 || index >= AFE_MAX_PORTS) {
  150. pr_err("%s: Invalid port idx %d port_id 0x%x\n",
  151. __func__, index,
  152. port_id);
  153. return -EINVAL;
  154. }
  155. pr_debug("%s: port_idx- %d\n", __func__, index);
  156. return index;
  157. }
  158. EXPORT_SYMBOL(adm_validate_and_get_port_index);
  159. /**
  160. * adm_get_default_copp_idx -
  161. * retrieve default copp_idx for given port
  162. *
  163. * @port_id: Port ID number
  164. *
  165. * Returns valid value on success or error on failure
  166. */
  167. int adm_get_default_copp_idx(int port_id)
  168. {
  169. int port_idx = adm_validate_and_get_port_index(port_id), idx;
  170. if (port_idx < 0) {
  171. pr_err("%s: Invalid port id: 0x%x", __func__, port_id);
  172. return -EINVAL;
  173. }
  174. pr_debug("%s: port_idx:%d\n", __func__, port_idx);
  175. for (idx = 0; idx < MAX_COPPS_PER_PORT; idx++) {
  176. if (atomic_read(&this_adm.copp.id[port_idx][idx]) !=
  177. RESET_COPP_ID)
  178. return idx;
  179. }
  180. return -EINVAL;
  181. }
  182. EXPORT_SYMBOL(adm_get_default_copp_idx);
  183. int adm_get_topology_for_port_from_copp_id(int port_id, int copp_id)
  184. {
  185. int port_idx = adm_validate_and_get_port_index(port_id), idx;
  186. if (port_idx < 0) {
  187. pr_err("%s: Invalid port id: 0x%x", __func__, port_id);
  188. return 0;
  189. }
  190. for (idx = 0; idx < MAX_COPPS_PER_PORT; idx++)
  191. if (atomic_read(&this_adm.copp.id[port_idx][idx]) == copp_id)
  192. return atomic_read(&this_adm.copp.topology[port_idx]
  193. [idx]);
  194. pr_err("%s: Invalid copp_id %d port_id 0x%x\n",
  195. __func__, copp_id, port_id);
  196. return 0;
  197. }
  198. /**
  199. * adm_get_topology_for_port_copp_idx -
  200. * retrieve topology of given port/copp_idx
  201. *
  202. * @port_id: Port ID number
  203. * @copp_idx: copp index of ADM copp
  204. *
  205. * Returns valid value on success or 0 on failure
  206. */
  207. int adm_get_topology_for_port_copp_idx(int port_id, int copp_idx)
  208. {
  209. int port_idx = adm_validate_and_get_port_index(port_id);
  210. if (port_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  211. pr_err("%s: Invalid port: 0x%x copp id: 0x%x",
  212. __func__, port_id, copp_idx);
  213. return 0;
  214. }
  215. return atomic_read(&this_adm.copp.topology[port_idx][copp_idx]);
  216. }
  217. EXPORT_SYMBOL(adm_get_topology_for_port_copp_idx);
  218. int adm_get_indexes_from_copp_id(int copp_id, int *copp_idx, int *port_idx)
  219. {
  220. int p_idx, c_idx;
  221. for (p_idx = 0; p_idx < AFE_MAX_PORTS; p_idx++) {
  222. for (c_idx = 0; c_idx < MAX_COPPS_PER_PORT; c_idx++) {
  223. if (atomic_read(&this_adm.copp.id[p_idx][c_idx])
  224. == copp_id) {
  225. if (copp_idx != NULL)
  226. *copp_idx = c_idx;
  227. if (port_idx != NULL)
  228. *port_idx = p_idx;
  229. return 0;
  230. }
  231. }
  232. }
  233. return -EINVAL;
  234. }
  235. static int adm_get_copp_id(int port_idx, int copp_idx)
  236. {
  237. pr_debug("%s: port_idx:%d copp_idx:%d\n", __func__, port_idx, copp_idx);
  238. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  239. pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
  240. return -EINVAL;
  241. }
  242. return atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
  243. }
  244. static int adm_get_idx_if_copp_exists(int port_idx, int topology, int mode,
  245. int rate, int bit_width, int app_type,
  246. int session_type)
  247. {
  248. int idx;
  249. pr_debug("%s: port_idx-%d, topology-0x%x, mode-%d, rate-%d, bit_width-%d\n",
  250. __func__, port_idx, topology, mode, rate, bit_width);
  251. for (idx = 0; idx < MAX_COPPS_PER_PORT; idx++)
  252. if ((topology ==
  253. atomic_read(&this_adm.copp.topology[port_idx][idx])) &&
  254. (mode == atomic_read(&this_adm.copp.mode[port_idx][idx])) &&
  255. (rate == atomic_read(&this_adm.copp.rate[port_idx][idx])) &&
  256. (bit_width ==
  257. atomic_read(&this_adm.copp.bit_width[port_idx][idx])) &&
  258. (session_type ==
  259. atomic_read(
  260. &this_adm.copp.session_type[port_idx][idx])) &&
  261. (app_type ==
  262. atomic_read(&this_adm.copp.app_type[port_idx][idx])))
  263. return idx;
  264. return -EINVAL;
  265. }
  266. static int adm_get_next_available_copp(int port_idx)
  267. {
  268. int idx;
  269. pr_debug("%s:\n", __func__);
  270. for (idx = 0; idx < MAX_COPPS_PER_PORT; idx++) {
  271. pr_debug("%s: copp_id:0x%x port_idx:%d idx:%d\n", __func__,
  272. atomic_read(&this_adm.copp.id[port_idx][idx]),
  273. port_idx, idx);
  274. if (atomic_read(&this_adm.copp.id[port_idx][idx]) ==
  275. RESET_COPP_ID)
  276. break;
  277. }
  278. return idx;
  279. }
  280. /**
  281. * srs_trumedia_open -
  282. * command to set SRS trumedia open
  283. *
  284. * @port_id: Port ID number
  285. * @copp_idx: copp index of ADM copp
  286. * @srs_tech_id: SRS tech index
  287. * @srs_params: params pointer
  288. *
  289. * Returns 0 on success or error on failure
  290. */
  291. int srs_trumedia_open(int port_id, int copp_idx, __s32 srs_tech_id,
  292. void *srs_params)
  293. {
  294. struct param_hdr_v3 param_hdr;
  295. struct mem_mapping_hdr mem_hdr;
  296. u32 total_param_size = 0;
  297. bool outband = false;
  298. int port_idx;
  299. int ret = 0;
  300. pr_debug("SRS - %s", __func__);
  301. memset(&param_hdr, 0, sizeof(param_hdr));
  302. memset(&mem_hdr, 0, sizeof(mem_hdr));
  303. port_id = afe_convert_virtual_to_portid(port_id);
  304. port_idx = adm_validate_and_get_port_index(port_id);
  305. if (port_idx < 0) {
  306. pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
  307. return -EINVAL;
  308. }
  309. param_hdr.module_id = SRS_TRUMEDIA_MODULE_ID;
  310. param_hdr.instance_id = INSTANCE_ID_0;
  311. switch (srs_tech_id) {
  312. case SRS_ID_GLOBAL: {
  313. param_hdr.param_id = SRS_TRUMEDIA_PARAMS;
  314. param_hdr.param_size =
  315. sizeof(struct srs_trumedia_params_GLOBAL);
  316. break;
  317. }
  318. case SRS_ID_WOWHD: {
  319. param_hdr.param_id = SRS_TRUMEDIA_PARAMS_WOWHD;
  320. param_hdr.param_size = sizeof(struct srs_trumedia_params_WOWHD);
  321. break;
  322. }
  323. case SRS_ID_CSHP: {
  324. param_hdr.param_id = SRS_TRUMEDIA_PARAMS_CSHP;
  325. param_hdr.param_size = sizeof(struct srs_trumedia_params_CSHP);
  326. break;
  327. }
  328. case SRS_ID_HPF: {
  329. param_hdr.param_id = SRS_TRUMEDIA_PARAMS_HPF;
  330. param_hdr.param_size = sizeof(struct srs_trumedia_params_HPF);
  331. break;
  332. }
  333. case SRS_ID_AEQ: {
  334. u8 *update_params_ptr = (u8 *) this_adm.outband_memmap.kvaddr;
  335. outband = true;
  336. if (update_params_ptr == NULL) {
  337. pr_err("ADM_SRS_TRUMEDIA - %s: null memmap for AEQ params\n",
  338. __func__);
  339. ret = -EINVAL;
  340. goto fail_cmd;
  341. }
  342. param_hdr.param_id = SRS_TRUMEDIA_PARAMS_AEQ;
  343. param_hdr.param_size = sizeof(struct srs_trumedia_params_AEQ);
  344. ret = q6common_pack_pp_params(update_params_ptr, &param_hdr,
  345. srs_params, &total_param_size);
  346. if (ret) {
  347. pr_err("%s: Failed to pack param header and data, error %d\n",
  348. __func__, ret);
  349. goto fail_cmd;
  350. }
  351. break;
  352. }
  353. case SRS_ID_HL: {
  354. param_hdr.param_id = SRS_TRUMEDIA_PARAMS_HL;
  355. param_hdr.param_size = sizeof(struct srs_trumedia_params_HL);
  356. break;
  357. }
  358. case SRS_ID_GEQ: {
  359. param_hdr.param_id = SRS_TRUMEDIA_PARAMS_GEQ;
  360. param_hdr.param_size = sizeof(struct srs_trumedia_params_GEQ);
  361. break;
  362. }
  363. default:
  364. goto fail_cmd;
  365. }
  366. if (outband && this_adm.outband_memmap.paddr) {
  367. mem_hdr.data_payload_addr_lsw =
  368. lower_32_bits(this_adm.outband_memmap.paddr);
  369. mem_hdr.data_payload_addr_msw =
  370. msm_audio_populate_upper_32_bits(
  371. this_adm.outband_memmap.paddr);
  372. mem_hdr.mem_map_handle = atomic_read(
  373. &this_adm.mem_map_handles[ADM_SRS_TRUMEDIA]);
  374. ret = adm_set_pp_params(port_id, copp_idx, &mem_hdr, NULL,
  375. total_param_size);
  376. } else {
  377. ret = adm_pack_and_set_one_pp_param(port_id, copp_idx,
  378. param_hdr,
  379. (u8 *) srs_params);
  380. }
  381. if (ret < 0)
  382. pr_err("SRS - %s: ADM enable for port %d failed\n", __func__,
  383. port_id);
  384. fail_cmd:
  385. return ret;
  386. }
  387. EXPORT_SYMBOL(srs_trumedia_open);
  388. static int adm_populate_channel_weight(u16 *ptr,
  389. struct msm_pcm_channel_mixer *ch_mixer,
  390. int channel_index)
  391. {
  392. u16 i, j, start_index = 0;
  393. if (channel_index > ch_mixer->output_channel) {
  394. pr_err("%s: channel index %d is larger than output_channel %d\n",
  395. __func__, channel_index, ch_mixer->output_channel);
  396. return -EINVAL;
  397. }
  398. for (i = 0; i < ch_mixer->output_channel; i++) {
  399. pr_debug("%s: weight for output %d:", __func__, i);
  400. for (j = 0; j < ADM_MAX_CHANNELS; j++)
  401. pr_debug(" %d",
  402. ch_mixer->channel_weight[i][j]);
  403. pr_debug("\n");
  404. }
  405. for (i = 0; i < channel_index; ++i)
  406. start_index += ch_mixer->input_channels[i];
  407. for (i = 0; i < ch_mixer->output_channel; ++i) {
  408. for (j = start_index;
  409. j < start_index +
  410. ch_mixer->input_channels[channel_index]; j++) {
  411. *ptr = ch_mixer->channel_weight[i][j];
  412. pr_debug("%s: ptr[%d][%d] = %d\n",
  413. __func__, i, j, *ptr);
  414. ptr++;
  415. }
  416. }
  417. return 0;
  418. }
  419. /*
  420. * adm_programable_channel_mixer
  421. *
  422. * Receives port_id, copp_idx, session_id, session_type, ch_mixer
  423. * and channel_index to send ADM command to mix COPP data.
  424. *
  425. * port_id - Passed value, port_id for which backend is wanted
  426. * copp_idx - Passed value, copp_idx for which COPP is wanted
  427. * session_id - Passed value, session_id for which session is needed
  428. * session_type - Passed value, session_type for RX or TX
  429. * ch_mixer - Passed value, ch_mixer for which channel mixer config is needed
  430. * channel_index - Passed value, channel_index for which channel is needed
  431. */
  432. int adm_programable_channel_mixer(int port_id, int copp_idx, int session_id,
  433. int session_type,
  434. struct msm_pcm_channel_mixer *ch_mixer,
  435. int channel_index)
  436. {
  437. struct adm_cmd_set_pspd_mtmx_strtr_params_v5 *adm_params = NULL;
  438. struct param_hdr_v1 data_v5;
  439. int ret = 0, port_idx, sz = 0, param_size = 0;
  440. struct adm_device_endpoint_payload ep_params = {0, 0, 0, {0}};
  441. u16 *adm_pspd_params;
  442. u16 *ptr;
  443. int index = 0, i = 0, path_type = ADM_PATH_PLAYBACK;
  444. pr_debug("%s: port_id = %d\n", __func__, port_id);
  445. port_id = afe_convert_virtual_to_portid(port_id);
  446. port_idx = adm_validate_and_get_port_index(port_id);
  447. if (port_idx < 0) {
  448. pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
  449. return -EINVAL;
  450. }
  451. /*
  452. * check if PSPD is already configured
  453. * if it is configured already, return 0 without applying PSPD.
  454. */
  455. if (atomic_read(&this_adm.copp.cnt[port_idx][copp_idx]) > 1) {
  456. pr_debug("%s: copp.cnt:%#x\n", __func__,
  457. atomic_read(&this_adm.copp.cnt[port_idx][copp_idx]));
  458. return 0;
  459. }
  460. /*
  461. * First 8 bytes are 4 bytes as rule number, 2 bytes as output
  462. * channel and 2 bytes as input channel.
  463. * 2 * ch_mixer->output_channel means output channel mapping.
  464. * 2 * ch_mixer->input_channels[channel_index]) means input
  465. * channel mapping.
  466. * 2 * ch_mixer->input_channels[channel_index] *
  467. * ch_mixer->output_channel) means the channel mixer weighting
  468. * coefficients.
  469. * param_size needs to be a multiple of 4 bytes.
  470. */
  471. param_size = 2 * (4 + ch_mixer->output_channel +
  472. ch_mixer->input_channels[channel_index] +
  473. ch_mixer->input_channels[channel_index] *
  474. ch_mixer->output_channel);
  475. param_size = roundup(param_size, 4);
  476. sz = sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v5) +
  477. sizeof(struct default_chmixer_param_id_coeff) +
  478. sizeof(struct param_hdr_v1) + param_size;
  479. pr_debug("%s: sz = %d\n", __func__, sz);
  480. adm_params = kzalloc(sz, GFP_KERNEL);
  481. if (!adm_params)
  482. return -ENOMEM;
  483. adm_params->payload_addr_lsw = 0;
  484. adm_params->payload_addr_msw = 0;
  485. adm_params->mem_map_handle = 0;
  486. adm_params->direction = session_type;
  487. adm_params->sessionid = session_id;
  488. pr_debug("%s: copp_id = %d, session id %d\n", __func__,
  489. atomic_read(&this_adm.copp.id[port_idx][copp_idx]),
  490. session_id);
  491. adm_params->deviceid = atomic_read(
  492. &this_adm.copp.id[port_idx][copp_idx]);
  493. adm_params->reserved = 0;
  494. /*
  495. * This module is internal to ADSP and cannot be configured with
  496. * an instance id
  497. */
  498. data_v5.module_id = MTMX_MODULE_ID_DEFAULT_CHMIXER;
  499. data_v5.param_id = DEFAULT_CHMIXER_PARAM_ID_COEFF;
  500. data_v5.reserved = 0;
  501. data_v5.param_size = param_size;
  502. adm_params->payload_size =
  503. sizeof(struct default_chmixer_param_id_coeff) +
  504. sizeof(struct param_hdr_v1) + data_v5.param_size;
  505. adm_pspd_params = (u16 *)((u8 *)adm_params +
  506. sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v5));
  507. memcpy(adm_pspd_params, &data_v5, sizeof(data_v5));
  508. adm_pspd_params = (u16 *)((u8 *)adm_params +
  509. sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v5)
  510. + sizeof(data_v5));
  511. adm_pspd_params[0] = ch_mixer->rule;
  512. adm_pspd_params[2] = ch_mixer->output_channel;
  513. adm_pspd_params[3] = ch_mixer->input_channels[channel_index];
  514. index = 4;
  515. path_type = (session_type == SESSION_TYPE_RX) ?
  516. ADM_PATH_PLAYBACK : ADM_PATH_LIVE_REC;
  517. if (ch_mixer->override_out_ch_map) {
  518. memcpy(&adm_pspd_params[index], &ch_mixer->out_ch_map,
  519. ch_mixer->output_channel * sizeof(uint16_t));
  520. index += ch_mixer->output_channel;
  521. } else {
  522. ep_params.dev_num_channel = ch_mixer->output_channel;
  523. adm_arrange_mch_map_v8(&ep_params, path_type,
  524. ep_params.dev_num_channel, port_idx);
  525. for (i = 0; i < ch_mixer->output_channel; i++)
  526. adm_pspd_params[index++] = ep_params.dev_channel_mapping[i];
  527. }
  528. if (ch_mixer->override_in_ch_map) {
  529. memcpy(&adm_pspd_params[index], &ch_mixer->in_ch_map,
  530. ch_mixer->input_channel * sizeof(uint16_t));
  531. index += ch_mixer->input_channel;
  532. } else {
  533. ep_params.dev_num_channel = ch_mixer->input_channels[channel_index];
  534. adm_arrange_mch_map_v8(&ep_params, path_type,
  535. ep_params.dev_num_channel, port_idx);
  536. for (i = 0; i < ch_mixer->input_channels[channel_index]; i++)
  537. adm_pspd_params[index++] = ep_params.dev_channel_mapping[i];
  538. }
  539. ret = adm_populate_channel_weight(&adm_pspd_params[index],
  540. ch_mixer, channel_index);
  541. if (ret) {
  542. pr_err("%s: fail to get channel weight with error %d\n",
  543. __func__, ret);
  544. goto fail_cmd;
  545. }
  546. adm_params->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  547. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  548. adm_params->hdr.src_svc = APR_SVC_ADM;
  549. adm_params->hdr.src_domain = APR_DOMAIN_APPS;
  550. adm_params->hdr.src_port = port_id;
  551. adm_params->hdr.dest_svc = APR_SVC_ADM;
  552. adm_params->hdr.dest_domain = APR_DOMAIN_ADSP;
  553. adm_params->hdr.dest_port =
  554. atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
  555. adm_params->hdr.token = port_idx << 16 | copp_idx;
  556. adm_params->hdr.opcode = ADM_CMD_SET_PSPD_MTMX_STRTR_PARAMS_V5;
  557. adm_params->hdr.pkt_size = sz;
  558. adm_params->payload_addr_lsw = 0;
  559. adm_params->payload_addr_msw = 0;
  560. adm_params->mem_map_handle = 0;
  561. adm_params->reserved = 0;
  562. ptr = (u16 *)adm_params;
  563. for (index = 0; index < (sz / 2); index++)
  564. pr_debug("%s: adm_params[%d] = 0x%x\n",
  565. __func__, index, (unsigned int)ptr[index]);
  566. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], 0);
  567. ret = apr_send_pkt(this_adm.apr, (uint32_t *)adm_params);
  568. if (ret < 0) {
  569. pr_err("%s: Set params failed port %d rc %d\n", __func__,
  570. port_id, ret);
  571. ret = -EINVAL;
  572. goto fail_cmd;
  573. }
  574. ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  575. atomic_read(
  576. &this_adm.copp.stat[port_idx][copp_idx]) >= 0,
  577. msecs_to_jiffies(TIMEOUT_MS));
  578. if (!ret) {
  579. pr_err("%s: set params timed out port = %d\n",
  580. __func__, port_id);
  581. ret = -ETIMEDOUT;
  582. goto fail_cmd;
  583. }
  584. ret = 0;
  585. fail_cmd:
  586. kfree(adm_params);
  587. return ret;
  588. }
  589. EXPORT_SYMBOL(adm_programable_channel_mixer);
  590. /**
  591. * adm_set_stereo_to_custom_stereo -
  592. * command to update custom stereo
  593. *
  594. * @port_id: Port ID number
  595. * @copp_idx: copp index of ADM copp
  596. * @session_id: session id to be updated
  597. * @params: params pointer
  598. * @param_length: length of params
  599. *
  600. * Returns 0 on success or error on failure
  601. */
  602. int adm_set_stereo_to_custom_stereo(int port_id, int copp_idx,
  603. unsigned int session_id, char *params,
  604. uint32_t params_length)
  605. {
  606. struct adm_cmd_set_pspd_mtmx_strtr_params_v5 *adm_params = NULL;
  607. int sz, rc = 0, port_idx;
  608. pr_debug("%s:\n", __func__);
  609. port_id = afe_convert_virtual_to_portid(port_id);
  610. port_idx = adm_validate_and_get_port_index(port_id);
  611. if (port_idx < 0) {
  612. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  613. return -EINVAL;
  614. }
  615. sz = sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v5) +
  616. params_length;
  617. adm_params = kzalloc(sz, GFP_KERNEL);
  618. if (!adm_params) {
  619. pr_err("%s, adm params memory alloc failed\n", __func__);
  620. return -ENOMEM;
  621. }
  622. memcpy(((u8 *)adm_params +
  623. sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v5)),
  624. params, params_length);
  625. adm_params->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  626. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  627. adm_params->hdr.pkt_size = sz;
  628. adm_params->hdr.src_svc = APR_SVC_ADM;
  629. adm_params->hdr.src_domain = APR_DOMAIN_APPS;
  630. adm_params->hdr.src_port = port_id;
  631. adm_params->hdr.dest_svc = APR_SVC_ADM;
  632. adm_params->hdr.dest_domain = APR_DOMAIN_ADSP;
  633. adm_params->hdr.dest_port = 0; /* Ignored */;
  634. adm_params->hdr.token = port_idx << 16 | copp_idx;
  635. adm_params->hdr.opcode = ADM_CMD_SET_PSPD_MTMX_STRTR_PARAMS_V5;
  636. adm_params->payload_addr_lsw = 0;
  637. adm_params->payload_addr_msw = 0;
  638. adm_params->mem_map_handle = 0;
  639. adm_params->payload_size = params_length;
  640. /* direction RX as 0 */
  641. adm_params->direction = ADM_MATRIX_ID_AUDIO_RX;
  642. /* session id for this cmd to be applied on */
  643. adm_params->sessionid = session_id;
  644. adm_params->deviceid =
  645. atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
  646. adm_params->reserved = 0;
  647. pr_debug("%s: deviceid %d, session_id %d, src_port %d, dest_port %d\n",
  648. __func__, adm_params->deviceid, adm_params->sessionid,
  649. adm_params->hdr.src_port, adm_params->hdr.dest_port);
  650. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
  651. rc = apr_send_pkt(this_adm.apr, (uint32_t *)adm_params);
  652. if (rc < 0) {
  653. pr_err("%s: Set params failed port = 0x%x rc %d\n",
  654. __func__, port_id, rc);
  655. rc = -EINVAL;
  656. goto set_stereo_to_custom_stereo_return;
  657. }
  658. /* Wait for the callback */
  659. rc = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  660. atomic_read(&this_adm.copp.stat
  661. [port_idx][copp_idx]) >= 0,
  662. msecs_to_jiffies(TIMEOUT_MS));
  663. if (!rc) {
  664. pr_err("%s: Set params timed out port = 0x%x\n", __func__,
  665. port_id);
  666. rc = -EINVAL;
  667. goto set_stereo_to_custom_stereo_return;
  668. } else if (atomic_read(&this_adm.copp.stat
  669. [port_idx][copp_idx]) > 0) {
  670. pr_err("%s: DSP returned error[%s]\n", __func__,
  671. adsp_err_get_err_str(atomic_read(
  672. &this_adm.copp.stat
  673. [port_idx][copp_idx])));
  674. rc = adsp_err_get_lnx_err_code(
  675. atomic_read(&this_adm.copp.stat
  676. [port_idx][copp_idx]));
  677. goto set_stereo_to_custom_stereo_return;
  678. }
  679. rc = 0;
  680. set_stereo_to_custom_stereo_return:
  681. kfree(adm_params);
  682. return rc;
  683. }
  684. EXPORT_SYMBOL(adm_set_stereo_to_custom_stereo);
  685. /*
  686. * adm_set_custom_chmix_cfg:
  687. * Set the custom channel mixer configuration for ADM
  688. *
  689. * @port_id: Backend port id
  690. * @copp_idx: ADM copp index
  691. * @session_id: ID of the requesting session
  692. * @params: Expected packaged params for channel mixer
  693. * @params_length: Length of the params to be set
  694. * @direction: RX or TX direction
  695. * @stream_type: Audio or Listen stream type
  696. */
  697. int adm_set_custom_chmix_cfg(int port_id, int copp_idx,
  698. unsigned int session_id, char *params,
  699. uint32_t params_length, int direction,
  700. int stream_type)
  701. {
  702. struct adm_cmd_set_pspd_mtmx_strtr_params_v6 *adm_params = NULL;
  703. int sz, rc = 0, port_idx;
  704. port_id = afe_convert_virtual_to_portid(port_id);
  705. port_idx = adm_validate_and_get_port_index(port_id);
  706. if (port_idx < 0) {
  707. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  708. return -EINVAL;
  709. }
  710. sz = sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v6) +
  711. params_length;
  712. adm_params = kzalloc(sz, GFP_KERNEL);
  713. if (!adm_params) {
  714. pr_err("%s, adm params memory alloc failed\n", __func__);
  715. return -ENOMEM;
  716. }
  717. memcpy(((u8 *)adm_params +
  718. sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v6)),
  719. params, params_length);
  720. adm_params->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  721. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  722. adm_params->hdr.pkt_size = sz;
  723. adm_params->hdr.src_svc = APR_SVC_ADM;
  724. adm_params->hdr.src_domain = APR_DOMAIN_APPS;
  725. adm_params->hdr.src_port = port_id;
  726. adm_params->hdr.dest_svc = APR_SVC_ADM;
  727. adm_params->hdr.dest_domain = APR_DOMAIN_ADSP;
  728. adm_params->hdr.dest_port = 0; /* Ignored */;
  729. adm_params->hdr.token = port_idx << 16 | copp_idx;
  730. adm_params->hdr.opcode = ADM_CMD_SET_PSPD_MTMX_STRTR_PARAMS_V6;
  731. adm_params->payload_addr_lsw = 0;
  732. adm_params->payload_addr_msw = 0;
  733. adm_params->mem_map_handle = 0;
  734. adm_params->payload_size = params_length;
  735. adm_params->direction = direction;
  736. /* session id for this cmd to be applied on */
  737. adm_params->sessionid = session_id;
  738. adm_params->deviceid =
  739. atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
  740. /* connecting stream type i.e. lsm or asm */
  741. adm_params->stream_type = stream_type;
  742. pr_debug("%s: deviceid %d, session_id %d, src_port %d, dest_port %d\n",
  743. __func__, adm_params->deviceid, adm_params->sessionid,
  744. adm_params->hdr.src_port, adm_params->hdr.dest_port);
  745. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
  746. rc = apr_send_pkt(this_adm.apr, (uint32_t *)adm_params);
  747. if (rc < 0) {
  748. pr_err("%s: Set params failed port = 0x%x rc %d\n",
  749. __func__, port_id, rc);
  750. rc = -EINVAL;
  751. goto exit;
  752. }
  753. /* Wait for the callback */
  754. rc = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  755. atomic_read(&this_adm.copp.stat
  756. [port_idx][copp_idx]),
  757. msecs_to_jiffies(TIMEOUT_MS));
  758. if (!rc) {
  759. pr_err("%s: Set params timed out port = 0x%x\n", __func__,
  760. port_id);
  761. rc = -EINVAL;
  762. goto exit;
  763. } else if (atomic_read(&this_adm.copp.stat
  764. [port_idx][copp_idx]) > 0) {
  765. pr_err("%s: DSP returned error[%s]\n", __func__,
  766. adsp_err_get_err_str(atomic_read(
  767. &this_adm.copp.stat
  768. [port_idx][copp_idx])));
  769. rc = adsp_err_get_lnx_err_code(
  770. atomic_read(&this_adm.copp.stat
  771. [port_idx][copp_idx]));
  772. goto exit;
  773. }
  774. rc = 0;
  775. exit:
  776. kfree(adm_params);
  777. return rc;
  778. }
  779. EXPORT_SYMBOL(adm_set_custom_chmix_cfg);
  780. /*
  781. * With pre-packed data, only the opcode differes from V5 and V6.
  782. * Use q6common_pack_pp_params to pack the data correctly.
  783. */
  784. int adm_set_pp_params(int port_id, int copp_idx,
  785. struct mem_mapping_hdr *mem_hdr, u8 *param_data,
  786. u32 param_size)
  787. {
  788. struct adm_cmd_set_pp_params *adm_set_params = NULL;
  789. int size = 0;
  790. int port_idx = 0;
  791. atomic_t *copp_stat = NULL;
  792. int ret = 0;
  793. port_id = afe_convert_virtual_to_portid(port_id);
  794. port_idx = adm_validate_and_get_port_index(port_id);
  795. if (port_idx < 0 || port_idx >= AFE_MAX_PORTS) {
  796. pr_err("%s: Invalid port_idx 0x%x\n", __func__, port_idx);
  797. return -EINVAL;
  798. } else if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  799. pr_err("%s: Invalid copp_idx 0x%x\n", __func__, copp_idx);
  800. return -EINVAL;
  801. }
  802. /* Only add params_size in inband case */
  803. size = sizeof(struct adm_cmd_set_pp_params);
  804. if (param_data != NULL)
  805. size += param_size;
  806. adm_set_params = kzalloc(size, GFP_KERNEL);
  807. if (!adm_set_params)
  808. return -ENOMEM;
  809. adm_set_params->apr_hdr.hdr_field =
  810. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  811. APR_PKT_VER);
  812. adm_set_params->apr_hdr.pkt_size = size;
  813. adm_set_params->apr_hdr.src_svc = APR_SVC_ADM;
  814. adm_set_params->apr_hdr.src_domain = APR_DOMAIN_APPS;
  815. adm_set_params->apr_hdr.src_port = port_id;
  816. adm_set_params->apr_hdr.dest_svc = APR_SVC_ADM;
  817. adm_set_params->apr_hdr.dest_domain = APR_DOMAIN_ADSP;
  818. adm_set_params->apr_hdr.dest_port =
  819. atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
  820. adm_set_params->apr_hdr.token = port_idx << 16 | copp_idx;
  821. if (q6common_is_instance_id_supported())
  822. adm_set_params->apr_hdr.opcode = ADM_CMD_SET_PP_PARAMS_V6;
  823. else
  824. adm_set_params->apr_hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
  825. adm_set_params->payload_size = param_size;
  826. if (mem_hdr != NULL) {
  827. /* Out of Band Case */
  828. adm_set_params->mem_hdr = *mem_hdr;
  829. } else if (param_data != NULL) {
  830. /*
  831. * In band case. Parameter data must be pre-packed with its
  832. * header before calling this function. Use
  833. * q6common_pack_pp_params to pack parameter data and header
  834. * correctly.
  835. */
  836. memcpy(&adm_set_params->param_data, param_data, param_size);
  837. } else {
  838. pr_err("%s: Received NULL pointers for both memory header and param data\n",
  839. __func__);
  840. ret = -EINVAL;
  841. goto done;
  842. }
  843. copp_stat = &this_adm.copp.stat[port_idx][copp_idx];
  844. atomic_set(copp_stat, -1);
  845. ret = apr_send_pkt(this_adm.apr, (uint32_t *) adm_set_params);
  846. if (ret < 0) {
  847. pr_err("%s: Set params APR send failed port = 0x%x ret %d\n",
  848. __func__, port_id, ret);
  849. goto done;
  850. }
  851. ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  852. atomic_read(copp_stat) >= 0,
  853. msecs_to_jiffies(TIMEOUT_MS));
  854. if (!ret) {
  855. pr_err("%s: Set params timed out port = 0x%x\n", __func__,
  856. port_id);
  857. ret = -ETIMEDOUT;
  858. goto done;
  859. }
  860. if (atomic_read(copp_stat) > 0) {
  861. pr_err("%s: DSP returned error[%s]\n", __func__,
  862. adsp_err_get_err_str(atomic_read(copp_stat)));
  863. ret = adsp_err_get_lnx_err_code(atomic_read(copp_stat));
  864. goto done;
  865. }
  866. ret = 0;
  867. done:
  868. kfree(adm_set_params);
  869. return ret;
  870. }
  871. EXPORT_SYMBOL(adm_set_pp_params);
  872. int adm_pack_and_set_one_pp_param(int port_id, int copp_idx,
  873. struct param_hdr_v3 param_hdr, u8 *param_data)
  874. {
  875. u8 *packed_data = NULL;
  876. u32 total_size = 0;
  877. int ret = 0;
  878. total_size = sizeof(union param_hdrs) + param_hdr.param_size;
  879. packed_data = kzalloc(total_size, GFP_KERNEL);
  880. if (!packed_data)
  881. return -ENOMEM;
  882. ret = q6common_pack_pp_params(packed_data, &param_hdr, param_data,
  883. &total_size);
  884. if (ret) {
  885. pr_err("%s: Failed to pack parameter data, error %d\n",
  886. __func__, ret);
  887. goto done;
  888. }
  889. ret = adm_set_pp_params(port_id, copp_idx, NULL, packed_data,
  890. total_size);
  891. if (ret)
  892. pr_err("%s: Failed to set parameter data, error %d\n", __func__,
  893. ret);
  894. done:
  895. kfree(packed_data);
  896. return ret;
  897. }
  898. EXPORT_SYMBOL(adm_pack_and_set_one_pp_param);
  899. /*
  900. * Only one parameter can be requested at a time. Therefore, packing and sending
  901. * the request can be handled locally.
  902. */
  903. int adm_get_pp_params(int port_id, int copp_idx, uint32_t client_id,
  904. struct mem_mapping_hdr *mem_hdr,
  905. struct param_hdr_v3 *param_hdr, u8 *returned_param_data)
  906. {
  907. struct adm_cmd_get_pp_params adm_get_params;
  908. int total_size = 0;
  909. int get_param_array_sz = ARRAY_SIZE(adm_get_parameters);
  910. int returned_param_size = 0;
  911. int returned_param_size_in_bytes = 0;
  912. int port_idx = 0;
  913. int idx = 0;
  914. atomic_t *copp_stat = NULL;
  915. int ret = 0;
  916. if (param_hdr == NULL) {
  917. pr_err("%s: Received NULL pointer for parameter header\n",
  918. __func__);
  919. return -EINVAL;
  920. }
  921. port_id = afe_convert_virtual_to_portid(port_id);
  922. port_idx = adm_validate_and_get_port_index(port_id);
  923. if (port_idx < 0 || port_idx >= AFE_MAX_PORTS) {
  924. pr_err("%s: Invalid port_idx 0x%x\n", __func__, port_idx);
  925. return -EINVAL;
  926. }
  927. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  928. pr_err("%s: Invalid copp_idx 0x%x\n", __func__, copp_idx);
  929. return -EINVAL;
  930. }
  931. memset(&adm_get_params, 0, sizeof(adm_get_params));
  932. if (mem_hdr != NULL)
  933. adm_get_params.mem_hdr = *mem_hdr;
  934. q6common_pack_pp_params((u8 *) &adm_get_params.param_hdr, param_hdr,
  935. NULL, &total_size);
  936. /* Pack APR header after filling body so total_size has correct value */
  937. adm_get_params.apr_hdr.hdr_field =
  938. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  939. APR_PKT_VER);
  940. adm_get_params.apr_hdr.pkt_size = sizeof(adm_get_params);
  941. adm_get_params.apr_hdr.src_svc = APR_SVC_ADM;
  942. adm_get_params.apr_hdr.src_domain = APR_DOMAIN_APPS;
  943. adm_get_params.apr_hdr.src_port = port_id;
  944. adm_get_params.apr_hdr.dest_svc = APR_SVC_ADM;
  945. adm_get_params.apr_hdr.dest_domain = APR_DOMAIN_ADSP;
  946. adm_get_params.apr_hdr.dest_port =
  947. atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
  948. adm_get_params.apr_hdr.token =
  949. port_idx << 16 | client_id << 8 | copp_idx;
  950. if (q6common_is_instance_id_supported())
  951. adm_get_params.apr_hdr.opcode = ADM_CMD_GET_PP_PARAMS_V6;
  952. else
  953. adm_get_params.apr_hdr.opcode = ADM_CMD_GET_PP_PARAMS_V5;
  954. copp_stat = &this_adm.copp.stat[port_idx][copp_idx];
  955. atomic_set(copp_stat, -1);
  956. ret = apr_send_pkt(this_adm.apr, (uint32_t *) &adm_get_params);
  957. if (ret < 0) {
  958. pr_err("%s: Get params APR send failed port = 0x%x ret %d\n",
  959. __func__, port_id, ret);
  960. ret = -EINVAL;
  961. goto done;
  962. }
  963. ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  964. atomic_read(copp_stat) >= 0,
  965. msecs_to_jiffies(TIMEOUT_MS));
  966. if (!ret) {
  967. pr_err("%s: Get params timed out port = 0x%x\n", __func__,
  968. port_id);
  969. ret = -ETIMEDOUT;
  970. goto done;
  971. }
  972. if (atomic_read(copp_stat) > 0) {
  973. pr_err("%s: DSP returned error[%s]\n", __func__,
  974. adsp_err_get_err_str(atomic_read(copp_stat)));
  975. ret = adsp_err_get_lnx_err_code(atomic_read(copp_stat));
  976. goto done;
  977. }
  978. ret = 0;
  979. /* Copy data to caller if sent in band */
  980. if (!returned_param_data) {
  981. pr_debug("%s: Received NULL pointer for param destination, not copying payload\n",
  982. __func__);
  983. return 0;
  984. }
  985. idx = ADM_GET_PARAMETER_LENGTH * copp_idx;
  986. returned_param_size = adm_get_parameters[idx];
  987. if (returned_param_size < 0 ||
  988. returned_param_size + idx + 1 > get_param_array_sz) {
  989. pr_err("%s: Invalid parameter size %d\n", __func__,
  990. returned_param_size);
  991. return -EINVAL;
  992. }
  993. returned_param_size_in_bytes = returned_param_size * sizeof(uint32_t);
  994. if (param_hdr->param_size < returned_param_size_in_bytes) {
  995. pr_err("%s: Provided buffer is not big enough, provided buffer size(%d) size needed(%d)\n",
  996. __func__, param_hdr->param_size,
  997. returned_param_size_in_bytes);
  998. return -EINVAL;
  999. }
  1000. memcpy(returned_param_data, &adm_get_parameters[idx + 1],
  1001. returned_param_size_in_bytes);
  1002. done:
  1003. return ret;
  1004. }
  1005. EXPORT_SYMBOL(adm_get_pp_params);
  1006. int adm_get_pp_topo_module_list_v2(int port_id, int copp_idx,
  1007. int32_t param_length,
  1008. int32_t *returned_params)
  1009. {
  1010. struct adm_cmd_get_pp_topo_module_list adm_get_module_list;
  1011. bool iid_supported = q6common_is_instance_id_supported();
  1012. int *topo_list;
  1013. int num_modules = 0;
  1014. int list_size = 0;
  1015. int port_idx, idx;
  1016. int i = 0;
  1017. atomic_t *copp_stat = NULL;
  1018. int ret = 0;
  1019. pr_debug("%s : port_id %x", __func__, port_id);
  1020. port_id = afe_convert_virtual_to_portid(port_id);
  1021. port_idx = adm_validate_and_get_port_index(port_id);
  1022. if (port_idx < 0) {
  1023. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  1024. return -EINVAL;
  1025. }
  1026. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  1027. pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
  1028. return -EINVAL;
  1029. }
  1030. memset(&adm_get_module_list, 0, sizeof(adm_get_module_list));
  1031. adm_get_module_list.apr_hdr.pkt_size = sizeof(adm_get_module_list);
  1032. adm_get_module_list.apr_hdr.src_svc = APR_SVC_ADM;
  1033. adm_get_module_list.apr_hdr.src_domain = APR_DOMAIN_APPS;
  1034. adm_get_module_list.apr_hdr.src_port = port_id;
  1035. adm_get_module_list.apr_hdr.dest_svc = APR_SVC_ADM;
  1036. adm_get_module_list.apr_hdr.dest_domain = APR_DOMAIN_ADSP;
  1037. adm_get_module_list.apr_hdr.dest_port =
  1038. atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
  1039. adm_get_module_list.apr_hdr.token = port_idx << 16 | copp_idx;
  1040. /*
  1041. * Out of band functionality is not currently utilized.
  1042. * Assume in band.
  1043. */
  1044. if (iid_supported) {
  1045. adm_get_module_list.apr_hdr.opcode =
  1046. ADM_CMD_GET_PP_TOPO_MODULE_LIST_V2;
  1047. adm_get_module_list.param_max_size = param_length;
  1048. } else {
  1049. adm_get_module_list.apr_hdr.opcode =
  1050. ADM_CMD_GET_PP_TOPO_MODULE_LIST;
  1051. if (param_length > U16_MAX) {
  1052. pr_err("%s: Invalid param length for V1 %d\n", __func__,
  1053. param_length);
  1054. return -EINVAL;
  1055. }
  1056. adm_get_module_list.param_max_size = param_length << 16;
  1057. }
  1058. copp_stat = &this_adm.copp.stat[port_idx][copp_idx];
  1059. atomic_set(copp_stat, -1);
  1060. ret = apr_send_pkt(this_adm.apr, (uint32_t *) &adm_get_module_list);
  1061. if (ret < 0) {
  1062. pr_err("%s: APR send pkt failed for port_id: 0x%x failed ret %d\n",
  1063. __func__, port_id, ret);
  1064. ret = -EINVAL;
  1065. goto done;
  1066. }
  1067. ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  1068. atomic_read(copp_stat) >= 0,
  1069. msecs_to_jiffies(TIMEOUT_MS));
  1070. if (!ret) {
  1071. pr_err("%s: Timeout for port_id: 0x%x\n", __func__, port_id);
  1072. ret = -ETIMEDOUT;
  1073. goto done;
  1074. }
  1075. if (atomic_read(copp_stat) > 0) {
  1076. pr_err("%s: DSP returned error[%s]\n", __func__,
  1077. adsp_err_get_err_str(atomic_read(copp_stat)));
  1078. ret = adsp_err_get_lnx_err_code(atomic_read(copp_stat));
  1079. goto done;
  1080. }
  1081. ret = 0;
  1082. if (returned_params) {
  1083. /*
  1084. * When processing ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST IID is
  1085. * added since it is not present. Therefore, there is no need to
  1086. * do anything different if IID is not supported here as it is
  1087. * already taken care of.
  1088. */
  1089. idx = ADM_GET_TOPO_MODULE_INSTANCE_LIST_LENGTH * copp_idx;
  1090. num_modules = adm_module_topo_list[idx];
  1091. if (num_modules < 0 || num_modules > MAX_MODULES_IN_TOPO) {
  1092. pr_err("%s: Invalid number of modules returned %d\n",
  1093. __func__, num_modules);
  1094. return -EINVAL;
  1095. }
  1096. list_size = num_modules * sizeof(struct module_instance_info);
  1097. if (param_length < list_size) {
  1098. pr_err("%s: Provided buffer not big enough to hold module-instance list, provided size %d, needed size %d\n",
  1099. __func__, param_length, list_size);
  1100. return -EINVAL;
  1101. }
  1102. topo_list = (int32_t *) (&adm_module_topo_list[idx]);
  1103. memcpy(returned_params, topo_list, list_size);
  1104. for (i = 1; i <= num_modules; i += 2) {
  1105. pr_debug("module = 0x%x instance = 0x%x\n",
  1106. returned_params[i], returned_params[i + 1]);
  1107. }
  1108. }
  1109. done:
  1110. return ret;
  1111. }
  1112. EXPORT_SYMBOL(adm_get_pp_topo_module_list_v2);
  1113. static void adm_callback_debug_print(struct apr_client_data *data)
  1114. {
  1115. uint32_t *payload;
  1116. payload = data->payload;
  1117. if (data->payload_size >= 8)
  1118. pr_debug("%s: code = 0x%x PL#0[0x%x], PL#1[0x%x], size = %d\n",
  1119. __func__, data->opcode, payload[0], payload[1],
  1120. data->payload_size);
  1121. else if (data->payload_size >= 4)
  1122. pr_debug("%s: code = 0x%x PL#0[0x%x], size = %d\n",
  1123. __func__, data->opcode, payload[0],
  1124. data->payload_size);
  1125. else
  1126. pr_debug("%s: code = 0x%x, size = %d\n",
  1127. __func__, data->opcode, data->payload_size);
  1128. }
  1129. /**
  1130. * adm_set_multi_ch_map -
  1131. * Update multi channel map info
  1132. *
  1133. * @channel_map: pointer with channel map info
  1134. * @path: direction or ADM path type
  1135. *
  1136. * Returns 0 on success or error on failure
  1137. */
  1138. int adm_set_multi_ch_map(char *channel_map, int path)
  1139. {
  1140. int idx;
  1141. if (path == ADM_PATH_PLAYBACK) {
  1142. idx = ADM_MCH_MAP_IDX_PLAYBACK;
  1143. } else if (path == ADM_PATH_LIVE_REC) {
  1144. idx = ADM_MCH_MAP_IDX_REC;
  1145. } else {
  1146. pr_err("%s: invalid attempt to set path %d\n", __func__, path);
  1147. return -EINVAL;
  1148. }
  1149. memcpy(multi_ch_maps[idx].channel_mapping, channel_map,
  1150. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  1151. multi_ch_maps[idx].set_channel_map = true;
  1152. return 0;
  1153. }
  1154. EXPORT_SYMBOL(adm_set_multi_ch_map);
  1155. /**
  1156. * adm_get_multi_ch_map -
  1157. * Retrieves multi channel map info
  1158. *
  1159. * @channel_map: pointer to be updated with channel map
  1160. * @path: direction or ADM path type
  1161. *
  1162. * Returns 0 on success or error on failure
  1163. */
  1164. int adm_get_multi_ch_map(char *channel_map, int path)
  1165. {
  1166. int idx;
  1167. if (path == ADM_PATH_PLAYBACK) {
  1168. idx = ADM_MCH_MAP_IDX_PLAYBACK;
  1169. } else if (path == ADM_PATH_LIVE_REC) {
  1170. idx = ADM_MCH_MAP_IDX_REC;
  1171. } else {
  1172. pr_err("%s: invalid attempt to get path %d\n", __func__, path);
  1173. return -EINVAL;
  1174. }
  1175. if (multi_ch_maps[idx].set_channel_map) {
  1176. memcpy(channel_map, multi_ch_maps[idx].channel_mapping,
  1177. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  1178. }
  1179. return 0;
  1180. }
  1181. EXPORT_SYMBOL(adm_get_multi_ch_map);
  1182. /**
  1183. * adm_set_port_multi_ch_map -
  1184. * Update port specific channel map info
  1185. *
  1186. * @channel_map: pointer with channel map info
  1187. * @port_id: port for which chmap is set
  1188. */
  1189. void adm_set_port_multi_ch_map(char *channel_map, int port_id)
  1190. {
  1191. int port_idx;
  1192. port_id = q6audio_convert_virtual_to_portid(port_id);
  1193. port_idx = adm_validate_and_get_port_index(port_id);
  1194. if (port_idx < 0) {
  1195. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  1196. return;
  1197. }
  1198. memcpy(port_channel_map[port_idx].channel_mapping, channel_map,
  1199. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  1200. port_channel_map[port_idx].set_channel_map = true;
  1201. }
  1202. EXPORT_SYMBOL(adm_set_port_multi_ch_map);
  1203. static int adm_process_get_param_response(u32 opcode, u32 idx, u32 *payload,
  1204. u32 payload_size)
  1205. {
  1206. struct adm_cmd_rsp_get_pp_params_v5 *v5_rsp = NULL;
  1207. struct adm_cmd_rsp_get_pp_params_v6 *v6_rsp = NULL;
  1208. u32 *param_data = NULL;
  1209. int data_size = 0;
  1210. int struct_size = 0;
  1211. if (payload == NULL) {
  1212. pr_err("%s: Payload is NULL\n", __func__);
  1213. return -EINVAL;
  1214. }
  1215. switch (opcode) {
  1216. case ADM_CMDRSP_GET_PP_PARAMS_V5:
  1217. struct_size = sizeof(struct adm_cmd_rsp_get_pp_params_v5);
  1218. if (payload_size < struct_size) {
  1219. pr_err("%s: payload size %d < expected size %d\n",
  1220. __func__, payload_size, struct_size);
  1221. break;
  1222. }
  1223. v5_rsp = (struct adm_cmd_rsp_get_pp_params_v5 *) payload;
  1224. data_size = v5_rsp->param_hdr.param_size;
  1225. param_data = v5_rsp->param_data;
  1226. break;
  1227. case ADM_CMDRSP_GET_PP_PARAMS_V6:
  1228. struct_size = sizeof(struct adm_cmd_rsp_get_pp_params_v6);
  1229. if (payload_size < struct_size) {
  1230. pr_err("%s: payload size %d < expected size %d\n",
  1231. __func__, payload_size, struct_size);
  1232. break;
  1233. }
  1234. v6_rsp = (struct adm_cmd_rsp_get_pp_params_v6 *) payload;
  1235. data_size = v6_rsp->param_hdr.param_size;
  1236. param_data = v6_rsp->param_data;
  1237. break;
  1238. default:
  1239. pr_err("%s: Invalid opcode %d\n", __func__, opcode);
  1240. return -EINVAL;
  1241. }
  1242. /*
  1243. * Just store the returned parameter data, not the header. The calling
  1244. * function is expected to know what it asked for. Therefore, there is
  1245. * no difference between V5 and V6.
  1246. */
  1247. if ((payload_size >= struct_size + data_size) &&
  1248. (ARRAY_SIZE(adm_get_parameters) > idx) &&
  1249. (ARRAY_SIZE(adm_get_parameters) > idx + 1 + data_size)) {
  1250. pr_debug("%s: Received parameter data in band\n",
  1251. __func__);
  1252. /*
  1253. * data_size is expressed in number of bytes, store in number of
  1254. * ints
  1255. */
  1256. adm_get_parameters[idx] =
  1257. data_size / sizeof(*adm_get_parameters);
  1258. pr_debug("%s: GET_PP PARAM: received parameter length: 0x%x\n",
  1259. __func__, adm_get_parameters[idx]);
  1260. /* store params after param_size */
  1261. memcpy(&adm_get_parameters[idx + 1], param_data, data_size);
  1262. } else if (payload_size == sizeof(uint32_t)) {
  1263. adm_get_parameters[idx] = -1;
  1264. pr_debug("%s: Out of band case, setting size to %d\n",
  1265. __func__, adm_get_parameters[idx]);
  1266. } else {
  1267. pr_err("%s: Invalid parameter combination, payload_size %d, idx %d\n",
  1268. __func__, payload_size, idx);
  1269. return -EINVAL;
  1270. }
  1271. return 0;
  1272. }
  1273. static int adm_process_get_topo_list_response(u32 opcode, int copp_idx,
  1274. u32 num_modules, u32 *payload,
  1275. u32 payload_size)
  1276. {
  1277. u32 *fill_list = NULL;
  1278. int idx = 0;
  1279. int i = 0;
  1280. int j = 0;
  1281. if (payload == NULL) {
  1282. pr_err("%s: Payload is NULL\n", __func__);
  1283. return -EINVAL;
  1284. } else if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  1285. pr_err("%s: Invalid COPP index %d\n", __func__, copp_idx);
  1286. return -EINVAL;
  1287. }
  1288. idx = ADM_GET_TOPO_MODULE_INSTANCE_LIST_LENGTH * copp_idx;
  1289. fill_list = adm_module_topo_list + idx;
  1290. *fill_list++ = num_modules;
  1291. for (i = 0; i < num_modules; i++) {
  1292. if (j > payload_size / sizeof(u32)) {
  1293. pr_err("%s: Invalid number of modules specified %d\n",
  1294. __func__, num_modules);
  1295. return -EINVAL;
  1296. }
  1297. /* store module ID */
  1298. *fill_list++ = payload[j];
  1299. j++;
  1300. switch (opcode) {
  1301. case ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST_V2:
  1302. /* store instance ID */
  1303. *fill_list++ = payload[j];
  1304. j++;
  1305. break;
  1306. case ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST:
  1307. /* Insert IID 0 when repacking */
  1308. *fill_list++ = INSTANCE_ID_0;
  1309. break;
  1310. default:
  1311. pr_err("%s: Invalid opcode %d\n", __func__, opcode);
  1312. return -EINVAL;
  1313. }
  1314. }
  1315. return 0;
  1316. }
  1317. static void adm_reset_data(void)
  1318. {
  1319. int i, j;
  1320. apr_reset(this_adm.apr);
  1321. for (i = 0; i < AFE_MAX_PORTS; i++) {
  1322. for (j = 0; j < MAX_COPPS_PER_PORT; j++) {
  1323. atomic_set(&this_adm.copp.id[i][j],
  1324. RESET_COPP_ID);
  1325. atomic_set(&this_adm.copp.cnt[i][j], 0);
  1326. atomic_set(
  1327. &this_adm.copp.topology[i][j], 0);
  1328. atomic_set(&this_adm.copp.mode[i][j],
  1329. 0);
  1330. atomic_set(&this_adm.copp.stat[i][j],
  1331. 0);
  1332. atomic_set(&this_adm.copp.rate[i][j],
  1333. 0);
  1334. atomic_set(
  1335. &this_adm.copp.channels[i][j],
  1336. 0);
  1337. atomic_set(
  1338. &this_adm.copp.bit_width[i][j], 0);
  1339. atomic_set(
  1340. &this_adm.copp.app_type[i][j], 0);
  1341. atomic_set(
  1342. &this_adm.copp.acdb_id[i][j], 0);
  1343. atomic_set(
  1344. &this_adm.copp.session_type[i][j], 0);
  1345. this_adm.copp.adm_status[i][j] =
  1346. ADM_STATUS_CALIBRATION_REQUIRED;
  1347. }
  1348. }
  1349. this_adm.apr = NULL;
  1350. cal_utils_clear_cal_block_q6maps(ADM_MAX_CAL_TYPES,
  1351. this_adm.cal_data);
  1352. mutex_lock(&this_adm.cal_data
  1353. [ADM_CUSTOM_TOP_CAL]->lock);
  1354. this_adm.set_custom_topology = 1;
  1355. mutex_unlock(&this_adm.cal_data[
  1356. ADM_CUSTOM_TOP_CAL]->lock);
  1357. rtac_clear_mapping(ADM_RTAC_CAL);
  1358. /*
  1359. * Free the ION memory and clear the map handles
  1360. * for Source Tracking
  1361. */
  1362. if (this_adm.sourceTrackingData.memmap.paddr != 0) {
  1363. msm_audio_ion_free(
  1364. this_adm.sourceTrackingData.dma_buf);
  1365. this_adm.sourceTrackingData.dma_buf = NULL;
  1366. this_adm.sourceTrackingData.memmap.size = 0;
  1367. this_adm.sourceTrackingData.memmap.kvaddr =
  1368. NULL;
  1369. this_adm.sourceTrackingData.memmap.paddr = 0;
  1370. this_adm.sourceTrackingData.apr_cmd_status = -1;
  1371. atomic_set(&this_adm.mem_map_handles[
  1372. ADM_MEM_MAP_INDEX_SOURCE_TRACKING], 0);
  1373. }
  1374. }
  1375. static int32_t adm_callback(struct apr_client_data *data, void *priv)
  1376. {
  1377. uint32_t *payload;
  1378. int port_idx, copp_idx, idx, client_id;
  1379. int num_modules;
  1380. int ret;
  1381. if (data == NULL) {
  1382. pr_err("%s: data parameter is null\n", __func__);
  1383. return -EINVAL;
  1384. }
  1385. payload = data->payload;
  1386. if (data->opcode == RESET_EVENTS) {
  1387. pr_debug("%s: Reset event is received: %d %d apr[%pK]\n",
  1388. __func__,
  1389. data->reset_event, data->reset_proc, this_adm.apr);
  1390. if (this_adm.apr)
  1391. adm_reset_data();
  1392. return 0;
  1393. }
  1394. adm_callback_debug_print(data);
  1395. if (data->payload_size >= sizeof(uint32_t)) {
  1396. copp_idx = (data->token) & 0XFF;
  1397. port_idx = ((data->token) >> 16) & 0xFF;
  1398. client_id = ((data->token) >> 8) & 0xFF;
  1399. if (port_idx < 0 || port_idx >= AFE_MAX_PORTS) {
  1400. pr_err("%s: Invalid port idx %d token %d\n",
  1401. __func__, port_idx, data->token);
  1402. return 0;
  1403. }
  1404. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  1405. pr_err("%s: Invalid copp idx %d token %d\n",
  1406. __func__, copp_idx, data->token);
  1407. return 0;
  1408. }
  1409. if (client_id < 0 || client_id >= ADM_CLIENT_ID_MAX) {
  1410. pr_err("%s: Invalid client id %d\n", __func__,
  1411. client_id);
  1412. return 0;
  1413. }
  1414. if (data->opcode == APR_BASIC_RSP_RESULT) {
  1415. pr_debug("%s: APR_BASIC_RSP_RESULT id 0x%x\n",
  1416. __func__, payload[0]);
  1417. if (!((client_id != ADM_CLIENT_ID_SOURCE_TRACKING) &&
  1418. ((payload[0] == ADM_CMD_SET_PP_PARAMS_V5) ||
  1419. (payload[0] == ADM_CMD_SET_PP_PARAMS_V6)))) {
  1420. if (data->payload_size <
  1421. (2 * sizeof(uint32_t))) {
  1422. pr_err("%s: Invalid payload size %d\n",
  1423. __func__, data->payload_size);
  1424. return 0;
  1425. }
  1426. }
  1427. if (payload[1] != 0) {
  1428. pr_err("%s: cmd = 0x%x returned error = 0x%x\n",
  1429. __func__, payload[0], payload[1]);
  1430. }
  1431. switch (payload[0]) {
  1432. case ADM_CMD_SET_PP_PARAMS_V5:
  1433. case ADM_CMD_SET_PP_PARAMS_V6:
  1434. pr_debug("%s: ADM_CMD_SET_PP_PARAMS\n",
  1435. __func__);
  1436. if (client_id == ADM_CLIENT_ID_SOURCE_TRACKING)
  1437. this_adm.sourceTrackingData.
  1438. apr_cmd_status = payload[1];
  1439. else if (rtac_make_adm_callback(payload,
  1440. data->payload_size))
  1441. break;
  1442. /*
  1443. * if soft volume is called and already
  1444. * interrupted break out of the sequence here
  1445. */
  1446. case ADM_CMD_DEVICE_OPEN_V5:
  1447. case ADM_CMD_DEVICE_CLOSE_V5:
  1448. case ADM_CMD_DEVICE_OPEN_V6:
  1449. case ADM_CMD_DEVICE_OPEN_V8:
  1450. pr_debug("%s: Basic callback received, wake up.\n",
  1451. __func__);
  1452. atomic_set(&this_adm.copp.stat[port_idx]
  1453. [copp_idx], payload[1]);
  1454. wake_up(
  1455. &this_adm.copp.wait[port_idx][copp_idx]);
  1456. break;
  1457. case ADM_CMD_ADD_TOPOLOGIES:
  1458. pr_debug("%s: callback received, ADM_CMD_ADD_TOPOLOGIES.\n",
  1459. __func__);
  1460. atomic_set(&this_adm.adm_stat, payload[1]);
  1461. wake_up(&this_adm.adm_wait);
  1462. break;
  1463. case ADM_CMD_MATRIX_MAP_ROUTINGS_V5:
  1464. case ADM_CMD_STREAM_DEVICE_MAP_ROUTINGS_V5:
  1465. pr_debug("%s: Basic callback received, wake up.\n",
  1466. __func__);
  1467. atomic_set(&this_adm.matrix_map_stat,
  1468. payload[1]);
  1469. wake_up(&this_adm.matrix_map_wait);
  1470. break;
  1471. case ADM_CMD_SHARED_MEM_UNMAP_REGIONS:
  1472. pr_debug("%s: ADM_CMD_SHARED_MEM_UNMAP_REGIONS\n",
  1473. __func__);
  1474. atomic_set(&this_adm.adm_stat, payload[1]);
  1475. wake_up(&this_adm.adm_wait);
  1476. break;
  1477. case ADM_CMD_SHARED_MEM_MAP_REGIONS:
  1478. pr_debug("%s: ADM_CMD_SHARED_MEM_MAP_REGIONS\n",
  1479. __func__);
  1480. /* Should only come here if there is an APR */
  1481. /* error or malformed APR packet. Otherwise */
  1482. /* response will be returned as */
  1483. if (payload[1] != 0) {
  1484. pr_err("%s: ADM map error, resuming\n",
  1485. __func__);
  1486. atomic_set(&this_adm.adm_stat,
  1487. payload[1]);
  1488. wake_up(&this_adm.adm_wait);
  1489. }
  1490. break;
  1491. case ADM_CMD_GET_PP_PARAMS_V5:
  1492. case ADM_CMD_GET_PP_PARAMS_V6:
  1493. pr_debug("%s: ADM_CMD_GET_PP_PARAMS\n",
  1494. __func__);
  1495. /* Should only come here if there is an APR */
  1496. /* error or malformed APR packet. Otherwise */
  1497. /* response will be returned as */
  1498. /* ADM_CMDRSP_GET_PP_PARAMS_V5 */
  1499. if (client_id ==
  1500. ADM_CLIENT_ID_SOURCE_TRACKING) {
  1501. this_adm.sourceTrackingData.
  1502. apr_cmd_status = payload[1];
  1503. if (payload[1] != 0)
  1504. pr_err("%s: ADM get param error = %d\n",
  1505. __func__, payload[1]);
  1506. atomic_set(&this_adm.copp.stat
  1507. [port_idx][copp_idx],
  1508. payload[1]);
  1509. wake_up(&this_adm.copp.wait
  1510. [port_idx][copp_idx]);
  1511. } else {
  1512. if (payload[1] != 0) {
  1513. pr_err("%s: ADM get param error = %d, resuming\n",
  1514. __func__, payload[1]);
  1515. rtac_make_adm_callback(payload,
  1516. data->payload_size);
  1517. }
  1518. }
  1519. break;
  1520. case ADM_CMD_SET_PSPD_MTMX_STRTR_PARAMS_V5:
  1521. case ADM_CMD_SET_PSPD_MTMX_STRTR_PARAMS_V6:
  1522. pr_debug("%s:callback received PSPD MTMX, wake up\n",
  1523. __func__);
  1524. atomic_set(&this_adm.copp.stat[port_idx]
  1525. [copp_idx], payload[1]);
  1526. wake_up(
  1527. &this_adm.copp.wait[port_idx][copp_idx]);
  1528. break;
  1529. case ADM_CMD_GET_PP_TOPO_MODULE_LIST:
  1530. case ADM_CMD_GET_PP_TOPO_MODULE_LIST_V2:
  1531. pr_debug("%s:ADM_CMD_GET_PP_TOPO_MODULE_LIST\n",
  1532. __func__);
  1533. if (payload[1] != 0)
  1534. pr_err("%s: ADM get topo list error = %d\n",
  1535. __func__, payload[1]);
  1536. break;
  1537. default:
  1538. pr_err("%s: Unknown Cmd: 0x%x\n", __func__,
  1539. payload[0]);
  1540. break;
  1541. }
  1542. return 0;
  1543. }
  1544. switch (data->opcode) {
  1545. case ADM_CMDRSP_DEVICE_OPEN_V5:
  1546. case ADM_CMDRSP_DEVICE_OPEN_V6:
  1547. case ADM_CMDRSP_DEVICE_OPEN_V8: {
  1548. struct adm_cmd_rsp_device_open_v5 *open = NULL;
  1549. if (data->payload_size <
  1550. sizeof(struct adm_cmd_rsp_device_open_v5)) {
  1551. pr_err("%s: Invalid payload size %d\n", __func__,
  1552. data->payload_size);
  1553. return 0;
  1554. }
  1555. open = (struct adm_cmd_rsp_device_open_v5 *)data->payload;
  1556. if (open->copp_id == INVALID_COPP_ID) {
  1557. pr_err("%s: invalid coppid rxed %d\n",
  1558. __func__, open->copp_id);
  1559. atomic_set(&this_adm.copp.stat[port_idx]
  1560. [copp_idx], ADSP_EBADPARAM);
  1561. wake_up(
  1562. &this_adm.copp.wait[port_idx][copp_idx]);
  1563. break;
  1564. }
  1565. atomic_set(&this_adm.copp.stat
  1566. [port_idx][copp_idx], payload[0]);
  1567. atomic_set(&this_adm.copp.id[port_idx][copp_idx],
  1568. open->copp_id);
  1569. pr_debug("%s: coppid rxed=%d\n", __func__,
  1570. open->copp_id);
  1571. wake_up(&this_adm.copp.wait[port_idx][copp_idx]);
  1572. }
  1573. break;
  1574. case ADM_CMDRSP_GET_PP_PARAMS_V5:
  1575. case ADM_CMDRSP_GET_PP_PARAMS_V6:
  1576. pr_debug("%s: ADM_CMDRSP_GET_PP_PARAMS\n", __func__);
  1577. if (client_id == ADM_CLIENT_ID_SOURCE_TRACKING)
  1578. this_adm.sourceTrackingData.apr_cmd_status =
  1579. payload[0];
  1580. else if (rtac_make_adm_callback(payload,
  1581. data->payload_size))
  1582. break;
  1583. idx = ADM_GET_PARAMETER_LENGTH * copp_idx;
  1584. if (payload[0] == 0 && data->payload_size > 0) {
  1585. ret = adm_process_get_param_response(
  1586. data->opcode, idx, payload,
  1587. data->payload_size);
  1588. if (ret)
  1589. pr_err("%s: Failed to process get param response, error %d\n",
  1590. __func__, ret);
  1591. } else {
  1592. adm_get_parameters[idx] = -1;
  1593. pr_err("%s: ADM_CMDRSP_GET_PP_PARAMS returned error 0x%x\n",
  1594. __func__, payload[0]);
  1595. }
  1596. atomic_set(&this_adm.copp.stat[port_idx][copp_idx],
  1597. payload[0]);
  1598. wake_up(&this_adm.copp.wait[port_idx][copp_idx]);
  1599. break;
  1600. case ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST:
  1601. case ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST_V2:
  1602. pr_debug("%s: ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST\n",
  1603. __func__);
  1604. if (data->payload_size >= (2 * sizeof(uint32_t))) {
  1605. num_modules = payload[1];
  1606. pr_debug("%s: Num modules %d\n", __func__,
  1607. num_modules);
  1608. if (payload[0]) {
  1609. pr_err("%s: ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST, error = %d\n",
  1610. __func__, payload[0]);
  1611. } else if (num_modules > MAX_MODULES_IN_TOPO) {
  1612. pr_err("%s: ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST invalid num modules received, num modules = %d\n",
  1613. __func__, num_modules);
  1614. } else {
  1615. ret = adm_process_get_topo_list_response(
  1616. data->opcode, copp_idx,
  1617. num_modules, payload,
  1618. data->payload_size);
  1619. if (ret)
  1620. pr_err("%s: Failed to process get topo modules list response, error %d\n",
  1621. __func__, ret);
  1622. }
  1623. } else {
  1624. pr_err("%s: Invalid payload size %d\n",
  1625. __func__, data->payload_size);
  1626. }
  1627. atomic_set(&this_adm.copp.stat[port_idx][copp_idx],
  1628. payload[0]);
  1629. wake_up(&this_adm.copp.wait[port_idx][copp_idx]);
  1630. break;
  1631. case ADM_CMDRSP_SHARED_MEM_MAP_REGIONS:
  1632. pr_debug("%s: ADM_CMDRSP_SHARED_MEM_MAP_REGIONS\n",
  1633. __func__);
  1634. atomic_set(&this_adm.mem_map_handles[
  1635. atomic_read(&this_adm.mem_map_index)],
  1636. *payload);
  1637. atomic_set(&this_adm.adm_stat, 0);
  1638. wake_up(&this_adm.adm_wait);
  1639. break;
  1640. default:
  1641. pr_err("%s: Unknown cmd:0x%x\n", __func__,
  1642. data->opcode);
  1643. break;
  1644. }
  1645. }
  1646. return 0;
  1647. }
  1648. static int adm_memory_map_regions(phys_addr_t *buf_add, uint32_t mempool_id,
  1649. uint32_t *bufsz, uint32_t bufcnt)
  1650. {
  1651. struct avs_cmd_shared_mem_map_regions *mmap_regions = NULL;
  1652. struct avs_shared_map_region_payload *mregions = NULL;
  1653. void *mmap_region_cmd = NULL;
  1654. void *payload = NULL;
  1655. int ret = 0;
  1656. int i = 0;
  1657. int cmd_size = 0;
  1658. pr_debug("%s:\n", __func__);
  1659. if (this_adm.apr == NULL) {
  1660. this_adm.apr = apr_register("ADSP", "ADM", adm_callback,
  1661. 0xFFFFFFFF, &this_adm);
  1662. if (this_adm.apr == NULL) {
  1663. pr_err("%s: Unable to register ADM\n", __func__);
  1664. ret = -ENODEV;
  1665. return ret;
  1666. }
  1667. rtac_set_adm_handle(this_adm.apr);
  1668. }
  1669. cmd_size = sizeof(struct avs_cmd_shared_mem_map_regions)
  1670. + sizeof(struct avs_shared_map_region_payload)
  1671. * bufcnt;
  1672. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  1673. if (!mmap_region_cmd)
  1674. return -ENOMEM;
  1675. mmap_regions = (struct avs_cmd_shared_mem_map_regions *)mmap_region_cmd;
  1676. mmap_regions->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  1677. APR_HDR_LEN(APR_HDR_SIZE),
  1678. APR_PKT_VER);
  1679. mmap_regions->hdr.pkt_size = cmd_size;
  1680. mmap_regions->hdr.src_port = 0;
  1681. mmap_regions->hdr.dest_port = 0;
  1682. mmap_regions->hdr.token = 0;
  1683. mmap_regions->hdr.opcode = ADM_CMD_SHARED_MEM_MAP_REGIONS;
  1684. mmap_regions->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL & 0x00ff;
  1685. mmap_regions->num_regions = bufcnt & 0x00ff;
  1686. mmap_regions->property_flag = 0x00;
  1687. pr_debug("%s: map_regions->num_regions = %d\n", __func__,
  1688. mmap_regions->num_regions);
  1689. payload = ((u8 *) mmap_region_cmd +
  1690. sizeof(struct avs_cmd_shared_mem_map_regions));
  1691. mregions = (struct avs_shared_map_region_payload *)payload;
  1692. for (i = 0; i < bufcnt; i++) {
  1693. mregions->shm_addr_lsw = lower_32_bits(buf_add[i]);
  1694. mregions->shm_addr_msw =
  1695. msm_audio_populate_upper_32_bits(buf_add[i]);
  1696. mregions->mem_size_bytes = bufsz[i];
  1697. ++mregions;
  1698. }
  1699. atomic_set(&this_adm.adm_stat, -1);
  1700. ret = apr_send_pkt(this_adm.apr, (uint32_t *) mmap_region_cmd);
  1701. if (ret < 0) {
  1702. pr_err("%s: mmap_regions op[0x%x]rc[%d]\n", __func__,
  1703. mmap_regions->hdr.opcode, ret);
  1704. ret = -EINVAL;
  1705. goto fail_cmd;
  1706. }
  1707. ret = wait_event_timeout(this_adm.adm_wait,
  1708. atomic_read(&this_adm.adm_stat) >= 0,
  1709. msecs_to_jiffies(TIMEOUT_MS));
  1710. if (!ret) {
  1711. pr_err("%s: timeout. waited for memory_map\n", __func__);
  1712. ret = -EINVAL;
  1713. goto fail_cmd;
  1714. } else if (atomic_read(&this_adm.adm_stat) > 0) {
  1715. pr_err("%s: DSP returned error[%s]\n",
  1716. __func__, adsp_err_get_err_str(
  1717. atomic_read(&this_adm.adm_stat)));
  1718. ret = adsp_err_get_lnx_err_code(
  1719. atomic_read(&this_adm.adm_stat));
  1720. goto fail_cmd;
  1721. }
  1722. fail_cmd:
  1723. kfree(mmap_region_cmd);
  1724. return ret;
  1725. }
  1726. static int adm_memory_unmap_regions(void)
  1727. {
  1728. struct avs_cmd_shared_mem_unmap_regions unmap_regions;
  1729. int ret = 0;
  1730. pr_debug("%s:\n", __func__);
  1731. if (this_adm.apr == NULL) {
  1732. pr_err("%s: APR handle NULL\n", __func__);
  1733. return -EINVAL;
  1734. }
  1735. unmap_regions.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  1736. APR_HDR_LEN(APR_HDR_SIZE),
  1737. APR_PKT_VER);
  1738. unmap_regions.hdr.pkt_size = sizeof(unmap_regions);
  1739. unmap_regions.hdr.src_port = 0;
  1740. unmap_regions.hdr.dest_port = 0;
  1741. unmap_regions.hdr.token = 0;
  1742. unmap_regions.hdr.opcode = ADM_CMD_SHARED_MEM_UNMAP_REGIONS;
  1743. unmap_regions.mem_map_handle = atomic_read(&this_adm.
  1744. mem_map_handles[atomic_read(&this_adm.mem_map_index)]);
  1745. atomic_set(&this_adm.adm_stat, -1);
  1746. ret = apr_send_pkt(this_adm.apr, (uint32_t *) &unmap_regions);
  1747. if (ret < 0) {
  1748. pr_err("%s: mmap_regions op[0x%x]rc[%d]\n", __func__,
  1749. unmap_regions.hdr.opcode, ret);
  1750. ret = -EINVAL;
  1751. goto fail_cmd;
  1752. }
  1753. ret = wait_event_timeout(this_adm.adm_wait,
  1754. atomic_read(&this_adm.adm_stat) >= 0,
  1755. msecs_to_jiffies(TIMEOUT_MS));
  1756. if (!ret) {
  1757. pr_err("%s: timeout. waited for memory_unmap\n",
  1758. __func__);
  1759. ret = -EINVAL;
  1760. goto fail_cmd;
  1761. } else if (atomic_read(&this_adm.adm_stat) > 0) {
  1762. pr_err("%s: DSP returned error[%s]\n",
  1763. __func__, adsp_err_get_err_str(
  1764. atomic_read(&this_adm.adm_stat)));
  1765. ret = adsp_err_get_lnx_err_code(
  1766. atomic_read(&this_adm.adm_stat));
  1767. goto fail_cmd;
  1768. } else {
  1769. pr_debug("%s: Unmap handle 0x%x succeeded\n", __func__,
  1770. unmap_regions.mem_map_handle);
  1771. }
  1772. fail_cmd:
  1773. return ret;
  1774. }
  1775. static int remap_cal_data(struct cal_block_data *cal_block, int cal_index)
  1776. {
  1777. int ret = 0;
  1778. if (cal_block->map_data.dma_buf == NULL) {
  1779. pr_err("%s: No ION allocation for cal index %d!\n",
  1780. __func__, cal_index);
  1781. ret = -EINVAL;
  1782. goto done;
  1783. }
  1784. if ((cal_block->map_data.map_size > 0) &&
  1785. (cal_block->map_data.q6map_handle == 0)) {
  1786. atomic_set(&this_adm.mem_map_index, cal_index);
  1787. ret = adm_memory_map_regions(&cal_block->cal_data.paddr, 0,
  1788. (uint32_t *)&cal_block->map_data.map_size, 1);
  1789. if (ret < 0) {
  1790. pr_err("%s: ADM mmap did not work! size = %zd ret %d\n",
  1791. __func__,
  1792. cal_block->map_data.map_size, ret);
  1793. pr_debug("%s: ADM mmap did not work! addr = 0x%pK, size = %zd ret %d\n",
  1794. __func__,
  1795. &cal_block->cal_data.paddr,
  1796. cal_block->map_data.map_size, ret);
  1797. goto done;
  1798. }
  1799. cal_block->map_data.q6map_handle = atomic_read(&this_adm.
  1800. mem_map_handles[cal_index]);
  1801. }
  1802. done:
  1803. return ret;
  1804. }
  1805. static void send_adm_custom_topology(void)
  1806. {
  1807. struct cal_block_data *cal_block = NULL;
  1808. struct cmd_set_topologies adm_top;
  1809. int cal_index = ADM_CUSTOM_TOP_CAL;
  1810. int result;
  1811. if (this_adm.cal_data[cal_index] == NULL)
  1812. goto done;
  1813. mutex_lock(&this_adm.cal_data[cal_index]->lock);
  1814. if (!this_adm.set_custom_topology)
  1815. goto unlock;
  1816. this_adm.set_custom_topology = 0;
  1817. cal_block = cal_utils_get_only_cal_block(this_adm.cal_data[cal_index]);
  1818. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block))
  1819. goto unlock;
  1820. pr_debug("%s: Sending cal_index %d\n", __func__, cal_index);
  1821. result = remap_cal_data(cal_block, cal_index);
  1822. if (result) {
  1823. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  1824. __func__, cal_index);
  1825. goto unlock;
  1826. }
  1827. atomic_set(&this_adm.mem_map_index, cal_index);
  1828. atomic_set(&this_adm.mem_map_handles[cal_index],
  1829. cal_block->map_data.q6map_handle);
  1830. if (cal_block->cal_data.size == 0) {
  1831. pr_debug("%s: No ADM cal to send\n", __func__);
  1832. goto unlock;
  1833. }
  1834. adm_top.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  1835. APR_HDR_LEN(20), APR_PKT_VER);
  1836. adm_top.hdr.pkt_size = sizeof(adm_top);
  1837. adm_top.hdr.src_svc = APR_SVC_ADM;
  1838. adm_top.hdr.src_domain = APR_DOMAIN_APPS;
  1839. adm_top.hdr.src_port = 0;
  1840. adm_top.hdr.dest_svc = APR_SVC_ADM;
  1841. adm_top.hdr.dest_domain = APR_DOMAIN_ADSP;
  1842. adm_top.hdr.dest_port = 0;
  1843. adm_top.hdr.token = 0;
  1844. adm_top.hdr.opcode = ADM_CMD_ADD_TOPOLOGIES;
  1845. adm_top.payload_addr_lsw = lower_32_bits(cal_block->cal_data.paddr);
  1846. adm_top.payload_addr_msw = msm_audio_populate_upper_32_bits(
  1847. cal_block->cal_data.paddr);
  1848. adm_top.mem_map_handle = cal_block->map_data.q6map_handle;
  1849. adm_top.payload_size = cal_block->cal_data.size;
  1850. atomic_set(&this_adm.adm_stat, -1);
  1851. pr_debug("%s: Sending ADM_CMD_ADD_TOPOLOGIES payload = 0x%pK, size = %d\n",
  1852. __func__, &cal_block->cal_data.paddr,
  1853. adm_top.payload_size);
  1854. result = apr_send_pkt(this_adm.apr, (uint32_t *)&adm_top);
  1855. if (result < 0) {
  1856. pr_err("%s: Set topologies failed payload size = %zd result %d\n",
  1857. __func__, cal_block->cal_data.size, result);
  1858. goto unlock;
  1859. }
  1860. /* Wait for the callback */
  1861. result = wait_event_timeout(this_adm.adm_wait,
  1862. atomic_read(&this_adm.adm_stat) >= 0,
  1863. msecs_to_jiffies(TIMEOUT_MS));
  1864. if (!result) {
  1865. pr_err("%s: Set topologies timed out payload size = %zd\n",
  1866. __func__, cal_block->cal_data.size);
  1867. goto unlock;
  1868. } else if (atomic_read(&this_adm.adm_stat) > 0) {
  1869. pr_err("%s: DSP returned error[%s]\n",
  1870. __func__, adsp_err_get_err_str(
  1871. atomic_read(&this_adm.adm_stat)));
  1872. result = adsp_err_get_lnx_err_code(
  1873. atomic_read(&this_adm.adm_stat));
  1874. goto unlock;
  1875. }
  1876. unlock:
  1877. mutex_unlock(&this_adm.cal_data[cal_index]->lock);
  1878. done:
  1879. return;
  1880. }
  1881. static int send_adm_cal_block(int port_id, int copp_idx,
  1882. struct cal_block_data *cal_block, int perf_mode)
  1883. {
  1884. struct mem_mapping_hdr mem_hdr;
  1885. int payload_size = 0;
  1886. int port_idx = 0;
  1887. int topology = 0;
  1888. int result = 0;
  1889. pr_debug("%s: Port id 0x%x,\n", __func__, port_id);
  1890. if (!cal_block) {
  1891. pr_debug("%s: No ADM cal to send for port_id = 0x%x!\n",
  1892. __func__, port_id);
  1893. result = -EINVAL;
  1894. goto done;
  1895. }
  1896. if (cal_block->cal_data.size <= 0) {
  1897. pr_debug("%s: No ADM cal sent for port_id = 0x%x!\n", __func__,
  1898. port_id);
  1899. result = -EINVAL;
  1900. goto done;
  1901. }
  1902. memset(&mem_hdr, 0, sizeof(mem_hdr));
  1903. port_id = afe_convert_virtual_to_portid(port_id);
  1904. port_idx = adm_validate_and_get_port_index(port_id);
  1905. if (port_idx < 0 || port_idx >= AFE_MAX_PORTS) {
  1906. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  1907. return -EINVAL;
  1908. } else if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  1909. pr_err("%s: Invalid copp_idx 0x%x\n", __func__, copp_idx);
  1910. return -EINVAL;
  1911. }
  1912. topology = atomic_read(&this_adm.copp.topology[port_idx][copp_idx]);
  1913. if (perf_mode == LEGACY_PCM_MODE &&
  1914. topology == DS2_ADM_COPP_TOPOLOGY_ID) {
  1915. pr_err("%s: perf_mode %d, topology 0x%x\n", __func__, perf_mode,
  1916. topology);
  1917. goto done;
  1918. }
  1919. mem_hdr.data_payload_addr_lsw =
  1920. lower_32_bits(cal_block->cal_data.paddr);
  1921. mem_hdr.data_payload_addr_msw =
  1922. msm_audio_populate_upper_32_bits(cal_block->cal_data.paddr);
  1923. mem_hdr.mem_map_handle = cal_block->map_data.q6map_handle;
  1924. payload_size = cal_block->cal_data.size;
  1925. adm_set_pp_params(port_id, copp_idx, &mem_hdr, NULL, payload_size);
  1926. done:
  1927. return result;
  1928. }
  1929. static struct cal_block_data *adm_find_cal_by_path(int cal_index, int path)
  1930. {
  1931. struct list_head *ptr, *next;
  1932. struct cal_block_data *cal_block = NULL;
  1933. struct audio_cal_info_audproc *audproc_cal_info = NULL;
  1934. struct audio_cal_info_audvol *audvol_cal_info = NULL;
  1935. pr_debug("%s:\n", __func__);
  1936. list_for_each_safe(ptr, next,
  1937. &this_adm.cal_data[cal_index]->cal_blocks) {
  1938. cal_block = list_entry(ptr,
  1939. struct cal_block_data, list);
  1940. if (cal_utils_is_cal_stale(cal_block))
  1941. continue;
  1942. if (cal_index == ADM_AUDPROC_CAL ||
  1943. cal_index == ADM_LSM_AUDPROC_CAL ||
  1944. cal_index == ADM_LSM_AUDPROC_PERSISTENT_CAL) {
  1945. audproc_cal_info = cal_block->cal_info;
  1946. if ((audproc_cal_info->path == path) &&
  1947. (cal_block->cal_data.size > 0))
  1948. return cal_block;
  1949. } else if (cal_index == ADM_AUDVOL_CAL) {
  1950. audvol_cal_info = cal_block->cal_info;
  1951. if ((audvol_cal_info->path == path) &&
  1952. (cal_block->cal_data.size > 0))
  1953. return cal_block;
  1954. }
  1955. }
  1956. pr_debug("%s: Can't find ADM cal for cal_index %d, path %d\n",
  1957. __func__, cal_index, path);
  1958. return NULL;
  1959. }
  1960. static struct cal_block_data *adm_find_cal_by_app_type(int cal_index, int path,
  1961. int app_type)
  1962. {
  1963. struct list_head *ptr, *next;
  1964. struct cal_block_data *cal_block = NULL;
  1965. struct audio_cal_info_audproc *audproc_cal_info = NULL;
  1966. struct audio_cal_info_audvol *audvol_cal_info = NULL;
  1967. pr_debug("%s\n", __func__);
  1968. list_for_each_safe(ptr, next,
  1969. &this_adm.cal_data[cal_index]->cal_blocks) {
  1970. cal_block = list_entry(ptr,
  1971. struct cal_block_data, list);
  1972. if (cal_utils_is_cal_stale(cal_block))
  1973. continue;
  1974. if (cal_index == ADM_AUDPROC_CAL ||
  1975. cal_index == ADM_LSM_AUDPROC_CAL ||
  1976. cal_index == ADM_LSM_AUDPROC_PERSISTENT_CAL) {
  1977. audproc_cal_info = cal_block->cal_info;
  1978. if ((audproc_cal_info->path == path) &&
  1979. (audproc_cal_info->app_type == app_type) &&
  1980. (cal_block->cal_data.size > 0))
  1981. return cal_block;
  1982. } else if (cal_index == ADM_AUDVOL_CAL) {
  1983. audvol_cal_info = cal_block->cal_info;
  1984. if ((audvol_cal_info->path == path) &&
  1985. (audvol_cal_info->app_type == app_type) &&
  1986. (cal_block->cal_data.size > 0))
  1987. return cal_block;
  1988. }
  1989. }
  1990. pr_debug("%s: Can't find ADM cali for cal_index %d, path %d, app %d, defaulting to search by path\n",
  1991. __func__, cal_index, path, app_type);
  1992. return adm_find_cal_by_path(cal_index, path);
  1993. }
  1994. static struct cal_block_data *adm_find_cal(int cal_index, int path,
  1995. int app_type, int acdb_id,
  1996. int sample_rate)
  1997. {
  1998. struct list_head *ptr, *next;
  1999. struct cal_block_data *cal_block = NULL;
  2000. struct audio_cal_info_audproc *audproc_cal_info = NULL;
  2001. struct audio_cal_info_audvol *audvol_cal_info = NULL;
  2002. pr_debug("%s:\n", __func__);
  2003. list_for_each_safe(ptr, next,
  2004. &this_adm.cal_data[cal_index]->cal_blocks) {
  2005. cal_block = list_entry(ptr,
  2006. struct cal_block_data, list);
  2007. if (cal_utils_is_cal_stale(cal_block))
  2008. continue;
  2009. if (cal_index == ADM_AUDPROC_CAL ||
  2010. cal_index == ADM_LSM_AUDPROC_CAL ||
  2011. cal_index == ADM_LSM_AUDPROC_PERSISTENT_CAL) {
  2012. audproc_cal_info = cal_block->cal_info;
  2013. if ((audproc_cal_info->path == path) &&
  2014. (audproc_cal_info->app_type == app_type) &&
  2015. (audproc_cal_info->acdb_id == acdb_id) &&
  2016. (audproc_cal_info->sample_rate == sample_rate) &&
  2017. (cal_block->cal_data.size > 0))
  2018. return cal_block;
  2019. } else if (cal_index == ADM_AUDVOL_CAL) {
  2020. audvol_cal_info = cal_block->cal_info;
  2021. if ((audvol_cal_info->path == path) &&
  2022. (audvol_cal_info->app_type == app_type) &&
  2023. (audvol_cal_info->acdb_id == acdb_id) &&
  2024. (cal_block->cal_data.size > 0))
  2025. return cal_block;
  2026. }
  2027. }
  2028. pr_debug("%s: Can't find ADM cal for cal_index %d, path %d, app %d, acdb_id %d sample_rate %d defaulting to search by app type\n",
  2029. __func__, cal_index, path, app_type, acdb_id, sample_rate);
  2030. return adm_find_cal_by_app_type(cal_index, path, app_type);
  2031. }
  2032. static int adm_remap_and_send_cal_block(int cal_index, int port_id,
  2033. int copp_idx, struct cal_block_data *cal_block, int perf_mode,
  2034. int app_type, int acdb_id, int sample_rate)
  2035. {
  2036. int ret = 0;
  2037. pr_debug("%s: Sending cal_index cal %d\n", __func__, cal_index);
  2038. ret = remap_cal_data(cal_block, cal_index);
  2039. if (ret) {
  2040. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  2041. __func__, cal_index);
  2042. goto done;
  2043. }
  2044. ret = send_adm_cal_block(port_id, copp_idx, cal_block, perf_mode);
  2045. if (ret < 0)
  2046. pr_debug("%s: No cal sent for cal_index %d, port_id = 0x%x! ret %d sample_rate %d\n",
  2047. __func__, cal_index, port_id, ret, sample_rate);
  2048. done:
  2049. return ret;
  2050. }
  2051. static void send_adm_cal_type(int cal_index, int path, int port_id,
  2052. int copp_idx, int perf_mode, int app_type,
  2053. int acdb_id, int sample_rate)
  2054. {
  2055. struct cal_block_data *cal_block = NULL;
  2056. int ret;
  2057. pr_debug("%s: cal index %d\n", __func__, cal_index);
  2058. if (this_adm.cal_data[cal_index] == NULL) {
  2059. pr_debug("%s: cal_index %d not allocated!\n",
  2060. __func__, cal_index);
  2061. goto done;
  2062. }
  2063. mutex_lock(&this_adm.cal_data[cal_index]->lock);
  2064. cal_block = adm_find_cal(cal_index, path, app_type, acdb_id,
  2065. sample_rate);
  2066. if (cal_block == NULL)
  2067. goto unlock;
  2068. ret = adm_remap_and_send_cal_block(cal_index, port_id, copp_idx,
  2069. cal_block, perf_mode, app_type, acdb_id, sample_rate);
  2070. cal_utils_mark_cal_used(cal_block);
  2071. unlock:
  2072. mutex_unlock(&this_adm.cal_data[cal_index]->lock);
  2073. done:
  2074. return;
  2075. }
  2076. static int get_cal_path(int path)
  2077. {
  2078. if (path == 0x1)
  2079. return RX_DEVICE;
  2080. else
  2081. return TX_DEVICE;
  2082. }
  2083. static void send_adm_cal(int port_id, int copp_idx, int path, int perf_mode,
  2084. int app_type, int acdb_id, int sample_rate,
  2085. int passthr_mode)
  2086. {
  2087. pr_debug("%s: port id 0x%x copp_idx %d\n", __func__, port_id, copp_idx);
  2088. if (passthr_mode != LISTEN) {
  2089. send_adm_cal_type(ADM_AUDPROC_CAL, path, port_id, copp_idx,
  2090. perf_mode, app_type, acdb_id, sample_rate);
  2091. } else {
  2092. send_adm_cal_type(ADM_LSM_AUDPROC_CAL, path, port_id, copp_idx,
  2093. perf_mode, app_type, acdb_id, sample_rate);
  2094. send_adm_cal_type(ADM_LSM_AUDPROC_PERSISTENT_CAL, path,
  2095. port_id, copp_idx, perf_mode, app_type,
  2096. acdb_id, sample_rate);
  2097. }
  2098. send_adm_cal_type(ADM_AUDVOL_CAL, path, port_id, copp_idx, perf_mode,
  2099. app_type, acdb_id, sample_rate);
  2100. }
  2101. /**
  2102. * adm_connect_afe_port -
  2103. * command to send ADM connect AFE port
  2104. *
  2105. * @mode: value of mode for ADM connect AFE
  2106. * @session_id: session active to connect
  2107. * @port_id: Port ID number
  2108. *
  2109. * Returns 0 on success or error on failure
  2110. */
  2111. int adm_connect_afe_port(int mode, int session_id, int port_id)
  2112. {
  2113. struct adm_cmd_connect_afe_port_v5 cmd;
  2114. int ret = 0;
  2115. int port_idx, copp_idx = 0;
  2116. pr_debug("%s: port_id: 0x%x session id:%d mode:%d\n", __func__,
  2117. port_id, session_id, mode);
  2118. port_id = afe_convert_virtual_to_portid(port_id);
  2119. port_idx = adm_validate_and_get_port_index(port_id);
  2120. if (port_idx < 0) {
  2121. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  2122. return -EINVAL;
  2123. }
  2124. if (this_adm.apr == NULL) {
  2125. this_adm.apr = apr_register("ADSP", "ADM", adm_callback,
  2126. 0xFFFFFFFF, &this_adm);
  2127. if (this_adm.apr == NULL) {
  2128. pr_err("%s: Unable to register ADM\n", __func__);
  2129. ret = -ENODEV;
  2130. return ret;
  2131. }
  2132. rtac_set_adm_handle(this_adm.apr);
  2133. }
  2134. pr_debug("%s: Port ID 0x%x, index %d\n", __func__, port_id, port_idx);
  2135. cmd.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2136. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  2137. cmd.hdr.pkt_size = sizeof(cmd);
  2138. cmd.hdr.src_svc = APR_SVC_ADM;
  2139. cmd.hdr.src_domain = APR_DOMAIN_APPS;
  2140. cmd.hdr.src_port = port_id;
  2141. cmd.hdr.dest_svc = APR_SVC_ADM;
  2142. cmd.hdr.dest_domain = APR_DOMAIN_ADSP;
  2143. cmd.hdr.dest_port = 0; /* Ignored */
  2144. cmd.hdr.token = port_idx << 16 | copp_idx;
  2145. cmd.hdr.opcode = ADM_CMD_CONNECT_AFE_PORT_V5;
  2146. cmd.mode = mode;
  2147. cmd.session_id = session_id;
  2148. cmd.afe_port_id = port_id;
  2149. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
  2150. ret = apr_send_pkt(this_adm.apr, (uint32_t *)&cmd);
  2151. if (ret < 0) {
  2152. pr_err("%s: ADM enable for port_id: 0x%x failed ret %d\n",
  2153. __func__, port_id, ret);
  2154. ret = -EINVAL;
  2155. goto fail_cmd;
  2156. }
  2157. /* Wait for the callback with copp id */
  2158. ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  2159. atomic_read(&this_adm.copp.stat[port_idx][copp_idx]) >= 0,
  2160. msecs_to_jiffies(TIMEOUT_MS));
  2161. if (!ret) {
  2162. pr_err("%s: ADM connect timedout for port_id: 0x%x\n",
  2163. __func__, port_id);
  2164. ret = -EINVAL;
  2165. goto fail_cmd;
  2166. } else if (atomic_read(&this_adm.copp.stat
  2167. [port_idx][copp_idx]) > 0) {
  2168. pr_err("%s: DSP returned error[%s]\n",
  2169. __func__, adsp_err_get_err_str(
  2170. atomic_read(&this_adm.copp.stat
  2171. [port_idx][copp_idx])));
  2172. ret = adsp_err_get_lnx_err_code(
  2173. atomic_read(&this_adm.copp.stat
  2174. [port_idx][copp_idx]));
  2175. goto fail_cmd;
  2176. }
  2177. atomic_inc(&this_adm.copp.cnt[port_idx][copp_idx]);
  2178. return 0;
  2179. fail_cmd:
  2180. return ret;
  2181. }
  2182. EXPORT_SYMBOL(adm_connect_afe_port);
  2183. int adm_arrange_mch_map(struct adm_cmd_device_open_v5 *open, int path,
  2184. int channel_mode, int port_idx)
  2185. {
  2186. int rc = 0, idx;
  2187. pr_debug("%s: channel mode %d", __func__, channel_mode);
  2188. memset(open->dev_channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  2189. switch (path) {
  2190. case ADM_PATH_PLAYBACK:
  2191. idx = ADM_MCH_MAP_IDX_PLAYBACK;
  2192. break;
  2193. case ADM_PATH_LIVE_REC:
  2194. case ADM_PATH_NONLIVE_REC:
  2195. idx = ADM_MCH_MAP_IDX_REC;
  2196. break;
  2197. default:
  2198. goto non_mch_path;
  2199. };
  2200. if ((open->dev_num_channel > 2) &&
  2201. (port_channel_map[port_idx].set_channel_map ||
  2202. multi_ch_maps[idx].set_channel_map)) {
  2203. if (port_channel_map[port_idx].set_channel_map)
  2204. memcpy(open->dev_channel_mapping,
  2205. port_channel_map[port_idx].channel_mapping,
  2206. PCM_FORMAT_MAX_NUM_CHANNEL);
  2207. else
  2208. memcpy(open->dev_channel_mapping,
  2209. multi_ch_maps[idx].channel_mapping,
  2210. PCM_FORMAT_MAX_NUM_CHANNEL);
  2211. } else {
  2212. if (channel_mode == 1) {
  2213. open->dev_channel_mapping[0] = PCM_CHANNEL_FC;
  2214. } else if (channel_mode == 2) {
  2215. open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2216. open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2217. } else if (channel_mode == 3) {
  2218. open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2219. open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2220. open->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2221. } else if (channel_mode == 4) {
  2222. open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2223. open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2224. open->dev_channel_mapping[2] = PCM_CHANNEL_LS;
  2225. open->dev_channel_mapping[3] = PCM_CHANNEL_RS;
  2226. } else if (channel_mode == 5) {
  2227. open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2228. open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2229. open->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2230. open->dev_channel_mapping[3] = PCM_CHANNEL_LS;
  2231. open->dev_channel_mapping[4] = PCM_CHANNEL_RS;
  2232. } else if (channel_mode == 6) {
  2233. open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2234. open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2235. open->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2236. open->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2237. open->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2238. open->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2239. } else if (channel_mode == 7) {
  2240. open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2241. open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2242. open->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2243. open->dev_channel_mapping[3] = PCM_CHANNEL_LFE;
  2244. open->dev_channel_mapping[4] = PCM_CHANNEL_LB;
  2245. open->dev_channel_mapping[5] = PCM_CHANNEL_RB;
  2246. open->dev_channel_mapping[6] = PCM_CHANNEL_CS;
  2247. } else if (channel_mode == 8) {
  2248. open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2249. open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2250. open->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2251. open->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2252. open->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2253. open->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2254. open->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2255. open->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2256. } else {
  2257. pr_err("%s: invalid num_chan %d\n", __func__,
  2258. channel_mode);
  2259. rc = -EINVAL;
  2260. goto inval_ch_mod;
  2261. }
  2262. }
  2263. non_mch_path:
  2264. inval_ch_mod:
  2265. return rc;
  2266. }
  2267. int adm_arrange_mch_ep2_map(struct adm_cmd_device_open_v6 *open_v6,
  2268. int channel_mode)
  2269. {
  2270. int rc = 0;
  2271. memset(open_v6->dev_channel_mapping_eid2, 0,
  2272. PCM_FORMAT_MAX_NUM_CHANNEL);
  2273. if (channel_mode == 1) {
  2274. open_v6->dev_channel_mapping_eid2[0] = PCM_CHANNEL_FC;
  2275. } else if (channel_mode == 2) {
  2276. open_v6->dev_channel_mapping_eid2[0] = PCM_CHANNEL_FL;
  2277. open_v6->dev_channel_mapping_eid2[1] = PCM_CHANNEL_FR;
  2278. } else if (channel_mode == 3) {
  2279. open_v6->dev_channel_mapping_eid2[0] = PCM_CHANNEL_FL;
  2280. open_v6->dev_channel_mapping_eid2[1] = PCM_CHANNEL_FR;
  2281. open_v6->dev_channel_mapping_eid2[2] = PCM_CHANNEL_FC;
  2282. } else if (channel_mode == 4) {
  2283. open_v6->dev_channel_mapping_eid2[0] = PCM_CHANNEL_FL;
  2284. open_v6->dev_channel_mapping_eid2[1] = PCM_CHANNEL_FR;
  2285. open_v6->dev_channel_mapping_eid2[2] = PCM_CHANNEL_LS;
  2286. open_v6->dev_channel_mapping_eid2[3] = PCM_CHANNEL_RS;
  2287. } else if (channel_mode == 5) {
  2288. open_v6->dev_channel_mapping_eid2[0] = PCM_CHANNEL_FL;
  2289. open_v6->dev_channel_mapping_eid2[1] = PCM_CHANNEL_FR;
  2290. open_v6->dev_channel_mapping_eid2[2] = PCM_CHANNEL_FC;
  2291. open_v6->dev_channel_mapping_eid2[3] = PCM_CHANNEL_LS;
  2292. open_v6->dev_channel_mapping_eid2[4] = PCM_CHANNEL_RS;
  2293. } else if (channel_mode == 6) {
  2294. open_v6->dev_channel_mapping_eid2[0] = PCM_CHANNEL_FL;
  2295. open_v6->dev_channel_mapping_eid2[1] = PCM_CHANNEL_FR;
  2296. open_v6->dev_channel_mapping_eid2[2] = PCM_CHANNEL_LFE;
  2297. open_v6->dev_channel_mapping_eid2[3] = PCM_CHANNEL_FC;
  2298. open_v6->dev_channel_mapping_eid2[4] = PCM_CHANNEL_LS;
  2299. open_v6->dev_channel_mapping_eid2[5] = PCM_CHANNEL_RS;
  2300. } else if (channel_mode == 8) {
  2301. open_v6->dev_channel_mapping_eid2[0] = PCM_CHANNEL_FL;
  2302. open_v6->dev_channel_mapping_eid2[1] = PCM_CHANNEL_FR;
  2303. open_v6->dev_channel_mapping_eid2[2] = PCM_CHANNEL_LFE;
  2304. open_v6->dev_channel_mapping_eid2[3] = PCM_CHANNEL_FC;
  2305. open_v6->dev_channel_mapping_eid2[4] = PCM_CHANNEL_LS;
  2306. open_v6->dev_channel_mapping_eid2[5] = PCM_CHANNEL_RS;
  2307. open_v6->dev_channel_mapping_eid2[6] = PCM_CHANNEL_LB;
  2308. open_v6->dev_channel_mapping_eid2[7] = PCM_CHANNEL_RB;
  2309. } else {
  2310. pr_err("%s: invalid num_chan %d\n", __func__,
  2311. channel_mode);
  2312. rc = -EINVAL;
  2313. }
  2314. return rc;
  2315. }
  2316. static int adm_arrange_mch_map_v8(
  2317. struct adm_device_endpoint_payload *ep_payload,
  2318. int path, int channel_mode, int port_idx)
  2319. {
  2320. int rc = 0, idx;
  2321. memset(ep_payload->dev_channel_mapping,
  2322. 0, PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  2323. switch (path) {
  2324. case ADM_PATH_PLAYBACK:
  2325. idx = ADM_MCH_MAP_IDX_PLAYBACK;
  2326. break;
  2327. case ADM_PATH_LIVE_REC:
  2328. case ADM_PATH_NONLIVE_REC:
  2329. idx = ADM_MCH_MAP_IDX_REC;
  2330. break;
  2331. default:
  2332. goto non_mch_path;
  2333. };
  2334. if ((ep_payload->dev_num_channel > 2) &&
  2335. (port_channel_map[port_idx].set_channel_map ||
  2336. multi_ch_maps[idx].set_channel_map)) {
  2337. if (port_channel_map[port_idx].set_channel_map)
  2338. memcpy(ep_payload->dev_channel_mapping,
  2339. port_channel_map[port_idx].channel_mapping,
  2340. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  2341. else
  2342. memcpy(ep_payload->dev_channel_mapping,
  2343. multi_ch_maps[idx].channel_mapping,
  2344. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  2345. } else {
  2346. if (channel_mode == 1) {
  2347. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FC;
  2348. } else if (channel_mode == 2) {
  2349. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2350. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2351. } else if (channel_mode == 3) {
  2352. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2353. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2354. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2355. } else if (channel_mode == 4) {
  2356. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2357. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2358. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LS;
  2359. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_RS;
  2360. } else if (channel_mode == 5) {
  2361. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2362. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2363. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2364. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_LS;
  2365. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_RS;
  2366. } else if (channel_mode == 6) {
  2367. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2368. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2369. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2370. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2371. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2372. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2373. } else if (channel_mode == 7) {
  2374. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2375. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2376. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2377. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_LFE;
  2378. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LB;
  2379. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RB;
  2380. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_CS;
  2381. } else if (channel_mode == 8) {
  2382. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2383. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2384. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2385. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2386. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2387. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2388. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2389. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2390. } else if (channel_mode == 10) {
  2391. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2392. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2393. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2394. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2395. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LB;
  2396. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RB;
  2397. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LS;
  2398. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RS;
  2399. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_TFL;
  2400. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TFR;
  2401. } else if (channel_mode == 12) {
  2402. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2403. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2404. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2405. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2406. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LB;
  2407. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RB;
  2408. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LS;
  2409. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RS;
  2410. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_TFL;
  2411. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TFR;
  2412. ep_payload->dev_channel_mapping[10] = PCM_CHANNEL_TSL;
  2413. ep_payload->dev_channel_mapping[11] = PCM_CHANNEL_TSR;
  2414. } else if (channel_mode == 14) {
  2415. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2416. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2417. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2418. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2419. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LB;
  2420. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RB;
  2421. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LS;
  2422. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RS;
  2423. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_TFL;
  2424. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TFR;
  2425. ep_payload->dev_channel_mapping[10] = PCM_CHANNEL_TSL;
  2426. ep_payload->dev_channel_mapping[11] = PCM_CHANNEL_TSR;
  2427. ep_payload->dev_channel_mapping[12] = PCM_CHANNEL_FLC;
  2428. ep_payload->dev_channel_mapping[13] = PCM_CHANNEL_FRC;
  2429. } else if (channel_mode == 16) {
  2430. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2431. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2432. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2433. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2434. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LB;
  2435. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RB;
  2436. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LS;
  2437. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RS;
  2438. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_TFL;
  2439. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TFR;
  2440. ep_payload->dev_channel_mapping[10] = PCM_CHANNEL_TSL;
  2441. ep_payload->dev_channel_mapping[11] = PCM_CHANNEL_TSR;
  2442. ep_payload->dev_channel_mapping[12] = PCM_CHANNEL_FLC;
  2443. ep_payload->dev_channel_mapping[13] = PCM_CHANNEL_FRC;
  2444. ep_payload->dev_channel_mapping[14] = PCM_CHANNEL_RLC;
  2445. ep_payload->dev_channel_mapping[15] = PCM_CHANNEL_RRC;
  2446. } else if (channel_mode == 32) {
  2447. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2448. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2449. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2450. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2451. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2452. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2453. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2454. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2455. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_CS;
  2456. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TS;
  2457. ep_payload->dev_channel_mapping[10] = PCM_CHANNEL_CVH;
  2458. ep_payload->dev_channel_mapping[11] = PCM_CHANNEL_MS;
  2459. ep_payload->dev_channel_mapping[12] = PCM_CHANNEL_FLC;
  2460. ep_payload->dev_channel_mapping[13] = PCM_CHANNEL_FRC;
  2461. ep_payload->dev_channel_mapping[14] = PCM_CHANNEL_RLC;
  2462. ep_payload->dev_channel_mapping[15] = PCM_CHANNEL_RRC;
  2463. ep_payload->dev_channel_mapping[16] = PCM_CHANNEL_LFE2;
  2464. ep_payload->dev_channel_mapping[17] = PCM_CHANNEL_SL;
  2465. ep_payload->dev_channel_mapping[18] = PCM_CHANNEL_SR;
  2466. ep_payload->dev_channel_mapping[19] = PCM_CHANNEL_TFL;
  2467. ep_payload->dev_channel_mapping[20] = PCM_CHANNEL_TFR;
  2468. ep_payload->dev_channel_mapping[21] = PCM_CHANNEL_TC;
  2469. ep_payload->dev_channel_mapping[22] = PCM_CHANNEL_TBL;
  2470. ep_payload->dev_channel_mapping[23] = PCM_CHANNEL_TBR;
  2471. ep_payload->dev_channel_mapping[24] = PCM_CHANNEL_TSL;
  2472. ep_payload->dev_channel_mapping[25] = PCM_CHANNEL_TSR;
  2473. ep_payload->dev_channel_mapping[26] = PCM_CHANNEL_TBC;
  2474. ep_payload->dev_channel_mapping[27] = PCM_CHANNEL_BFC;
  2475. ep_payload->dev_channel_mapping[28] = PCM_CHANNEL_BFL;
  2476. ep_payload->dev_channel_mapping[29] = PCM_CHANNEL_BFR;
  2477. ep_payload->dev_channel_mapping[30] = PCM_CHANNEL_LW;
  2478. ep_payload->dev_channel_mapping[31] = PCM_CHANNEL_RW;
  2479. } else {
  2480. pr_err("%s: invalid num_chan %d\n", __func__,
  2481. channel_mode);
  2482. rc = -EINVAL;
  2483. goto inval_ch_mod;
  2484. }
  2485. }
  2486. non_mch_path:
  2487. inval_ch_mod:
  2488. return rc;
  2489. }
  2490. static int adm_arrange_mch_ep2_map_v8(
  2491. struct adm_device_endpoint_payload *ep_payload,
  2492. int channel_mode)
  2493. {
  2494. int rc = 0;
  2495. memset(ep_payload->dev_channel_mapping, 0,
  2496. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  2497. if (channel_mode == 1) {
  2498. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FC;
  2499. } else if (channel_mode == 2) {
  2500. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2501. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2502. } else if (channel_mode == 3) {
  2503. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2504. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2505. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2506. } else if (channel_mode == 4) {
  2507. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2508. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2509. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LS;
  2510. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_RS;
  2511. } else if (channel_mode == 5) {
  2512. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2513. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2514. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2515. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_LS;
  2516. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_RS;
  2517. } else if (channel_mode == 6) {
  2518. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2519. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2520. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2521. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2522. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2523. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2524. } else if (channel_mode == 8) {
  2525. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2526. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2527. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2528. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2529. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2530. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2531. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2532. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2533. } else if (channel_mode == 10) {
  2534. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2535. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2536. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2537. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2538. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2539. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2540. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2541. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2542. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_CS;
  2543. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TS;
  2544. } else if (channel_mode == 12) {
  2545. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2546. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2547. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2548. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2549. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2550. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2551. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2552. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2553. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_TFL;
  2554. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TFR;
  2555. ep_payload->dev_channel_mapping[10] = PCM_CHANNEL_TSL;
  2556. ep_payload->dev_channel_mapping[11] = PCM_CHANNEL_TSR;
  2557. } else if (channel_mode == 16) {
  2558. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2559. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2560. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2561. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2562. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2563. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2564. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2565. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2566. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_CS;
  2567. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TS;
  2568. ep_payload->dev_channel_mapping[10] = PCM_CHANNEL_CVH;
  2569. ep_payload->dev_channel_mapping[11] = PCM_CHANNEL_MS;
  2570. ep_payload->dev_channel_mapping[12] = PCM_CHANNEL_FLC;
  2571. ep_payload->dev_channel_mapping[13] = PCM_CHANNEL_FRC;
  2572. ep_payload->dev_channel_mapping[14] = PCM_CHANNEL_RLC;
  2573. ep_payload->dev_channel_mapping[15] = PCM_CHANNEL_RRC;
  2574. } else if (channel_mode == 32) {
  2575. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2576. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2577. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2578. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2579. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2580. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2581. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2582. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2583. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_CS;
  2584. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TS;
  2585. ep_payload->dev_channel_mapping[10] = PCM_CHANNEL_CVH;
  2586. ep_payload->dev_channel_mapping[11] = PCM_CHANNEL_MS;
  2587. ep_payload->dev_channel_mapping[12] = PCM_CHANNEL_FLC;
  2588. ep_payload->dev_channel_mapping[13] = PCM_CHANNEL_FRC;
  2589. ep_payload->dev_channel_mapping[14] = PCM_CHANNEL_RLC;
  2590. ep_payload->dev_channel_mapping[15] = PCM_CHANNEL_RRC;
  2591. ep_payload->dev_channel_mapping[16] = PCM_CHANNEL_LFE2;
  2592. ep_payload->dev_channel_mapping[17] = PCM_CHANNEL_SL;
  2593. ep_payload->dev_channel_mapping[18] = PCM_CHANNEL_SR;
  2594. ep_payload->dev_channel_mapping[19] = PCM_CHANNEL_TFL;
  2595. ep_payload->dev_channel_mapping[20] = PCM_CHANNEL_TFR;
  2596. ep_payload->dev_channel_mapping[21] = PCM_CHANNEL_TC;
  2597. ep_payload->dev_channel_mapping[22] = PCM_CHANNEL_TBL;
  2598. ep_payload->dev_channel_mapping[23] = PCM_CHANNEL_TBR;
  2599. ep_payload->dev_channel_mapping[24] = PCM_CHANNEL_TSL;
  2600. ep_payload->dev_channel_mapping[25] = PCM_CHANNEL_TSR;
  2601. ep_payload->dev_channel_mapping[26] = PCM_CHANNEL_TBC;
  2602. ep_payload->dev_channel_mapping[27] = PCM_CHANNEL_BFC;
  2603. ep_payload->dev_channel_mapping[28] = PCM_CHANNEL_BFL;
  2604. ep_payload->dev_channel_mapping[29] = PCM_CHANNEL_BFR;
  2605. ep_payload->dev_channel_mapping[30] = PCM_CHANNEL_LW;
  2606. ep_payload->dev_channel_mapping[31] = PCM_CHANNEL_RW;
  2607. } else {
  2608. pr_err("%s: invalid num_chan %d\n", __func__,
  2609. channel_mode);
  2610. rc = -EINVAL;
  2611. }
  2612. return rc;
  2613. }
  2614. static int adm_copp_set_ec_ref_mfc_cfg(int port_id, int copp_idx,
  2615. int sample_rate, int bps,
  2616. int in_channels, int out_channels)
  2617. {
  2618. struct audproc_mfc_param_media_fmt mfc_cfg;
  2619. struct param_hdr_v3 param_hdr;
  2620. u16 *chmixer_params = NULL;
  2621. int rc = 0, i = 0, j = 0, param_index = 0, param_size = 0;
  2622. struct adm_device_endpoint_payload ep_payload = {0, 0, 0, {0}};
  2623. memset(&mfc_cfg, 0, sizeof(mfc_cfg));
  2624. memset(&ep_payload, 0, sizeof(ep_payload));
  2625. memset(&param_hdr, 0, sizeof(param_hdr));
  2626. param_hdr.module_id = AUDPROC_MODULE_ID_MFC_EC_REF;
  2627. param_hdr.instance_id = INSTANCE_ID_0;
  2628. pr_debug("%s: port_id %d copp_idx %d SR %d, BW %d in_ch %d out_ch %d\n",
  2629. __func__, port_id, copp_idx, sample_rate,
  2630. bps, in_channels, out_channels);
  2631. if (out_channels <= 0 || out_channels > AUDPROC_MFC_OUT_CHANNELS_MAX) {
  2632. pr_err("%s: unsupported out channels=%d\n", __func__, out_channels);
  2633. return -EINVAL;
  2634. }
  2635. /* 1. Update Media Format */
  2636. param_hdr.param_id = AUDPROC_PARAM_ID_MFC_OUTPUT_MEDIA_FORMAT;
  2637. param_hdr.param_size = sizeof(mfc_cfg);
  2638. mfc_cfg.sampling_rate = sample_rate;
  2639. mfc_cfg.bits_per_sample = bps;
  2640. mfc_cfg.num_channels = out_channels;
  2641. ep_payload.dev_num_channel = out_channels;
  2642. rc = adm_arrange_mch_ep2_map_v8(&ep_payload, out_channels);
  2643. if (rc < 0) {
  2644. pr_err("%s: unable to get map for out channels=%d\n",
  2645. __func__, out_channels);
  2646. return -EINVAL;
  2647. }
  2648. for (i = 0; i < out_channels; i++)
  2649. mfc_cfg.channel_type[i] = (uint16_t) ep_payload.dev_channel_mapping[i];
  2650. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx,
  2651. param_hdr, (uint8_t *) &mfc_cfg);
  2652. if (rc) {
  2653. pr_err("%s: Failed to set media format, err %d\n", __func__, rc);
  2654. return rc;
  2655. }
  2656. /* 2. Send Channel Mixer params */
  2657. param_size = 2 * (4 + out_channels + in_channels + (out_channels * in_channels));
  2658. param_size = round_up(param_size, 4);
  2659. param_hdr.param_id = DEFAULT_CHMIXER_PARAM_ID_COEFF;
  2660. param_hdr.param_size = param_size;
  2661. pr_debug("%s: chmixer param sz = %d\n", __func__, param_size);
  2662. chmixer_params = kzalloc(param_size, GFP_KERNEL);
  2663. if (!chmixer_params) {
  2664. return -ENOMEM;
  2665. }
  2666. param_index = 2; /* param[0] and [1] represents chmixer rule(always 0) */
  2667. chmixer_params[param_index++] = out_channels;
  2668. chmixer_params[param_index++] = in_channels;
  2669. /* output channel map is same as one set in media format */
  2670. for (i = 0; i < out_channels; i++)
  2671. chmixer_params[param_index++] = ep_payload.dev_channel_mapping[i];
  2672. /* input channel map should be same as one set for ep2 during copp open */
  2673. ep_payload.dev_num_channel = in_channels;
  2674. rc = adm_arrange_mch_ep2_map_v8(&ep_payload, in_channels);
  2675. if (rc < 0) {
  2676. pr_err("%s: unable to get in channal map\n", __func__);
  2677. goto exit;
  2678. }
  2679. for (i = 0; i < in_channels; i++)
  2680. chmixer_params[param_index++] = ep_payload.dev_channel_mapping[i];
  2681. for (i = 0; i < out_channels; i++)
  2682. for (j = 0; j < in_channels; j++)
  2683. chmixer_params[param_index++] = this_adm.ec_ref_chmixer_weights[i][j];
  2684. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx,
  2685. param_hdr, (uint8_t *) chmixer_params);
  2686. if (rc)
  2687. pr_err("%s: Failed to set chmixer params, err %d\n", __func__, rc);
  2688. exit:
  2689. kfree(chmixer_params);
  2690. return rc;
  2691. }
  2692. /**
  2693. * adm_open -
  2694. * command to send ADM open
  2695. *
  2696. * @port_id: port id number
  2697. * @path: direction or ADM path type
  2698. * @rate: sample rate of session
  2699. * @channel_mode: number of channels set
  2700. * @topology: topology active for this session
  2701. * @perf_mode: performance mode like LL/ULL/..
  2702. * @bit_width: bit width to set for copp
  2703. * @app_type: App type used for this session
  2704. * @acdb_id: ACDB ID of this device
  2705. * @session_type: type of session
  2706. *
  2707. * Returns 0 on success or error on failure
  2708. */
  2709. int adm_open(int port_id, int path, int rate, int channel_mode, int topology,
  2710. int perf_mode, uint16_t bit_width, int app_type, int acdb_id,
  2711. int session_type)
  2712. {
  2713. struct adm_cmd_device_open_v5 open;
  2714. struct adm_cmd_device_open_v6 open_v6;
  2715. struct adm_cmd_device_open_v8 open_v8;
  2716. struct adm_device_endpoint_payload ep1_payload;
  2717. struct adm_device_endpoint_payload ep2_payload;
  2718. int ep1_payload_size = 0;
  2719. int ep2_payload_size = 0;
  2720. int ret = 0;
  2721. int port_idx, flags;
  2722. int copp_idx = -1;
  2723. int tmp_port = q6audio_get_port_id(port_id);
  2724. void *adm_params = NULL;
  2725. int param_size;
  2726. int num_ec_ref_rx_chans = this_adm.num_ec_ref_rx_chans;
  2727. pr_debug("%s:port %#x path:%d rate:%d mode:%d perf_mode:%d,topo_id %d\n",
  2728. __func__, port_id, path, rate, channel_mode, perf_mode,
  2729. topology);
  2730. port_id = q6audio_convert_virtual_to_portid(port_id);
  2731. port_idx = adm_validate_and_get_port_index(port_id);
  2732. if (port_idx < 0) {
  2733. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  2734. return -EINVAL;
  2735. }
  2736. if (channel_mode < 0 || channel_mode > 32) {
  2737. pr_err("%s: Invalid channel number 0x%x\n",
  2738. __func__, channel_mode);
  2739. return -EINVAL;
  2740. }
  2741. if (this_adm.apr == NULL) {
  2742. this_adm.apr = apr_register("ADSP", "ADM", adm_callback,
  2743. 0xFFFFFFFF, &this_adm);
  2744. if (this_adm.apr == NULL) {
  2745. pr_err("%s: Unable to register ADM\n", __func__);
  2746. return -ENODEV;
  2747. }
  2748. rtac_set_adm_handle(this_adm.apr);
  2749. }
  2750. if (perf_mode == ULL_POST_PROCESSING_PCM_MODE) {
  2751. flags = ADM_ULL_POST_PROCESSING_DEVICE_SESSION;
  2752. if ((topology == DOLBY_ADM_COPP_TOPOLOGY_ID) ||
  2753. (topology == DS2_ADM_COPP_TOPOLOGY_ID) ||
  2754. (topology == SRS_TRUMEDIA_TOPOLOGY_ID))
  2755. topology = DEFAULT_COPP_TOPOLOGY;
  2756. } else if (perf_mode == ULTRA_LOW_LATENCY_PCM_MODE) {
  2757. flags = ADM_ULTRA_LOW_LATENCY_DEVICE_SESSION;
  2758. topology = NULL_COPP_TOPOLOGY;
  2759. rate = ULL_SUPPORTED_SAMPLE_RATE;
  2760. bit_width = ULL_SUPPORTED_BITS_PER_SAMPLE;
  2761. } else if (perf_mode == LOW_LATENCY_PCM_MODE) {
  2762. flags = ADM_LOW_LATENCY_DEVICE_SESSION;
  2763. if ((topology == DOLBY_ADM_COPP_TOPOLOGY_ID) ||
  2764. (topology == DS2_ADM_COPP_TOPOLOGY_ID) ||
  2765. (topology == SRS_TRUMEDIA_TOPOLOGY_ID))
  2766. topology = DEFAULT_COPP_TOPOLOGY;
  2767. } else {
  2768. if ((path == ADM_PATH_COMPRESSED_RX) ||
  2769. (path == ADM_PATH_COMPRESSED_TX))
  2770. flags = 0;
  2771. else
  2772. flags = ADM_LEGACY_DEVICE_SESSION;
  2773. }
  2774. if ((topology == VPM_TX_SM_ECNS_V2_COPP_TOPOLOGY) ||
  2775. (topology == VPM_TX_DM_FLUENCE_EF_COPP_TOPOLOGY)) {
  2776. if ((rate != ADM_CMD_COPP_OPEN_SAMPLE_RATE_8K) &&
  2777. (rate != ADM_CMD_COPP_OPEN_SAMPLE_RATE_16K) &&
  2778. (rate != ADM_CMD_COPP_OPEN_SAMPLE_RATE_32K) &&
  2779. (rate != ADM_CMD_COPP_OPEN_SAMPLE_RATE_48K))
  2780. rate = 16000;
  2781. }
  2782. if ((topology == VPM_TX_DM_FLUENCE_COPP_TOPOLOGY) ||
  2783. (topology == VPM_TX_DM_RFECNS_COPP_TOPOLOGY)) {
  2784. if ((rate != ADM_CMD_COPP_OPEN_SAMPLE_RATE_8K) &&
  2785. (rate != ADM_CMD_COPP_OPEN_SAMPLE_RATE_16K) &&
  2786. (rate != ADM_CMD_COPP_OPEN_SAMPLE_RATE_32K))
  2787. rate = 16000;
  2788. }
  2789. if (topology == FFECNS_TOPOLOGY) {
  2790. this_adm.ffecns_port_id = port_id;
  2791. pr_debug("%s: ffecns port id =%x\n", __func__,
  2792. this_adm.ffecns_port_id);
  2793. }
  2794. if (topology == VPM_TX_VOICE_SMECNS_V2_COPP_TOPOLOGY)
  2795. channel_mode = 1;
  2796. /*
  2797. * Routing driver reuses the same adm for streams with the same
  2798. * app_type, sample_rate etc.
  2799. * This isn't allowed for ULL streams as per the DSP interface
  2800. */
  2801. if (perf_mode != ULTRA_LOW_LATENCY_PCM_MODE)
  2802. copp_idx = adm_get_idx_if_copp_exists(port_idx, topology,
  2803. perf_mode,
  2804. rate, bit_width,
  2805. app_type, session_type);
  2806. if (copp_idx < 0) {
  2807. copp_idx = adm_get_next_available_copp(port_idx);
  2808. if (copp_idx >= MAX_COPPS_PER_PORT) {
  2809. pr_err("%s: exceeded copp id %d\n",
  2810. __func__, copp_idx);
  2811. return -EINVAL;
  2812. }
  2813. atomic_set(&this_adm.copp.cnt[port_idx][copp_idx], 0);
  2814. atomic_set(&this_adm.copp.topology[port_idx][copp_idx],
  2815. topology);
  2816. atomic_set(&this_adm.copp.mode[port_idx][copp_idx],
  2817. perf_mode);
  2818. atomic_set(&this_adm.copp.rate[port_idx][copp_idx],
  2819. rate);
  2820. atomic_set(&this_adm.copp.channels[port_idx][copp_idx],
  2821. channel_mode);
  2822. atomic_set(&this_adm.copp.bit_width[port_idx][copp_idx],
  2823. bit_width);
  2824. atomic_set(&this_adm.copp.app_type[port_idx][copp_idx],
  2825. app_type);
  2826. atomic_set(&this_adm.copp.acdb_id[port_idx][copp_idx],
  2827. acdb_id);
  2828. atomic_set(&this_adm.copp.session_type[port_idx][copp_idx],
  2829. session_type);
  2830. set_bit(ADM_STATUS_CALIBRATION_REQUIRED,
  2831. (void *)&this_adm.copp.adm_status[port_idx][copp_idx]);
  2832. if ((path != ADM_PATH_COMPRESSED_RX) &&
  2833. (path != ADM_PATH_COMPRESSED_TX))
  2834. send_adm_custom_topology();
  2835. }
  2836. if (this_adm.copp.adm_delay[port_idx][copp_idx] &&
  2837. perf_mode == LEGACY_PCM_MODE) {
  2838. atomic_set(&this_adm.copp.adm_delay_stat[port_idx][copp_idx],
  2839. 1);
  2840. this_adm.copp.adm_delay[port_idx][copp_idx] = 0;
  2841. wake_up(&this_adm.copp.adm_delay_wait[port_idx][copp_idx]);
  2842. }
  2843. /* Create a COPP if port id are not enabled */
  2844. if (atomic_read(&this_adm.copp.cnt[port_idx][copp_idx]) == 0) {
  2845. pr_debug("%s: open ADM: port_idx: %d, copp_idx: %d\n", __func__,
  2846. port_idx, copp_idx);
  2847. if ((topology == SRS_TRUMEDIA_TOPOLOGY_ID) &&
  2848. perf_mode == LEGACY_PCM_MODE) {
  2849. int res;
  2850. atomic_set(&this_adm.mem_map_index, ADM_SRS_TRUMEDIA);
  2851. msm_dts_srs_tm_ion_memmap(&this_adm.outband_memmap);
  2852. res = adm_memory_map_regions(
  2853. &this_adm.outband_memmap.paddr, 0,
  2854. (uint32_t *)&this_adm.outband_memmap.size, 1);
  2855. if (res < 0) {
  2856. pr_err("%s: SRS adm_memory_map_regions failed! addr = 0x%pK, size = %d\n",
  2857. __func__,
  2858. (void *)this_adm.outband_memmap.paddr,
  2859. (uint32_t)this_adm.outband_memmap.size);
  2860. }
  2861. }
  2862. if ((q6core_get_avcs_api_version_per_service(
  2863. APRV2_IDS_SERVICE_ID_ADSP_ADM_V) >=
  2864. ADSP_ADM_API_VERSION_V3)) {
  2865. memset(&open_v8, 0, sizeof(open_v8));
  2866. memset(&ep1_payload, 0, sizeof(ep1_payload));
  2867. memset(&ep2_payload, 0, sizeof(ep2_payload));
  2868. open_v8.hdr.hdr_field = APR_HDR_FIELD(
  2869. APR_MSG_TYPE_SEQ_CMD,
  2870. APR_HDR_LEN(APR_HDR_SIZE),
  2871. APR_PKT_VER);
  2872. open_v8.hdr.src_svc = APR_SVC_ADM;
  2873. open_v8.hdr.src_domain = APR_DOMAIN_APPS;
  2874. open_v8.hdr.src_port = tmp_port;
  2875. open_v8.hdr.dest_svc = APR_SVC_ADM;
  2876. open_v8.hdr.dest_domain = APR_DOMAIN_ADSP;
  2877. open_v8.hdr.dest_port = tmp_port;
  2878. open_v8.hdr.token = port_idx << 16 | copp_idx;
  2879. open_v8.hdr.opcode = ADM_CMD_DEVICE_OPEN_V8;
  2880. if (this_adm.native_mode != 0) {
  2881. open_v8.flags = flags |
  2882. (this_adm.native_mode << 11);
  2883. this_adm.native_mode = 0;
  2884. } else {
  2885. open_v8.flags = flags;
  2886. }
  2887. open_v8.mode_of_operation = path;
  2888. open_v8.endpoint_id_1 = tmp_port;
  2889. open_v8.endpoint_id_2 = 0xFFFF;
  2890. open_v8.endpoint_id_3 = 0xFFFF;
  2891. if (((this_adm.ec_ref_rx & AFE_PORT_INVALID) !=
  2892. AFE_PORT_INVALID) &&
  2893. (path != ADM_PATH_PLAYBACK)) {
  2894. if (this_adm.num_ec_ref_rx_chans != 0) {
  2895. open_v8.endpoint_id_2 =
  2896. this_adm.ec_ref_rx;
  2897. this_adm.ec_ref_rx = AFE_PORT_INVALID;
  2898. } else {
  2899. pr_err("%s: EC channels not set %d\n",
  2900. __func__,
  2901. this_adm.num_ec_ref_rx_chans);
  2902. return -EINVAL;
  2903. }
  2904. }
  2905. open_v8.topology_id = topology;
  2906. open_v8.reserved = 0;
  2907. /* variable endpoint payload */
  2908. ep1_payload.dev_num_channel = channel_mode & 0x00FF;
  2909. ep1_payload.bit_width = bit_width;
  2910. ep1_payload.sample_rate = rate;
  2911. ret = adm_arrange_mch_map_v8(&ep1_payload, path,
  2912. channel_mode, port_idx);
  2913. if (ret)
  2914. return ret;
  2915. pr_debug("%s: port_id=0x%x %x %x topology_id=0x%X flags %x ref_ch %x\n",
  2916. __func__, open_v8.endpoint_id_1,
  2917. open_v8.endpoint_id_2,
  2918. open_v8.endpoint_id_3,
  2919. open_v8.topology_id,
  2920. open_v8.flags,
  2921. this_adm.num_ec_ref_rx_chans);
  2922. ep1_payload_size = 8 +
  2923. roundup(ep1_payload.dev_num_channel, 4);
  2924. param_size = sizeof(struct adm_cmd_device_open_v8)
  2925. + ep1_payload_size;
  2926. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
  2927. if ((this_adm.num_ec_ref_rx_chans != 0)
  2928. && (path != ADM_PATH_PLAYBACK)
  2929. && (open_v8.endpoint_id_2 != 0xFFFF)) {
  2930. ep2_payload.dev_num_channel =
  2931. this_adm.num_ec_ref_rx_chans;
  2932. if (this_adm.ec_ref_rx_bit_width != 0) {
  2933. ep2_payload.bit_width =
  2934. this_adm.ec_ref_rx_bit_width;
  2935. } else {
  2936. ep2_payload.bit_width = bit_width;
  2937. }
  2938. if (this_adm.ec_ref_rx_sampling_rate != 0) {
  2939. ep2_payload.sample_rate =
  2940. this_adm.ec_ref_rx_sampling_rate;
  2941. } else {
  2942. ep2_payload.sample_rate = rate;
  2943. }
  2944. pr_debug("%s: adm open_v8 eid2_channels=%d eid2_bit_width=%d eid2_rate=%d\n",
  2945. __func__,
  2946. ep2_payload.dev_num_channel,
  2947. ep2_payload.bit_width,
  2948. ep2_payload.sample_rate);
  2949. ret = adm_arrange_mch_ep2_map_v8(&ep2_payload,
  2950. ep2_payload.dev_num_channel);
  2951. if (ret)
  2952. return ret;
  2953. ep2_payload_size = 8 +
  2954. roundup(ep2_payload.dev_num_channel, 4);
  2955. param_size += ep2_payload_size;
  2956. }
  2957. open_v8.hdr.pkt_size = param_size;
  2958. adm_params = kzalloc(param_size, GFP_KERNEL);
  2959. if (!adm_params)
  2960. return -ENOMEM;
  2961. memcpy(adm_params, &open_v8, sizeof(open_v8));
  2962. memcpy(adm_params + sizeof(open_v8),
  2963. (void *)&ep1_payload,
  2964. ep1_payload_size);
  2965. if ((this_adm.num_ec_ref_rx_chans != 0)
  2966. && (path != ADM_PATH_PLAYBACK)
  2967. && (open_v8.endpoint_id_2 != 0xFFFF)) {
  2968. this_adm.num_ec_ref_rx_chans = 0;
  2969. memcpy(adm_params + sizeof(open_v8)
  2970. + ep1_payload_size,
  2971. (void *)&ep2_payload,
  2972. ep2_payload_size);
  2973. }
  2974. ret = apr_send_pkt(this_adm.apr,
  2975. (uint32_t *)adm_params);
  2976. if (ret < 0) {
  2977. pr_err("%s: port_id: 0x%x for[0x%x] failed %d for open_v8\n",
  2978. __func__, tmp_port, port_id, ret);
  2979. return -EINVAL;
  2980. }
  2981. kfree(adm_params);
  2982. } else {
  2983. open.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2984. APR_HDR_LEN(APR_HDR_SIZE),
  2985. APR_PKT_VER);
  2986. open.hdr.pkt_size = sizeof(open);
  2987. open.hdr.src_svc = APR_SVC_ADM;
  2988. open.hdr.src_domain = APR_DOMAIN_APPS;
  2989. open.hdr.src_port = tmp_port;
  2990. open.hdr.dest_svc = APR_SVC_ADM;
  2991. open.hdr.dest_domain = APR_DOMAIN_ADSP;
  2992. open.hdr.dest_port = tmp_port;
  2993. open.hdr.token = port_idx << 16 | copp_idx;
  2994. open.hdr.opcode = ADM_CMD_DEVICE_OPEN_V5;
  2995. open.flags = flags;
  2996. open.mode_of_operation = path;
  2997. open.endpoint_id_1 = tmp_port;
  2998. open.endpoint_id_2 = 0xFFFF;
  2999. if (this_adm.ec_ref_rx && (path != 1) &&
  3000. (afe_get_port_type(tmp_port) == MSM_AFE_PORT_TYPE_TX)) {
  3001. open.endpoint_id_2 = this_adm.ec_ref_rx;
  3002. }
  3003. open.topology_id = topology;
  3004. open.dev_num_channel = channel_mode & 0x00FF;
  3005. open.bit_width = bit_width;
  3006. WARN_ON((perf_mode == ULTRA_LOW_LATENCY_PCM_MODE) &&
  3007. (rate != ULL_SUPPORTED_SAMPLE_RATE));
  3008. open.sample_rate = rate;
  3009. ret = adm_arrange_mch_map(&open, path, channel_mode,
  3010. port_idx);
  3011. if (ret)
  3012. return ret;
  3013. pr_debug("%s: port_id=0x%x rate=%d topology_id=0x%X\n",
  3014. __func__, open.endpoint_id_1, open.sample_rate,
  3015. open.topology_id);
  3016. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
  3017. if ((this_adm.num_ec_ref_rx_chans != 0) &&
  3018. (path != 1) && (open.endpoint_id_2 != 0xFFFF)) {
  3019. memset(&open_v6, 0,
  3020. sizeof(struct adm_cmd_device_open_v6));
  3021. memcpy(&open_v6, &open,
  3022. sizeof(struct adm_cmd_device_open_v5));
  3023. open_v6.hdr.opcode = ADM_CMD_DEVICE_OPEN_V6;
  3024. open_v6.hdr.pkt_size = sizeof(open_v6);
  3025. open_v6.dev_num_channel_eid2 =
  3026. this_adm.num_ec_ref_rx_chans;
  3027. if (this_adm.ec_ref_rx_bit_width != 0) {
  3028. open_v6.bit_width_eid2 =
  3029. this_adm.ec_ref_rx_bit_width;
  3030. } else {
  3031. open_v6.bit_width_eid2 = bit_width;
  3032. }
  3033. if (this_adm.ec_ref_rx_sampling_rate != 0) {
  3034. open_v6.sample_rate_eid2 =
  3035. this_adm.ec_ref_rx_sampling_rate;
  3036. } else {
  3037. open_v6.sample_rate_eid2 = rate;
  3038. }
  3039. pr_debug("%s: eid2_channels=%d eid2_bit_width=%d eid2_rate=%d\n",
  3040. __func__, open_v6.dev_num_channel_eid2,
  3041. open_v6.bit_width_eid2,
  3042. open_v6.sample_rate_eid2);
  3043. ret = adm_arrange_mch_ep2_map(&open_v6,
  3044. open_v6.dev_num_channel_eid2);
  3045. if (ret)
  3046. return ret;
  3047. ret = apr_send_pkt(this_adm.apr,
  3048. (uint32_t *)&open_v6);
  3049. } else {
  3050. ret = apr_send_pkt(this_adm.apr,
  3051. (uint32_t *)&open);
  3052. }
  3053. if (ret < 0) {
  3054. pr_err("%s: port_id: 0x%x for[0x%x] failed %d\n",
  3055. __func__, tmp_port, port_id, ret);
  3056. return -EINVAL;
  3057. }
  3058. }
  3059. /* Wait for the callback with copp id */
  3060. ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  3061. atomic_read(&this_adm.copp.stat
  3062. [port_idx][copp_idx]) >= 0,
  3063. msecs_to_jiffies(2 * TIMEOUT_MS));
  3064. if (!ret) {
  3065. pr_err("%s: ADM open timedout for port_id: 0x%x for [0x%x]\n",
  3066. __func__, tmp_port, port_id);
  3067. return -EINVAL;
  3068. } else if (atomic_read(&this_adm.copp.stat
  3069. [port_idx][copp_idx]) > 0) {
  3070. pr_err("%s: DSP returned error[%s]\n",
  3071. __func__, adsp_err_get_err_str(
  3072. atomic_read(&this_adm.copp.stat
  3073. [port_idx][copp_idx])));
  3074. return adsp_err_get_lnx_err_code(
  3075. atomic_read(&this_adm.copp.stat
  3076. [port_idx][copp_idx]));
  3077. }
  3078. }
  3079. atomic_inc(&this_adm.copp.cnt[port_idx][copp_idx]);
  3080. /*
  3081. * Configure MFC(in ec_ref path) if chmixing param is applicable and set.
  3082. * Except channels and channel maps the media format config for this module
  3083. * should match with the COPP(EP1) config values.
  3084. */
  3085. if (path != ADM_PATH_PLAYBACK &&
  3086. this_adm.num_ec_ref_rx_chans_downmixed != 0 &&
  3087. num_ec_ref_rx_chans != this_adm.num_ec_ref_rx_chans_downmixed) {
  3088. ret = adm_copp_set_ec_ref_mfc_cfg(port_id, copp_idx,
  3089. rate, bit_width, num_ec_ref_rx_chans,
  3090. this_adm.num_ec_ref_rx_chans_downmixed);
  3091. this_adm.num_ec_ref_rx_chans_downmixed = 0;
  3092. if (ret)
  3093. pr_err("%s: set EC REF MFC cfg failed, err %d\n", __func__, ret);
  3094. }
  3095. return copp_idx;
  3096. }
  3097. EXPORT_SYMBOL(adm_open);
  3098. /**
  3099. * adm_copp_mfc_cfg -
  3100. * command to send ADM MFC config
  3101. *
  3102. * @port_id: Port ID number
  3103. * @copp_idx: copp index assigned
  3104. * @dst_sample_rate: sink sample rate
  3105. *
  3106. */
  3107. void adm_copp_mfc_cfg(int port_id, int copp_idx, int dst_sample_rate)
  3108. {
  3109. struct audproc_mfc_param_media_fmt mfc_cfg;
  3110. struct adm_cmd_device_open_v5 open;
  3111. struct param_hdr_v3 param_hdr;
  3112. int port_idx;
  3113. int rc = 0;
  3114. int i = 0;
  3115. port_id = q6audio_convert_virtual_to_portid(port_id);
  3116. port_idx = adm_validate_and_get_port_index(port_id);
  3117. if (port_idx < 0) {
  3118. pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
  3119. goto fail_cmd;
  3120. }
  3121. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  3122. pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
  3123. goto fail_cmd;
  3124. }
  3125. memset(&mfc_cfg, 0, sizeof(mfc_cfg));
  3126. memset(&open, 0, sizeof(open));
  3127. memset(&param_hdr, 0, sizeof(param_hdr));
  3128. param_hdr.module_id = AUDPROC_MODULE_ID_MFC;
  3129. param_hdr.instance_id = INSTANCE_ID_0;
  3130. param_hdr.param_id = AUDPROC_PARAM_ID_MFC_OUTPUT_MEDIA_FORMAT;
  3131. param_hdr.param_size = sizeof(mfc_cfg);
  3132. mfc_cfg.sampling_rate = dst_sample_rate;
  3133. mfc_cfg.bits_per_sample =
  3134. atomic_read(&this_adm.copp.bit_width[port_idx][copp_idx]);
  3135. open.dev_num_channel = mfc_cfg.num_channels =
  3136. atomic_read(&this_adm.copp.channels[port_idx][copp_idx]);
  3137. rc = adm_arrange_mch_map(&open, ADM_PATH_PLAYBACK,
  3138. mfc_cfg.num_channels, port_idx);
  3139. if (rc < 0) {
  3140. pr_err("%s: unable to get channal map\n", __func__);
  3141. goto fail_cmd;
  3142. }
  3143. for (i = 0; i < mfc_cfg.num_channels; i++)
  3144. mfc_cfg.channel_type[i] =
  3145. (uint16_t) open.dev_channel_mapping[i];
  3146. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
  3147. pr_debug("%s: mfc config: port_idx %d copp_idx %d copp SR %d copp BW %d copp chan %d o/p SR %d\n",
  3148. __func__, port_idx, copp_idx,
  3149. atomic_read(&this_adm.copp.rate[port_idx][copp_idx]),
  3150. mfc_cfg.bits_per_sample, mfc_cfg.num_channels,
  3151. mfc_cfg.sampling_rate);
  3152. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  3153. (uint8_t *) &mfc_cfg);
  3154. if (rc)
  3155. pr_err("%s: Failed to set media format configuration data, err %d\n",
  3156. __func__, rc);
  3157. fail_cmd:
  3158. return;
  3159. }
  3160. EXPORT_SYMBOL(adm_copp_mfc_cfg);
  3161. static void route_set_opcode_matrix_id(
  3162. struct adm_cmd_matrix_map_routings_v5 **route_addr,
  3163. int path, uint32_t passthr_mode)
  3164. {
  3165. struct adm_cmd_matrix_map_routings_v5 *route = *route_addr;
  3166. switch (path) {
  3167. case ADM_PATH_PLAYBACK:
  3168. route->hdr.opcode = ADM_CMD_MATRIX_MAP_ROUTINGS_V5;
  3169. route->matrix_id = ADM_MATRIX_ID_AUDIO_RX;
  3170. break;
  3171. case ADM_PATH_LIVE_REC:
  3172. if (passthr_mode == LISTEN) {
  3173. route->hdr.opcode =
  3174. ADM_CMD_STREAM_DEVICE_MAP_ROUTINGS_V5;
  3175. route->matrix_id = ADM_MATRIX_ID_LISTEN_TX;
  3176. break;
  3177. }
  3178. /* fall through to set matrix id for non-listen case */
  3179. case ADM_PATH_NONLIVE_REC:
  3180. route->hdr.opcode = ADM_CMD_MATRIX_MAP_ROUTINGS_V5;
  3181. route->matrix_id = ADM_MATRIX_ID_AUDIO_TX;
  3182. break;
  3183. case ADM_PATH_COMPRESSED_RX:
  3184. route->hdr.opcode = ADM_CMD_STREAM_DEVICE_MAP_ROUTINGS_V5;
  3185. route->matrix_id = ADM_MATRIX_ID_COMPRESSED_AUDIO_RX;
  3186. break;
  3187. case ADM_PATH_COMPRESSED_TX:
  3188. route->hdr.opcode = ADM_CMD_STREAM_DEVICE_MAP_ROUTINGS_V5;
  3189. route->matrix_id = ADM_MATRIX_ID_COMPRESSED_AUDIO_TX;
  3190. break;
  3191. default:
  3192. pr_err("%s: Wrong path set[%d]\n", __func__, path);
  3193. break;
  3194. }
  3195. pr_debug("%s: opcode 0x%x, matrix id %d\n",
  3196. __func__, route->hdr.opcode, route->matrix_id);
  3197. }
  3198. /**
  3199. * adm_matrix_map -
  3200. * command to send ADM matrix map for ADM copp list
  3201. *
  3202. * @path: direction or ADM path type
  3203. * @payload_map: have info of session id and associated copp_idx/num_copps
  3204. * @perf_mode: performance mode like LL/ULL/..
  3205. * @passthr_mode: flag to indicate passthrough mode
  3206. *
  3207. * Returns 0 on success or error on failure
  3208. */
  3209. int adm_matrix_map(int path, struct route_payload payload_map, int perf_mode,
  3210. uint32_t passthr_mode)
  3211. {
  3212. struct adm_cmd_matrix_map_routings_v5 *route;
  3213. struct adm_session_map_node_v5 *node;
  3214. uint16_t *copps_list;
  3215. int cmd_size = 0;
  3216. int ret = 0, i = 0;
  3217. void *payload = NULL;
  3218. void *matrix_map = NULL;
  3219. int port_idx, copp_idx;
  3220. /* Assumes port_ids have already been validated during adm_open */
  3221. cmd_size = (sizeof(struct adm_cmd_matrix_map_routings_v5) +
  3222. sizeof(struct adm_session_map_node_v5) +
  3223. (sizeof(uint32_t) * payload_map.num_copps));
  3224. matrix_map = kzalloc(cmd_size, GFP_KERNEL);
  3225. if (matrix_map == NULL) {
  3226. pr_err("%s: Mem alloc failed\n", __func__);
  3227. ret = -EINVAL;
  3228. return ret;
  3229. }
  3230. route = (struct adm_cmd_matrix_map_routings_v5 *)matrix_map;
  3231. route->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3232. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3233. route->hdr.pkt_size = cmd_size;
  3234. route->hdr.src_svc = 0;
  3235. route->hdr.src_domain = APR_DOMAIN_APPS;
  3236. route->hdr.src_port = 0; /* Ignored */;
  3237. route->hdr.dest_svc = APR_SVC_ADM;
  3238. route->hdr.dest_domain = APR_DOMAIN_ADSP;
  3239. route->hdr.dest_port = 0; /* Ignored */;
  3240. route->hdr.token = 0;
  3241. route->num_sessions = 1;
  3242. route_set_opcode_matrix_id(&route, path, passthr_mode);
  3243. payload = ((u8 *)matrix_map +
  3244. sizeof(struct adm_cmd_matrix_map_routings_v5));
  3245. node = (struct adm_session_map_node_v5 *)payload;
  3246. node->session_id = payload_map.session_id;
  3247. node->num_copps = payload_map.num_copps;
  3248. payload = (u8 *)node + sizeof(struct adm_session_map_node_v5);
  3249. copps_list = (uint16_t *)payload;
  3250. for (i = 0; i < payload_map.num_copps; i++) {
  3251. port_idx =
  3252. adm_validate_and_get_port_index(payload_map.port_id[i]);
  3253. if (port_idx < 0) {
  3254. pr_err("%s: Invalid port_id 0x%x\n", __func__,
  3255. payload_map.port_id[i]);
  3256. ret = -EINVAL;
  3257. goto fail_cmd;
  3258. }
  3259. copp_idx = payload_map.copp_idx[i];
  3260. copps_list[i] = atomic_read(&this_adm.copp.id[port_idx]
  3261. [copp_idx]);
  3262. }
  3263. atomic_set(&this_adm.matrix_map_stat, -1);
  3264. ret = apr_send_pkt(this_adm.apr, (uint32_t *)matrix_map);
  3265. if (ret < 0) {
  3266. pr_err("%s: routing for syream %d failed ret %d\n",
  3267. __func__, payload_map.session_id, ret);
  3268. ret = -EINVAL;
  3269. goto fail_cmd;
  3270. }
  3271. ret = wait_event_timeout(this_adm.matrix_map_wait,
  3272. atomic_read(&this_adm.matrix_map_stat) >= 0,
  3273. msecs_to_jiffies(TIMEOUT_MS));
  3274. if (!ret) {
  3275. pr_err("%s: routing for syream %d failed\n", __func__,
  3276. payload_map.session_id);
  3277. ret = -EINVAL;
  3278. goto fail_cmd;
  3279. } else if (atomic_read(&this_adm.matrix_map_stat) > 0) {
  3280. pr_err("%s: DSP returned error[%s]\n", __func__,
  3281. adsp_err_get_err_str(atomic_read(
  3282. &this_adm.matrix_map_stat)));
  3283. ret = adsp_err_get_lnx_err_code(
  3284. atomic_read(&this_adm.matrix_map_stat));
  3285. goto fail_cmd;
  3286. }
  3287. if ((perf_mode != ULTRA_LOW_LATENCY_PCM_MODE) &&
  3288. (path != ADM_PATH_COMPRESSED_RX)) {
  3289. for (i = 0; i < payload_map.num_copps; i++) {
  3290. port_idx = afe_get_port_index(payload_map.port_id[i]);
  3291. copp_idx = payload_map.copp_idx[i];
  3292. if (port_idx < 0 || copp_idx < 0 ||
  3293. (copp_idx > MAX_COPPS_PER_PORT - 1)) {
  3294. pr_err("%s: Invalid idx port_idx %d copp_idx %d\n",
  3295. __func__, port_idx, copp_idx);
  3296. continue;
  3297. }
  3298. rtac_add_adm_device(payload_map.port_id[i],
  3299. atomic_read(&this_adm.copp.id
  3300. [port_idx][copp_idx]),
  3301. get_cal_path(path),
  3302. payload_map.session_id,
  3303. payload_map.app_type[i],
  3304. payload_map.acdb_dev_id[i]);
  3305. if (!test_bit(ADM_STATUS_CALIBRATION_REQUIRED,
  3306. (void *)&this_adm.copp.adm_status[port_idx]
  3307. [copp_idx])) {
  3308. pr_debug("%s: adm copp[0x%x][%d] already sent",
  3309. __func__, port_idx, copp_idx);
  3310. continue;
  3311. }
  3312. send_adm_cal(payload_map.port_id[i], copp_idx,
  3313. get_cal_path(path), perf_mode,
  3314. payload_map.app_type[i],
  3315. payload_map.acdb_dev_id[i],
  3316. payload_map.sample_rate[i],
  3317. passthr_mode);
  3318. /* ADM COPP calibration is already sent */
  3319. clear_bit(ADM_STATUS_CALIBRATION_REQUIRED,
  3320. (void *)&this_adm.copp.
  3321. adm_status[port_idx][copp_idx]);
  3322. pr_debug("%s: copp_id: %d\n", __func__,
  3323. atomic_read(&this_adm.copp.id[port_idx]
  3324. [copp_idx]));
  3325. }
  3326. }
  3327. fail_cmd:
  3328. kfree(matrix_map);
  3329. return ret;
  3330. }
  3331. EXPORT_SYMBOL(adm_matrix_map);
  3332. /**
  3333. * adm_ec_ref_rx_id -
  3334. * Update EC ref port ID
  3335. *
  3336. */
  3337. void adm_ec_ref_rx_id(int port_id)
  3338. {
  3339. this_adm.ec_ref_rx = port_id;
  3340. pr_debug("%s: ec_ref_rx:%d\n", __func__, this_adm.ec_ref_rx);
  3341. }
  3342. EXPORT_SYMBOL(adm_ec_ref_rx_id);
  3343. /**
  3344. * adm_num_ec_ref_rx_chans -
  3345. * Update EC ref number of channels
  3346. *
  3347. */
  3348. void adm_num_ec_ref_rx_chans(int num_chans)
  3349. {
  3350. this_adm.num_ec_ref_rx_chans = num_chans;
  3351. pr_debug("%s: num_ec_ref_rx_chans:%d\n",
  3352. __func__, this_adm.num_ec_ref_rx_chans);
  3353. }
  3354. EXPORT_SYMBOL(adm_num_ec_ref_rx_chans);
  3355. /**
  3356. * adm_num_ec_rx_ref_chans_downmixed -
  3357. * Update EC ref num of channels(downmixed) to be fed to EC algo
  3358. *
  3359. */
  3360. void adm_num_ec_ref_rx_chans_downmixed(int num_chans)
  3361. {
  3362. this_adm.num_ec_ref_rx_chans_downmixed = num_chans;
  3363. pr_debug("%s: num_ec_ref_rx_chans_downmixed:%d\n",
  3364. __func__, this_adm.num_ec_ref_rx_chans_downmixed);
  3365. }
  3366. EXPORT_SYMBOL(adm_num_ec_ref_rx_chans_downmixed);
  3367. /**
  3368. * adm_ec_ref_chmixer_weights -
  3369. * Update MFC(in ec ref) Channel Mixer Weights to be used
  3370. * for downmixing rx channels before feeding them to EC algo
  3371. * @out_channel_idx: index of output channel to which weightages are applicable
  3372. * @weights: pointer to array having input weightages
  3373. * @count: array sizeof pointer weights, max supported value is
  3374. * PCM_FORMAT_MAX_NUM_CHANNEL_V8
  3375. * Returns 0 on success or error on failure
  3376. */
  3377. int adm_ec_ref_chmixer_weights(int out_channel_idx,
  3378. uint16_t *weights, int count)
  3379. {
  3380. int i = 0;
  3381. if (weights == NULL || count <= 0 || out_channel_idx < 0 ||
  3382. count > PCM_FORMAT_MAX_NUM_CHANNEL_V8 ||
  3383. out_channel_idx >= PCM_FORMAT_MAX_NUM_CHANNEL_V8) {
  3384. pr_err("%s: invalid weightages count(%d) ch_idx(%d)",
  3385. __func__, count, out_channel_idx);
  3386. return -EINVAL;
  3387. }
  3388. for (i = 0; i < count; i++) {
  3389. this_adm.ec_ref_chmixer_weights[out_channel_idx][i] = weights[i];
  3390. pr_debug("%s: out ch idx :%d, weight[%d] = %d\n",
  3391. __func__, out_channel_idx, i, weights[i]);
  3392. }
  3393. return 0;
  3394. }
  3395. EXPORT_SYMBOL(adm_ec_ref_chmixer_weights);
  3396. /**
  3397. * adm_ec_ref_rx_bit_width -
  3398. * Update EC ref bit_width
  3399. *
  3400. */
  3401. void adm_ec_ref_rx_bit_width(int bit_width)
  3402. {
  3403. this_adm.ec_ref_rx_bit_width = bit_width;
  3404. pr_debug("%s: ec_ref_rx_bit_width:%d\n",
  3405. __func__, this_adm.ec_ref_rx_bit_width);
  3406. }
  3407. EXPORT_SYMBOL(adm_ec_ref_rx_bit_width);
  3408. /**
  3409. * adm_ec_ref_rx_sampling_rate -
  3410. * Update EC ref sample rate
  3411. *
  3412. */
  3413. void adm_ec_ref_rx_sampling_rate(int sampling_rate)
  3414. {
  3415. this_adm.ec_ref_rx_sampling_rate = sampling_rate;
  3416. pr_debug("%s: ec_ref_rx_sampling_rate:%d\n",
  3417. __func__, this_adm.ec_ref_rx_sampling_rate);
  3418. }
  3419. EXPORT_SYMBOL(adm_ec_ref_rx_sampling_rate);
  3420. /**
  3421. * adm_set_native_mode -
  3422. * Set adm channel native mode.
  3423. * If enabled matrix mixer will be
  3424. * running in native mode for channel
  3425. * configuration for this device session.
  3426. *
  3427. */
  3428. void adm_set_native_mode(int mode)
  3429. {
  3430. this_adm.native_mode = mode;
  3431. pr_debug("%s: enable native_mode :%d\n",
  3432. __func__, this_adm.native_mode);
  3433. }
  3434. EXPORT_SYMBOL(adm_set_native_mode);
  3435. /**
  3436. * adm_close -
  3437. * command to close ADM copp
  3438. *
  3439. * @port_id: Port ID number
  3440. * @perf_mode: performance mode like LL/ULL/..
  3441. * @copp_idx: copp index assigned
  3442. *
  3443. * Returns 0 on success or error on failure
  3444. */
  3445. int adm_close(int port_id, int perf_mode, int copp_idx)
  3446. {
  3447. struct apr_hdr close;
  3448. int ret = 0, port_idx;
  3449. int copp_id = RESET_COPP_ID;
  3450. pr_debug("%s: port_id=0x%x perf_mode: %d copp_idx: %d\n", __func__,
  3451. port_id, perf_mode, copp_idx);
  3452. port_id = q6audio_convert_virtual_to_portid(port_id);
  3453. port_idx = adm_validate_and_get_port_index(port_id);
  3454. if (port_idx < 0) {
  3455. pr_err("%s: Invalid port_id 0x%x\n",
  3456. __func__, port_id);
  3457. return -EINVAL;
  3458. }
  3459. if ((copp_idx < 0) || (copp_idx >= MAX_COPPS_PER_PORT)) {
  3460. pr_err("%s: Invalid copp idx: %d\n", __func__, copp_idx);
  3461. return -EINVAL;
  3462. }
  3463. port_channel_map[port_idx].set_channel_map = false;
  3464. if (this_adm.copp.adm_delay[port_idx][copp_idx] && perf_mode
  3465. == LEGACY_PCM_MODE) {
  3466. atomic_set(&this_adm.copp.adm_delay_stat[port_idx][copp_idx],
  3467. 1);
  3468. this_adm.copp.adm_delay[port_idx][copp_idx] = 0;
  3469. wake_up(&this_adm.copp.adm_delay_wait[port_idx][copp_idx]);
  3470. }
  3471. atomic_dec(&this_adm.copp.cnt[port_idx][copp_idx]);
  3472. if (!(atomic_read(&this_adm.copp.cnt[port_idx][copp_idx]))) {
  3473. copp_id = adm_get_copp_id(port_idx, copp_idx);
  3474. pr_debug("%s: Closing ADM port_idx:%d copp_idx:%d copp_id:0x%x\n",
  3475. __func__, port_idx, copp_idx, copp_id);
  3476. if ((!perf_mode) && (this_adm.outband_memmap.paddr != 0) &&
  3477. (atomic_read(&this_adm.copp.topology[port_idx][copp_idx]) ==
  3478. SRS_TRUMEDIA_TOPOLOGY_ID)) {
  3479. atomic_set(&this_adm.mem_map_index,
  3480. ADM_SRS_TRUMEDIA);
  3481. ret = adm_memory_unmap_regions();
  3482. if (ret < 0) {
  3483. pr_err("%s: adm mem unmmap err %d",
  3484. __func__, ret);
  3485. } else {
  3486. atomic_set(&this_adm.mem_map_handles
  3487. [ADM_SRS_TRUMEDIA], 0);
  3488. }
  3489. }
  3490. if ((afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_TX) &&
  3491. this_adm.sourceTrackingData.memmap.paddr) {
  3492. atomic_set(&this_adm.mem_map_index,
  3493. ADM_MEM_MAP_INDEX_SOURCE_TRACKING);
  3494. ret = adm_memory_unmap_regions();
  3495. if (ret < 0) {
  3496. pr_err("%s: adm mem unmmap err %d",
  3497. __func__, ret);
  3498. }
  3499. msm_audio_ion_free(
  3500. this_adm.sourceTrackingData.dma_buf);
  3501. this_adm.sourceTrackingData.dma_buf = NULL;
  3502. this_adm.sourceTrackingData.memmap.size = 0;
  3503. this_adm.sourceTrackingData.memmap.kvaddr = NULL;
  3504. this_adm.sourceTrackingData.memmap.paddr = 0;
  3505. this_adm.sourceTrackingData.apr_cmd_status = -1;
  3506. atomic_set(&this_adm.mem_map_handles[
  3507. ADM_MEM_MAP_INDEX_SOURCE_TRACKING], 0);
  3508. }
  3509. close.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3510. APR_HDR_LEN(APR_HDR_SIZE),
  3511. APR_PKT_VER);
  3512. close.pkt_size = sizeof(close);
  3513. close.src_svc = APR_SVC_ADM;
  3514. close.src_domain = APR_DOMAIN_APPS;
  3515. close.src_port = port_id;
  3516. close.dest_svc = APR_SVC_ADM;
  3517. close.dest_domain = APR_DOMAIN_ADSP;
  3518. close.dest_port = copp_id;
  3519. close.token = port_idx << 16 | copp_idx;
  3520. close.opcode = ADM_CMD_DEVICE_CLOSE_V5;
  3521. atomic_set(&this_adm.copp.id[port_idx][copp_idx],
  3522. RESET_COPP_ID);
  3523. atomic_set(&this_adm.copp.cnt[port_idx][copp_idx], 0);
  3524. atomic_set(&this_adm.copp.topology[port_idx][copp_idx], 0);
  3525. atomic_set(&this_adm.copp.mode[port_idx][copp_idx], 0);
  3526. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
  3527. atomic_set(&this_adm.copp.rate[port_idx][copp_idx], 0);
  3528. atomic_set(&this_adm.copp.channels[port_idx][copp_idx], 0);
  3529. atomic_set(&this_adm.copp.bit_width[port_idx][copp_idx], 0);
  3530. atomic_set(&this_adm.copp.app_type[port_idx][copp_idx], 0);
  3531. atomic_set(&this_adm.copp.session_type[port_idx][copp_idx], 0);
  3532. clear_bit(ADM_STATUS_CALIBRATION_REQUIRED,
  3533. (void *)&this_adm.copp.adm_status[port_idx][copp_idx]);
  3534. ret = apr_send_pkt(this_adm.apr, (uint32_t *)&close);
  3535. if (ret < 0) {
  3536. pr_err("%s: ADM close failed %d\n", __func__, ret);
  3537. return -EINVAL;
  3538. }
  3539. ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  3540. atomic_read(&this_adm.copp.stat
  3541. [port_idx][copp_idx]) >= 0,
  3542. msecs_to_jiffies(TIMEOUT_MS));
  3543. if (!ret) {
  3544. pr_err("%s: ADM cmd Route timedout for port 0x%x\n",
  3545. __func__, port_id);
  3546. return -EINVAL;
  3547. } else if (atomic_read(&this_adm.copp.stat
  3548. [port_idx][copp_idx]) > 0) {
  3549. pr_err("%s: DSP returned error[%s]\n",
  3550. __func__, adsp_err_get_err_str(
  3551. atomic_read(&this_adm.copp.stat
  3552. [port_idx][copp_idx])));
  3553. return adsp_err_get_lnx_err_code(
  3554. atomic_read(&this_adm.copp.stat
  3555. [port_idx][copp_idx]));
  3556. }
  3557. }
  3558. if (perf_mode != ULTRA_LOW_LATENCY_PCM_MODE) {
  3559. pr_debug("%s: remove adm device from rtac\n", __func__);
  3560. rtac_remove_adm_device(port_id, copp_id);
  3561. }
  3562. if (port_id == this_adm.ffecns_port_id)
  3563. this_adm.ffecns_port_id = -1;
  3564. return 0;
  3565. }
  3566. EXPORT_SYMBOL(adm_close);
  3567. int send_rtac_audvol_cal(void)
  3568. {
  3569. int ret = 0;
  3570. int ret2 = 0;
  3571. int i = 0;
  3572. int copp_idx, port_idx, acdb_id, app_id, path;
  3573. struct cal_block_data *cal_block = NULL;
  3574. struct audio_cal_info_audvol *audvol_cal_info = NULL;
  3575. struct rtac_adm rtac_adm_data;
  3576. mutex_lock(&this_adm.cal_data[ADM_RTAC_AUDVOL_CAL]->lock);
  3577. cal_block = cal_utils_get_only_cal_block(
  3578. this_adm.cal_data[ADM_RTAC_AUDVOL_CAL]);
  3579. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  3580. pr_err("%s: can't find cal block!\n", __func__);
  3581. goto unlock;
  3582. }
  3583. audvol_cal_info = cal_block->cal_info;
  3584. if (audvol_cal_info == NULL) {
  3585. pr_err("%s: audvol_cal_info is NULL!\n", __func__);
  3586. goto unlock;
  3587. }
  3588. get_rtac_adm_data(&rtac_adm_data);
  3589. for (; i < rtac_adm_data.num_of_dev; i++) {
  3590. acdb_id = rtac_adm_data.device[i].acdb_dev_id;
  3591. if (acdb_id == 0)
  3592. acdb_id = audvol_cal_info->acdb_id;
  3593. app_id = rtac_adm_data.device[i].app_type;
  3594. if (app_id == 0)
  3595. app_id = audvol_cal_info->app_type;
  3596. path = afe_get_port_type(rtac_adm_data.device[i].afe_port);
  3597. if ((acdb_id == audvol_cal_info->acdb_id) &&
  3598. (app_id == audvol_cal_info->app_type) &&
  3599. (path == audvol_cal_info->path)) {
  3600. if (adm_get_indexes_from_copp_id(rtac_adm_data.
  3601. device[i].copp, &copp_idx, &port_idx) != 0) {
  3602. pr_debug("%s: Copp Id %d is not active\n",
  3603. __func__,
  3604. rtac_adm_data.device[i].copp);
  3605. continue;
  3606. }
  3607. ret2 = adm_remap_and_send_cal_block(ADM_RTAC_AUDVOL_CAL,
  3608. rtac_adm_data.device[i].afe_port,
  3609. copp_idx, cal_block,
  3610. atomic_read(&this_adm.copp.
  3611. mode[port_idx][copp_idx]),
  3612. audvol_cal_info->app_type,
  3613. audvol_cal_info->acdb_id,
  3614. atomic_read(&this_adm.copp.
  3615. rate[port_idx][copp_idx]));
  3616. if (ret2 < 0) {
  3617. pr_debug("%s: remap and send failed for copp Id %d, acdb id %d, app type %d, path %d\n",
  3618. __func__, rtac_adm_data.device[i].copp,
  3619. audvol_cal_info->acdb_id,
  3620. audvol_cal_info->app_type,
  3621. audvol_cal_info->path);
  3622. ret = ret2;
  3623. }
  3624. }
  3625. }
  3626. unlock:
  3627. mutex_unlock(&this_adm.cal_data[ADM_RTAC_AUDVOL_CAL]->lock);
  3628. return ret;
  3629. }
  3630. int adm_map_rtac_block(struct rtac_cal_block_data *cal_block)
  3631. {
  3632. int result = 0;
  3633. pr_debug("%s:\n", __func__);
  3634. if (cal_block == NULL) {
  3635. pr_err("%s: cal_block is NULL!\n",
  3636. __func__);
  3637. result = -EINVAL;
  3638. goto done;
  3639. }
  3640. if (cal_block->cal_data.paddr == 0) {
  3641. pr_debug("%s: No address to map!\n",
  3642. __func__);
  3643. result = -EINVAL;
  3644. goto done;
  3645. }
  3646. if (cal_block->map_data.map_size == 0) {
  3647. pr_debug("%s: map size is 0!\n",
  3648. __func__);
  3649. result = -EINVAL;
  3650. goto done;
  3651. }
  3652. /* valid port ID needed for callback use primary I2S */
  3653. atomic_set(&this_adm.mem_map_index, ADM_RTAC_APR_CAL);
  3654. result = adm_memory_map_regions(&cal_block->cal_data.paddr, 0,
  3655. &cal_block->map_data.map_size, 1);
  3656. if (result < 0) {
  3657. pr_err("%s: RTAC mmap did not work! size = %d result %d\n",
  3658. __func__,
  3659. cal_block->map_data.map_size, result);
  3660. pr_debug("%s: RTAC mmap did not work! addr = 0x%pK, size = %d\n",
  3661. __func__,
  3662. &cal_block->cal_data.paddr,
  3663. cal_block->map_data.map_size);
  3664. goto done;
  3665. }
  3666. cal_block->map_data.map_handle = atomic_read(
  3667. &this_adm.mem_map_handles[ADM_RTAC_APR_CAL]);
  3668. done:
  3669. return result;
  3670. }
  3671. int adm_unmap_rtac_block(uint32_t *mem_map_handle)
  3672. {
  3673. int result = 0;
  3674. pr_debug("%s:\n", __func__);
  3675. if (mem_map_handle == NULL) {
  3676. pr_debug("%s: Map handle is NULL, nothing to unmap\n",
  3677. __func__);
  3678. goto done;
  3679. }
  3680. if (*mem_map_handle == 0) {
  3681. pr_debug("%s: Map handle is 0, nothing to unmap\n",
  3682. __func__);
  3683. goto done;
  3684. }
  3685. if (*mem_map_handle != atomic_read(
  3686. &this_adm.mem_map_handles[ADM_RTAC_APR_CAL])) {
  3687. pr_err("%s: Map handles do not match! Unmapping RTAC, RTAC map 0x%x, ADM map 0x%x\n",
  3688. __func__, *mem_map_handle, atomic_read(
  3689. &this_adm.mem_map_handles[ADM_RTAC_APR_CAL]));
  3690. /* if mismatch use handle passed in to unmap */
  3691. atomic_set(&this_adm.mem_map_handles[ADM_RTAC_APR_CAL],
  3692. *mem_map_handle);
  3693. }
  3694. /* valid port ID needed for callback use primary I2S */
  3695. atomic_set(&this_adm.mem_map_index, ADM_RTAC_APR_CAL);
  3696. result = adm_memory_unmap_regions();
  3697. if (result < 0) {
  3698. pr_debug("%s: adm_memory_unmap_regions failed, error %d\n",
  3699. __func__, result);
  3700. } else {
  3701. atomic_set(&this_adm.mem_map_handles[ADM_RTAC_APR_CAL], 0);
  3702. *mem_map_handle = 0;
  3703. }
  3704. done:
  3705. return result;
  3706. }
  3707. static int get_cal_type_index(int32_t cal_type)
  3708. {
  3709. int ret = -EINVAL;
  3710. switch (cal_type) {
  3711. case ADM_AUDPROC_CAL_TYPE:
  3712. ret = ADM_AUDPROC_CAL;
  3713. break;
  3714. case ADM_LSM_AUDPROC_CAL_TYPE:
  3715. ret = ADM_LSM_AUDPROC_CAL;
  3716. break;
  3717. case ADM_AUDVOL_CAL_TYPE:
  3718. ret = ADM_AUDVOL_CAL;
  3719. break;
  3720. case ADM_CUST_TOPOLOGY_CAL_TYPE:
  3721. ret = ADM_CUSTOM_TOP_CAL;
  3722. break;
  3723. case ADM_RTAC_INFO_CAL_TYPE:
  3724. ret = ADM_RTAC_INFO_CAL;
  3725. break;
  3726. case ADM_RTAC_APR_CAL_TYPE:
  3727. ret = ADM_RTAC_APR_CAL;
  3728. break;
  3729. case ADM_RTAC_AUDVOL_CAL_TYPE:
  3730. ret = ADM_RTAC_AUDVOL_CAL;
  3731. break;
  3732. case ADM_LSM_AUDPROC_PERSISTENT_CAL_TYPE:
  3733. ret = ADM_LSM_AUDPROC_PERSISTENT_CAL;
  3734. break;
  3735. default:
  3736. pr_err("%s: invalid cal type %d!\n", __func__, cal_type);
  3737. }
  3738. return ret;
  3739. }
  3740. static int adm_alloc_cal(int32_t cal_type, size_t data_size, void *data)
  3741. {
  3742. int ret = 0;
  3743. int cal_index;
  3744. pr_debug("%s:\n", __func__);
  3745. cal_index = get_cal_type_index(cal_type);
  3746. if (cal_index < 0) {
  3747. pr_err("%s: could not get cal index %d!\n",
  3748. __func__, cal_index);
  3749. ret = -EINVAL;
  3750. goto done;
  3751. }
  3752. ret = cal_utils_alloc_cal(data_size, data,
  3753. this_adm.cal_data[cal_index], 0, NULL);
  3754. if (ret < 0) {
  3755. pr_err("%s: cal_utils_alloc_block failed, ret = %d, cal type = %d!\n",
  3756. __func__, ret, cal_type);
  3757. ret = -EINVAL;
  3758. goto done;
  3759. }
  3760. done:
  3761. return ret;
  3762. }
  3763. static int adm_dealloc_cal(int32_t cal_type, size_t data_size, void *data)
  3764. {
  3765. int ret = 0;
  3766. int cal_index;
  3767. pr_debug("%s:\n", __func__);
  3768. cal_index = get_cal_type_index(cal_type);
  3769. if (cal_index < 0) {
  3770. pr_err("%s: could not get cal index %d!\n",
  3771. __func__, cal_index);
  3772. ret = -EINVAL;
  3773. goto done;
  3774. }
  3775. ret = cal_utils_dealloc_cal(data_size, data,
  3776. this_adm.cal_data[cal_index]);
  3777. if (ret < 0) {
  3778. pr_err("%s: cal_utils_dealloc_block failed, ret = %d, cal type = %d!\n",
  3779. __func__, ret, cal_type);
  3780. ret = -EINVAL;
  3781. goto done;
  3782. }
  3783. done:
  3784. return ret;
  3785. }
  3786. static int adm_set_cal(int32_t cal_type, size_t data_size, void *data)
  3787. {
  3788. int ret = 0;
  3789. int cal_index;
  3790. pr_debug("%s:\n", __func__);
  3791. cal_index = get_cal_type_index(cal_type);
  3792. if (cal_index < 0) {
  3793. pr_err("%s: could not get cal index %d!\n",
  3794. __func__, cal_index);
  3795. ret = -EINVAL;
  3796. goto done;
  3797. }
  3798. ret = cal_utils_set_cal(data_size, data,
  3799. this_adm.cal_data[cal_index], 0, NULL);
  3800. if (ret < 0) {
  3801. pr_err("%s: cal_utils_set_cal failed, ret = %d, cal type = %d!\n",
  3802. __func__, ret, cal_type);
  3803. ret = -EINVAL;
  3804. goto done;
  3805. }
  3806. if (cal_index == ADM_CUSTOM_TOP_CAL) {
  3807. mutex_lock(&this_adm.cal_data[ADM_CUSTOM_TOP_CAL]->lock);
  3808. this_adm.set_custom_topology = 1;
  3809. mutex_unlock(&this_adm.cal_data[ADM_CUSTOM_TOP_CAL]->lock);
  3810. } else if (cal_index == ADM_RTAC_AUDVOL_CAL) {
  3811. send_rtac_audvol_cal();
  3812. }
  3813. done:
  3814. return ret;
  3815. }
  3816. static int adm_map_cal_data(int32_t cal_type,
  3817. struct cal_block_data *cal_block)
  3818. {
  3819. int ret = 0;
  3820. int cal_index;
  3821. pr_debug("%s:\n", __func__);
  3822. cal_index = get_cal_type_index(cal_type);
  3823. if (cal_index < 0) {
  3824. pr_err("%s: could not get cal index %d!\n",
  3825. __func__, cal_index);
  3826. ret = -EINVAL;
  3827. goto done;
  3828. }
  3829. atomic_set(&this_adm.mem_map_index, cal_index);
  3830. ret = adm_memory_map_regions(&cal_block->cal_data.paddr, 0,
  3831. (uint32_t *)&cal_block->map_data.map_size, 1);
  3832. if (ret < 0) {
  3833. pr_err("%s: map did not work! cal_type %i ret %d\n",
  3834. __func__, cal_index, ret);
  3835. ret = -ENODEV;
  3836. goto done;
  3837. }
  3838. cal_block->map_data.q6map_handle = atomic_read(&this_adm.
  3839. mem_map_handles[cal_index]);
  3840. done:
  3841. return ret;
  3842. }
  3843. static int adm_unmap_cal_data(int32_t cal_type,
  3844. struct cal_block_data *cal_block)
  3845. {
  3846. int ret = 0;
  3847. int cal_index;
  3848. pr_debug("%s:\n", __func__);
  3849. cal_index = get_cal_type_index(cal_type);
  3850. if (cal_index < 0) {
  3851. pr_err("%s: could not get cal index %d!\n",
  3852. __func__, cal_index);
  3853. ret = -EINVAL;
  3854. goto done;
  3855. }
  3856. if (cal_block == NULL) {
  3857. pr_err("%s: Cal block is NULL!\n",
  3858. __func__);
  3859. goto done;
  3860. }
  3861. if (cal_block->map_data.q6map_handle == 0) {
  3862. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  3863. __func__);
  3864. goto done;
  3865. }
  3866. atomic_set(&this_adm.mem_map_handles[cal_index],
  3867. cal_block->map_data.q6map_handle);
  3868. atomic_set(&this_adm.mem_map_index, cal_index);
  3869. ret = adm_memory_unmap_regions();
  3870. if (ret < 0) {
  3871. pr_err("%s: unmap did not work! cal_type %i ret %d\n",
  3872. __func__, cal_index, ret);
  3873. ret = -ENODEV;
  3874. goto done;
  3875. }
  3876. cal_block->map_data.q6map_handle = 0;
  3877. done:
  3878. return ret;
  3879. }
  3880. static void adm_delete_cal_data(void)
  3881. {
  3882. pr_debug("%s:\n", __func__);
  3883. cal_utils_destroy_cal_types(ADM_MAX_CAL_TYPES, this_adm.cal_data);
  3884. }
  3885. static int adm_init_cal_data(void)
  3886. {
  3887. int ret = 0;
  3888. struct cal_type_info cal_type_info[] = {
  3889. {{ADM_CUST_TOPOLOGY_CAL_TYPE,
  3890. {adm_alloc_cal, adm_dealloc_cal, NULL,
  3891. adm_set_cal, NULL, NULL} },
  3892. {adm_map_cal_data, adm_unmap_cal_data,
  3893. cal_utils_match_buf_num} },
  3894. {{ADM_AUDPROC_CAL_TYPE,
  3895. {adm_alloc_cal, adm_dealloc_cal, NULL,
  3896. adm_set_cal, NULL, NULL} },
  3897. {adm_map_cal_data, adm_unmap_cal_data,
  3898. cal_utils_match_buf_num} },
  3899. {{ADM_LSM_AUDPROC_CAL_TYPE,
  3900. {adm_alloc_cal, adm_dealloc_cal, NULL,
  3901. adm_set_cal, NULL, NULL} },
  3902. {adm_map_cal_data, adm_unmap_cal_data,
  3903. cal_utils_match_buf_num} },
  3904. {{ADM_AUDVOL_CAL_TYPE,
  3905. {adm_alloc_cal, adm_dealloc_cal, NULL,
  3906. adm_set_cal, NULL, NULL} },
  3907. {adm_map_cal_data, adm_unmap_cal_data,
  3908. cal_utils_match_buf_num} },
  3909. {{ADM_RTAC_INFO_CAL_TYPE,
  3910. {NULL, NULL, NULL, NULL, NULL, NULL} },
  3911. {NULL, NULL, cal_utils_match_buf_num} },
  3912. {{ADM_RTAC_APR_CAL_TYPE,
  3913. {NULL, NULL, NULL, NULL, NULL, NULL} },
  3914. {NULL, NULL, cal_utils_match_buf_num} },
  3915. {{SRS_TRUMEDIA_CAL_TYPE,
  3916. {NULL, NULL, NULL, NULL, NULL, NULL} },
  3917. {NULL, NULL, cal_utils_match_buf_num} },
  3918. {{ADM_RTAC_AUDVOL_CAL_TYPE,
  3919. {adm_alloc_cal, adm_dealloc_cal, NULL,
  3920. adm_set_cal, NULL, NULL} },
  3921. {adm_map_cal_data, adm_unmap_cal_data,
  3922. cal_utils_match_buf_num} },
  3923. {{ADM_LSM_AUDPROC_PERSISTENT_CAL_TYPE,
  3924. {adm_alloc_cal, adm_dealloc_cal, NULL,
  3925. adm_set_cal, NULL, NULL} },
  3926. {adm_map_cal_data, adm_unmap_cal_data,
  3927. cal_utils_match_buf_num} },
  3928. };
  3929. pr_debug("%s:\n", __func__);
  3930. ret = cal_utils_create_cal_types(ADM_MAX_CAL_TYPES, this_adm.cal_data,
  3931. cal_type_info);
  3932. if (ret < 0) {
  3933. pr_err("%s: could not create cal type! ret %d\n",
  3934. __func__, ret);
  3935. ret = -EINVAL;
  3936. goto err;
  3937. }
  3938. return ret;
  3939. err:
  3940. adm_delete_cal_data();
  3941. return ret;
  3942. }
  3943. /**
  3944. * adm_set_volume -
  3945. * command to set volume on ADM copp
  3946. *
  3947. * @port_id: Port ID number
  3948. * @copp_idx: copp index assigned
  3949. * @volume: gain value to set
  3950. *
  3951. * Returns 0 on success or error on failure
  3952. */
  3953. int adm_set_volume(int port_id, int copp_idx, int volume)
  3954. {
  3955. struct audproc_volume_ctrl_master_gain audproc_vol;
  3956. struct param_hdr_v3 param_hdr;
  3957. int rc = 0;
  3958. pr_debug("%s: port_id %d, volume %d\n", __func__, port_id, volume);
  3959. memset(&audproc_vol, 0, sizeof(audproc_vol));
  3960. memset(&param_hdr, 0, sizeof(param_hdr));
  3961. param_hdr.module_id = AUDPROC_MODULE_ID_VOL_CTRL;
  3962. param_hdr.instance_id = INSTANCE_ID_0;
  3963. param_hdr.param_id = AUDPROC_PARAM_ID_VOL_CTRL_MASTER_GAIN;
  3964. param_hdr.param_size = sizeof(audproc_vol);
  3965. audproc_vol.master_gain = volume;
  3966. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  3967. (uint8_t *) &audproc_vol);
  3968. if (rc)
  3969. pr_err("%s: Failed to set volume, err %d\n", __func__, rc);
  3970. return rc;
  3971. }
  3972. EXPORT_SYMBOL(adm_set_volume);
  3973. /**
  3974. * adm_set_softvolume -
  3975. * command to set softvolume
  3976. *
  3977. * @port_id: Port ID number
  3978. * @copp_idx: copp index assigned
  3979. * @softvol_param: Params to set for softvolume
  3980. *
  3981. * Returns 0 on success or error on failure
  3982. */
  3983. int adm_set_softvolume(int port_id, int copp_idx,
  3984. struct audproc_softvolume_params *softvol_param)
  3985. {
  3986. struct audproc_soft_step_volume_params audproc_softvol;
  3987. struct param_hdr_v3 param_hdr;
  3988. int rc = 0;
  3989. pr_debug("%s: period %d step %d curve %d\n", __func__,
  3990. softvol_param->period, softvol_param->step,
  3991. softvol_param->rampingcurve);
  3992. memset(&audproc_softvol, 0, sizeof(audproc_softvol));
  3993. memset(&param_hdr, 0, sizeof(param_hdr));
  3994. param_hdr.module_id = AUDPROC_MODULE_ID_VOL_CTRL;
  3995. param_hdr.instance_id = INSTANCE_ID_0;
  3996. param_hdr.param_id = AUDPROC_PARAM_ID_SOFT_VOL_STEPPING_PARAMETERS;
  3997. param_hdr.param_size = sizeof(audproc_softvol);
  3998. audproc_softvol.period = softvol_param->period;
  3999. audproc_softvol.step = softvol_param->step;
  4000. audproc_softvol.ramping_curve = softvol_param->rampingcurve;
  4001. pr_debug("%s: period %d, step %d, curve %d\n", __func__,
  4002. audproc_softvol.period, audproc_softvol.step,
  4003. audproc_softvol.ramping_curve);
  4004. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4005. (uint8_t *) &audproc_softvol);
  4006. if (rc)
  4007. pr_err("%s: Failed to set soft volume, err %d\n", __func__, rc);
  4008. return rc;
  4009. }
  4010. EXPORT_SYMBOL(adm_set_softvolume);
  4011. /**
  4012. * adm_set_mic_gain -
  4013. * command to set MIC gain
  4014. *
  4015. * @port_id: Port ID number
  4016. * @copp_idx: copp index assigned
  4017. * @volume: gain value to set
  4018. *
  4019. * Returns 0 on success or error on failure
  4020. */
  4021. int adm_set_mic_gain(int port_id, int copp_idx, int volume)
  4022. {
  4023. struct admx_mic_gain mic_gain_params;
  4024. struct param_hdr_v3 param_hdr;
  4025. int rc = 0;
  4026. pr_debug("%s: Setting mic gain to %d at port_id 0x%x\n", __func__,
  4027. volume, port_id);
  4028. memset(&mic_gain_params, 0, sizeof(mic_gain_params));
  4029. memset(&param_hdr, 0, sizeof(param_hdr));
  4030. param_hdr.module_id = ADM_MODULE_IDX_MIC_GAIN_CTRL;
  4031. param_hdr.instance_id = INSTANCE_ID_0;
  4032. param_hdr.param_id = ADM_PARAM_IDX_MIC_GAIN;
  4033. param_hdr.param_size = sizeof(mic_gain_params);
  4034. mic_gain_params.tx_mic_gain = volume;
  4035. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4036. (uint8_t *) &mic_gain_params);
  4037. if (rc)
  4038. pr_err("%s: Failed to set mic gain, err %d\n", __func__, rc);
  4039. return rc;
  4040. }
  4041. EXPORT_SYMBOL(adm_set_mic_gain);
  4042. /**
  4043. * adm_send_set_multichannel_ec_primary_mic_ch -
  4044. * command to set multi-ch EC primary mic
  4045. *
  4046. * @port_id: Port ID number
  4047. * @copp_idx: copp index assigned
  4048. * @primary_mic_ch: channel number of primary mic
  4049. *
  4050. * Returns 0 on success or error on failure
  4051. */
  4052. int adm_send_set_multichannel_ec_primary_mic_ch(int port_id, int copp_idx,
  4053. int primary_mic_ch)
  4054. {
  4055. struct admx_sec_primary_mic_ch sec_primary_ch_params;
  4056. struct param_hdr_v3 param_hdr;
  4057. int rc = 0;
  4058. pr_debug("%s port_id 0x%x, copp_idx 0x%x, primary_mic_ch %d\n",
  4059. __func__, port_id, copp_idx, primary_mic_ch);
  4060. memset(&sec_primary_ch_params, 0, sizeof(sec_primary_ch_params));
  4061. memset(&param_hdr, 0, sizeof(param_hdr));
  4062. param_hdr.module_id = AUDPROC_MODULE_ID_VOICE_TX_SECNS;
  4063. param_hdr.instance_id = INSTANCE_ID_0;
  4064. param_hdr.param_id = AUDPROC_PARAM_IDX_SEC_PRIMARY_MIC_CH;
  4065. param_hdr.param_size = sizeof(sec_primary_ch_params);
  4066. sec_primary_ch_params.version = 0;
  4067. sec_primary_ch_params.sec_primary_mic_ch = primary_mic_ch;
  4068. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4069. (uint8_t *) &sec_primary_ch_params);
  4070. if (rc)
  4071. pr_err("%s: Failed to set primary mic chanel, err %d\n",
  4072. __func__, rc);
  4073. return rc;
  4074. }
  4075. EXPORT_SYMBOL(adm_send_set_multichannel_ec_primary_mic_ch);
  4076. /**
  4077. * adm_set_ffecns_effect -
  4078. * command to set effect for ffecns module
  4079. *
  4080. * @effect: effect payload
  4081. *
  4082. * Returns 0 on success or error on failure
  4083. */
  4084. int adm_set_ffecns_effect(int effect)
  4085. {
  4086. struct ffecns_effect ffecns_params;
  4087. struct param_hdr_v3 param_hdr;
  4088. int rc = 0;
  4089. int copp_idx = 0;
  4090. copp_idx = adm_get_default_copp_idx(this_adm.ffecns_port_id);
  4091. if ((copp_idx < 0) || (copp_idx >= MAX_COPPS_PER_PORT)) {
  4092. pr_err("%s, no active copp to query rms copp_idx:%d\n",
  4093. __func__, copp_idx);
  4094. return -EINVAL;
  4095. }
  4096. memset(&ffecns_params, 0, sizeof(ffecns_params));
  4097. memset(&param_hdr, 0, sizeof(param_hdr));
  4098. param_hdr.module_id = FFECNS_MODULE_ID;
  4099. param_hdr.instance_id = INSTANCE_ID_0;
  4100. param_hdr.param_id = FLUENCE_CMN_GLOBAL_EFFECT_PARAM_ID;
  4101. param_hdr.param_size = sizeof(ffecns_params);
  4102. ffecns_params.payload = effect;
  4103. rc = adm_pack_and_set_one_pp_param(this_adm.ffecns_port_id, copp_idx,
  4104. param_hdr, (uint8_t *) &ffecns_params);
  4105. if (rc)
  4106. pr_err("%s: Failed to set ffecns effect, err %d\n",
  4107. __func__, rc);
  4108. return rc;
  4109. }
  4110. EXPORT_SYMBOL(adm_set_ffecns_effect);
  4111. /**
  4112. * adm_set_ffecns_freeze_event -
  4113. * command to set event for ffecns module
  4114. *
  4115. * @event: send ffecns freeze event true or false
  4116. *
  4117. * Returns 0 on success or error on failure
  4118. */
  4119. int adm_set_ffecns_freeze_event(bool ffecns_freeze_event)
  4120. {
  4121. struct ffv_spf_freeze_param_t ffv_param;
  4122. struct param_hdr_v3 param_hdr;
  4123. int rc = 0;
  4124. int copp_idx = 0;
  4125. memset(&param_hdr, 0, sizeof(param_hdr));
  4126. memset(&ffv_param, 0, sizeof(ffv_param));
  4127. ffv_param.freeze = ffecns_freeze_event ? 1 : 0;
  4128. ffv_param.source_id = 0; /*default value*/
  4129. copp_idx = adm_get_default_copp_idx(this_adm.ffecns_port_id);
  4130. if ((copp_idx < 0) || (copp_idx >= MAX_COPPS_PER_PORT)) {
  4131. pr_err("%s, no active copp to query rms copp_idx:%d\n",
  4132. __func__, copp_idx);
  4133. return -EINVAL;
  4134. }
  4135. param_hdr.module_id = FFECNS_MODULE_ID;
  4136. param_hdr.instance_id = INSTANCE_ID_0;
  4137. param_hdr.param_id = PARAM_ID_FFV_SPF_FREEZE;
  4138. param_hdr.param_size = sizeof(ffv_param);
  4139. rc = adm_pack_and_set_one_pp_param(this_adm.ffecns_port_id, copp_idx,
  4140. param_hdr, (uint8_t *) &ffv_param);
  4141. if (rc)
  4142. pr_err("%s: Failed to set ffecns imc event, err %d\n",
  4143. __func__, rc);
  4144. return rc;
  4145. }
  4146. EXPORT_SYMBOL(adm_set_ffecns_freeze_event);
  4147. /**
  4148. * adm_param_enable -
  4149. * command to send params to ADM for given module
  4150. *
  4151. * @port_id: Port ID number
  4152. * @copp_idx: copp index assigned
  4153. * @module_id: ADM module
  4154. * @enable: flag to enable or disable module
  4155. *
  4156. * Returns 0 on success or error on failure
  4157. */
  4158. int adm_param_enable(int port_id, int copp_idx, int module_id, int enable)
  4159. {
  4160. struct module_instance_info mod_inst_info;
  4161. memset(&mod_inst_info, 0, sizeof(mod_inst_info));
  4162. mod_inst_info.module_id = module_id;
  4163. mod_inst_info.instance_id = INSTANCE_ID_0;
  4164. return adm_param_enable_v2(port_id, copp_idx, mod_inst_info, enable);
  4165. }
  4166. EXPORT_SYMBOL(adm_param_enable);
  4167. /**
  4168. * adm_param_enable_v2 -
  4169. * command to send params to ADM for given module
  4170. *
  4171. * @port_id: Port ID number
  4172. * @copp_idx: copp index assigned
  4173. * @mod_inst_info: module and instance ID info
  4174. * @enable: flag to enable or disable module
  4175. *
  4176. * Returns 0 on success or error on failure
  4177. */
  4178. int adm_param_enable_v2(int port_id, int copp_idx,
  4179. struct module_instance_info mod_inst_info, int enable)
  4180. {
  4181. uint32_t enable_param;
  4182. struct param_hdr_v3 param_hdr;
  4183. int rc = 0;
  4184. if (enable < 0 || enable > 1) {
  4185. pr_err("%s: Invalid value for enable %d\n", __func__, enable);
  4186. return -EINVAL;
  4187. }
  4188. pr_debug("%s port_id %d, module_id 0x%x, instance_id 0x%x, enable %d\n",
  4189. __func__, port_id, mod_inst_info.module_id,
  4190. mod_inst_info.instance_id, enable);
  4191. memset(&param_hdr, 0, sizeof(param_hdr));
  4192. param_hdr.module_id = mod_inst_info.module_id;
  4193. param_hdr.instance_id = mod_inst_info.instance_id;
  4194. param_hdr.param_id = AUDPROC_PARAM_ID_ENABLE;
  4195. param_hdr.param_size = sizeof(enable_param);
  4196. enable_param = enable;
  4197. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4198. (uint8_t *) &enable_param);
  4199. if (rc)
  4200. pr_err("%s: Failed to set enable of module(%d) instance(%d) to %d, err %d\n",
  4201. __func__, mod_inst_info.module_id,
  4202. mod_inst_info.instance_id, enable, rc);
  4203. return rc;
  4204. }
  4205. EXPORT_SYMBOL(adm_param_enable_v2);
  4206. /**
  4207. * adm_send_calibration -
  4208. * send ADM calibration to DSP
  4209. *
  4210. * @port_id: Port ID number
  4211. * @copp_idx: copp index assigned
  4212. * @path: direction or ADM path type
  4213. * @perf_mode: performance mode like LL/ULL/..
  4214. * @cal_type: calibration type to use
  4215. * @params: pointer with cal data
  4216. * @size: cal size
  4217. *
  4218. * Returns 0 on success or error on failure
  4219. */
  4220. int adm_send_calibration(int port_id, int copp_idx, int path, int perf_mode,
  4221. int cal_type, char *params, int size)
  4222. {
  4223. int rc = 0;
  4224. pr_debug("%s:port_id %d, path %d, perf_mode %d, cal_type %d, size %d\n",
  4225. __func__, port_id, path, perf_mode, cal_type, size);
  4226. /* Maps audio_dev_ctrl path definition to ACDB definition */
  4227. if (get_cal_path(path) != RX_DEVICE) {
  4228. pr_err("%s: acdb_path %d\n", __func__, path);
  4229. rc = -EINVAL;
  4230. goto end;
  4231. }
  4232. rc = adm_set_pp_params(port_id, copp_idx, NULL, (u8 *) params, size);
  4233. end:
  4234. return rc;
  4235. }
  4236. EXPORT_SYMBOL(adm_send_calibration);
  4237. /*
  4238. * adm_update_wait_parameters must be called with routing driver locks.
  4239. * adm_reset_wait_parameters must be called with routing driver locks.
  4240. * set and reset parmeters are separated to make sure it is always called
  4241. * under routing driver lock.
  4242. * adm_wait_timeout is to block until timeout or interrupted. Timeout is
  4243. * not a an error.
  4244. */
  4245. int adm_set_wait_parameters(int port_id, int copp_idx)
  4246. {
  4247. int ret = 0, port_idx;
  4248. pr_debug("%s: port_id 0x%x, copp_idx %d\n", __func__, port_id,
  4249. copp_idx);
  4250. port_id = afe_convert_virtual_to_portid(port_id);
  4251. port_idx = adm_validate_and_get_port_index(port_id);
  4252. if (port_idx < 0) {
  4253. pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
  4254. ret = -EINVAL;
  4255. goto end;
  4256. }
  4257. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  4258. pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
  4259. return -EINVAL;
  4260. }
  4261. this_adm.copp.adm_delay[port_idx][copp_idx] = 1;
  4262. atomic_set(&this_adm.copp.adm_delay_stat[port_idx][copp_idx], 0);
  4263. end:
  4264. return ret;
  4265. }
  4266. EXPORT_SYMBOL(adm_set_wait_parameters);
  4267. /**
  4268. * adm_reset_wait_parameters -
  4269. * reset wait parameters or ADM delay value
  4270. *
  4271. * @port_id: Port ID number
  4272. * @copp_idx: copp index assigned
  4273. *
  4274. * Returns 0 on success or error on failure
  4275. */
  4276. int adm_reset_wait_parameters(int port_id, int copp_idx)
  4277. {
  4278. int ret = 0, port_idx;
  4279. pr_debug("%s: port_id 0x%x copp_idx %d\n", __func__, port_id,
  4280. copp_idx);
  4281. port_id = afe_convert_virtual_to_portid(port_id);
  4282. port_idx = adm_validate_and_get_port_index(port_id);
  4283. if (port_idx < 0) {
  4284. pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
  4285. ret = -EINVAL;
  4286. goto end;
  4287. }
  4288. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  4289. pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
  4290. return -EINVAL;
  4291. }
  4292. atomic_set(&this_adm.copp.adm_delay_stat[port_idx][copp_idx], 1);
  4293. this_adm.copp.adm_delay[port_idx][copp_idx] = 0;
  4294. end:
  4295. return ret;
  4296. }
  4297. EXPORT_SYMBOL(adm_reset_wait_parameters);
  4298. /**
  4299. * adm_wait_timeout -
  4300. * ADM wait command after command send to DSP
  4301. *
  4302. * @port_id: Port ID number
  4303. * @copp_idx: copp index assigned
  4304. * @wait_time: value in ms for command timeout
  4305. *
  4306. * Returns 0 on success or error on failure
  4307. */
  4308. int adm_wait_timeout(int port_id, int copp_idx, int wait_time)
  4309. {
  4310. int ret = 0, port_idx;
  4311. pr_debug("%s: port_id 0x%x, copp_idx %d, wait_time %d\n", __func__,
  4312. port_id, copp_idx, wait_time);
  4313. port_id = afe_convert_virtual_to_portid(port_id);
  4314. port_idx = adm_validate_and_get_port_index(port_id);
  4315. if (port_idx < 0) {
  4316. pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
  4317. ret = -EINVAL;
  4318. goto end;
  4319. }
  4320. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  4321. pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
  4322. return -EINVAL;
  4323. }
  4324. ret = wait_event_timeout(
  4325. this_adm.copp.adm_delay_wait[port_idx][copp_idx],
  4326. atomic_read(&this_adm.copp.adm_delay_stat[port_idx][copp_idx]),
  4327. msecs_to_jiffies(wait_time));
  4328. pr_debug("%s: return %d\n", __func__, ret);
  4329. if (ret != 0)
  4330. ret = -EINTR;
  4331. end:
  4332. pr_debug("%s: return %d--\n", __func__, ret);
  4333. return ret;
  4334. }
  4335. EXPORT_SYMBOL(adm_wait_timeout);
  4336. /**
  4337. * adm_store_cal_data -
  4338. * Retrieve calibration data for ADM copp device
  4339. *
  4340. * @port_id: Port ID number
  4341. * @copp_idx: copp index assigned
  4342. * @path: direction or copp type
  4343. * @perf_mode: performance mode like LL/ULL/..
  4344. * @cal_index: calibration index to use
  4345. * @params: pointer to store cal data
  4346. * @size: pointer to fill with cal size
  4347. *
  4348. * Returns 0 on success or error on failure
  4349. */
  4350. int adm_store_cal_data(int port_id, int copp_idx, int path, int perf_mode,
  4351. int cal_index, char *params, int *size)
  4352. {
  4353. int rc = 0;
  4354. struct cal_block_data *cal_block = NULL;
  4355. int app_type, acdb_id, port_idx, sample_rate;
  4356. if (this_adm.cal_data[cal_index] == NULL) {
  4357. pr_debug("%s: cal_index %d not allocated!\n",
  4358. __func__, cal_index);
  4359. goto end;
  4360. }
  4361. if (get_cal_path(path) != RX_DEVICE) {
  4362. pr_debug("%s: Invalid path to store calibration %d\n",
  4363. __func__, path);
  4364. rc = -EINVAL;
  4365. goto end;
  4366. }
  4367. port_id = afe_convert_virtual_to_portid(port_id);
  4368. port_idx = adm_validate_and_get_port_index(port_id);
  4369. if (port_idx < 0) {
  4370. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  4371. rc = -EINVAL;
  4372. goto end;
  4373. }
  4374. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  4375. pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
  4376. return -EINVAL;
  4377. }
  4378. acdb_id = atomic_read(&this_adm.copp.acdb_id[port_idx][copp_idx]);
  4379. app_type = atomic_read(&this_adm.copp.app_type[port_idx][copp_idx]);
  4380. sample_rate = atomic_read(&this_adm.copp.rate[port_idx][copp_idx]);
  4381. mutex_lock(&this_adm.cal_data[cal_index]->lock);
  4382. cal_block = adm_find_cal(cal_index, get_cal_path(path), app_type,
  4383. acdb_id, sample_rate);
  4384. if (cal_block == NULL)
  4385. goto unlock;
  4386. if (cal_block->cal_data.size <= 0) {
  4387. pr_debug("%s: No ADM cal send for port_id = 0x%x!\n",
  4388. __func__, port_id);
  4389. rc = -EINVAL;
  4390. goto unlock;
  4391. }
  4392. if (cal_index == ADM_AUDPROC_CAL || cal_index == ADM_LSM_AUDPROC_CAL) {
  4393. if (cal_block->cal_data.size > AUD_PROC_BLOCK_SIZE) {
  4394. pr_err("%s:audproc:invalid size exp/actual[%zd, %d]\n",
  4395. __func__, cal_block->cal_data.size, *size);
  4396. rc = -ENOMEM;
  4397. goto unlock;
  4398. }
  4399. } else if (cal_index == ADM_LSM_AUDPROC_PERSISTENT_CAL) {
  4400. if (cal_block->cal_data.size > AUD_PROC_PERSIST_BLOCK_SIZE) {
  4401. pr_err("%s:persist invalid size exp/actual[%zd, %d]\n",
  4402. __func__, cal_block->cal_data.size, *size);
  4403. rc = -ENOMEM;
  4404. goto unlock;
  4405. }
  4406. } else if (cal_index == ADM_AUDVOL_CAL) {
  4407. if (cal_block->cal_data.size > AUD_VOL_BLOCK_SIZE) {
  4408. pr_err("%s:aud_vol:invalid size exp/actual[%zd, %d]\n",
  4409. __func__, cal_block->cal_data.size, *size);
  4410. rc = -ENOMEM;
  4411. goto unlock;
  4412. }
  4413. } else {
  4414. pr_debug("%s: Not valid calibration for dolby topolgy\n",
  4415. __func__);
  4416. rc = -EINVAL;
  4417. goto unlock;
  4418. }
  4419. memcpy(params, cal_block->cal_data.kvaddr, cal_block->cal_data.size);
  4420. *size = cal_block->cal_data.size;
  4421. pr_debug("%s:port_id %d, copp_idx %d, path %d",
  4422. __func__, port_id, copp_idx, path);
  4423. pr_debug("perf_mode %d, cal_type %d, size %d\n",
  4424. perf_mode, cal_index, *size);
  4425. unlock:
  4426. mutex_unlock(&this_adm.cal_data[cal_index]->lock);
  4427. end:
  4428. return rc;
  4429. }
  4430. EXPORT_SYMBOL(adm_store_cal_data);
  4431. /**
  4432. * adm_send_compressed_device_mute -
  4433. * command to send mute for compressed device
  4434. *
  4435. * @port_id: Port ID number
  4436. * @copp_idx: copp index assigned
  4437. * @mute_on: flag to indicate mute or unmute
  4438. *
  4439. * Returns 0 on success or error on failure
  4440. */
  4441. int adm_send_compressed_device_mute(int port_id, int copp_idx, bool mute_on)
  4442. {
  4443. u32 mute_param = mute_on ? 1 : 0;
  4444. struct param_hdr_v3 param_hdr;
  4445. int ret = 0;
  4446. pr_debug("%s port_id: 0x%x, copp_idx %d, mute_on: %d\n",
  4447. __func__, port_id, copp_idx, mute_on);
  4448. memset(&param_hdr, 0, sizeof(param_hdr));
  4449. param_hdr.module_id = AUDPROC_MODULE_ID_COMPRESSED_MUTE;
  4450. param_hdr.instance_id = INSTANCE_ID_0;
  4451. param_hdr.param_id = AUDPROC_PARAM_ID_COMPRESSED_MUTE;
  4452. param_hdr.param_size = sizeof(mute_param);
  4453. ret = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4454. (uint8_t *) &mute_param);
  4455. if (ret)
  4456. pr_err("%s: Failed to set mute, err %d\n", __func__, ret);
  4457. return ret;
  4458. }
  4459. EXPORT_SYMBOL(adm_send_compressed_device_mute);
  4460. /**
  4461. * adm_send_compressed_device_latency -
  4462. * command to send latency for compressed device
  4463. *
  4464. * @port_id: Port ID number
  4465. * @copp_idx: copp index assigned
  4466. * @latency: latency value to pass
  4467. *
  4468. * Returns 0 on success or error on failure
  4469. */
  4470. int adm_send_compressed_device_latency(int port_id, int copp_idx, int latency)
  4471. {
  4472. u32 latency_param;
  4473. struct param_hdr_v3 param_hdr;
  4474. int ret = 0;
  4475. pr_debug("%s port_id: 0x%x, copp_idx %d latency: %d\n", __func__,
  4476. port_id, copp_idx, latency);
  4477. if (latency < 0) {
  4478. pr_err("%s: Invalid value for latency %d", __func__, latency);
  4479. return -EINVAL;
  4480. }
  4481. memset(&param_hdr, 0, sizeof(param_hdr));
  4482. param_hdr.module_id = AUDPROC_MODULE_ID_COMPRESSED_LATENCY;
  4483. param_hdr.instance_id = INSTANCE_ID_0;
  4484. param_hdr.param_id = AUDPROC_PARAM_ID_COMPRESSED_LATENCY;
  4485. param_hdr.param_size = sizeof(latency_param);
  4486. latency_param = latency;
  4487. ret = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4488. (uint8_t *) &latency_param);
  4489. if (ret)
  4490. pr_err("%s: Failed to set latency, err %d\n", __func__, ret);
  4491. return ret;
  4492. }
  4493. EXPORT_SYMBOL(adm_send_compressed_device_latency);
  4494. /**
  4495. * adm_swap_speaker_channels
  4496. *
  4497. * Receives port_id, copp_idx, sample rate, spk_swap and
  4498. * send MFC command to swap speaker channel.
  4499. * Return zero on success. On failure returns nonzero.
  4500. *
  4501. * port_id - Passed value, port_id for which channels swap is wanted
  4502. * copp_idx - Passed value, copp_idx for which channels swap is wanted
  4503. * sample_rate - Passed value, sample rate used by app type config
  4504. * spk_swap - Passed value, spk_swap for check if swap flag is set
  4505. */
  4506. int adm_swap_speaker_channels(int port_id, int copp_idx,
  4507. int sample_rate, bool spk_swap)
  4508. {
  4509. struct audproc_mfc_param_media_fmt mfc_cfg;
  4510. struct param_hdr_v3 param_hdr;
  4511. uint16_t num_channels;
  4512. int port_idx = 0;
  4513. int ret = 0;
  4514. pr_debug("%s: Enter, port_id %d, copp_idx %d\n",
  4515. __func__, port_id, copp_idx);
  4516. port_id = q6audio_convert_virtual_to_portid(port_id);
  4517. port_idx = adm_validate_and_get_port_index(port_id);
  4518. if (port_idx < 0 || port_idx >= AFE_MAX_PORTS) {
  4519. pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
  4520. return -EINVAL;
  4521. } else if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  4522. pr_err("%s: Invalid copp_idx 0x%x\n", __func__, copp_idx);
  4523. return -EINVAL;
  4524. }
  4525. num_channels = atomic_read(&this_adm.copp.channels[port_idx][copp_idx]);
  4526. if (num_channels != 2) {
  4527. pr_debug("%s: Invalid number of channels: %d\n",
  4528. __func__, num_channels);
  4529. return -EINVAL;
  4530. }
  4531. memset(&mfc_cfg, 0, sizeof(mfc_cfg));
  4532. memset(&param_hdr, 0, sizeof(param_hdr));
  4533. param_hdr.module_id = AUDPROC_MODULE_ID_MFC;
  4534. param_hdr.instance_id = INSTANCE_ID_0;
  4535. param_hdr.param_id = AUDPROC_PARAM_ID_MFC_OUTPUT_MEDIA_FORMAT;
  4536. param_hdr.param_size = sizeof(mfc_cfg);
  4537. mfc_cfg.sampling_rate = sample_rate;
  4538. mfc_cfg.bits_per_sample =
  4539. atomic_read(&this_adm.copp.bit_width[port_idx][copp_idx]);
  4540. mfc_cfg.num_channels = num_channels;
  4541. /* Currently applying speaker swap for only 2 channel use case */
  4542. if (spk_swap) {
  4543. mfc_cfg.channel_type[0] =
  4544. (uint16_t) PCM_CHANNEL_FR;
  4545. mfc_cfg.channel_type[1] =
  4546. (uint16_t) PCM_CHANNEL_FL;
  4547. } else {
  4548. mfc_cfg.channel_type[0] =
  4549. (uint16_t) PCM_CHANNEL_FL;
  4550. mfc_cfg.channel_type[1] =
  4551. (uint16_t) PCM_CHANNEL_FR;
  4552. }
  4553. ret = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4554. (u8 *) &mfc_cfg);
  4555. if (ret < 0) {
  4556. pr_err("%s: Failed to set swap speaker channels on port[0x%x] failed %d\n",
  4557. __func__, port_id, ret);
  4558. return ret;
  4559. }
  4560. pr_debug("%s: mfc_cfg Set params returned success", __func__);
  4561. return 0;
  4562. }
  4563. EXPORT_SYMBOL(adm_swap_speaker_channels);
  4564. /**
  4565. * adm_set_sound_focus -
  4566. * Update sound focus info
  4567. *
  4568. * @port_id: Port ID number
  4569. * @copp_idx: copp index assigned
  4570. * @soundFocusData: sound focus data to pass
  4571. *
  4572. * Returns 0 on success or error on failure
  4573. */
  4574. int adm_set_sound_focus(int port_id, int copp_idx,
  4575. struct sound_focus_param soundFocusData)
  4576. {
  4577. struct adm_param_fluence_soundfocus_t soundfocus_params;
  4578. struct param_hdr_v3 param_hdr;
  4579. int ret = 0;
  4580. int i;
  4581. pr_debug("%s: Enter, port_id %d, copp_idx %d\n",
  4582. __func__, port_id, copp_idx);
  4583. memset(&param_hdr, 0, sizeof(param_hdr));
  4584. param_hdr.module_id = VOICEPROC_MODULE_ID_FLUENCE_PRO_VC_TX;
  4585. param_hdr.instance_id = INSTANCE_ID_0;
  4586. param_hdr.param_id = VOICEPROC_PARAM_ID_FLUENCE_SOUNDFOCUS;
  4587. param_hdr.param_size = sizeof(soundfocus_params);
  4588. memset(&(soundfocus_params), 0xFF, sizeof(soundfocus_params));
  4589. for (i = 0; i < MAX_SECTORS; i++) {
  4590. soundfocus_params.start_angles[i] =
  4591. soundFocusData.start_angle[i];
  4592. soundfocus_params.enables[i] = soundFocusData.enable[i];
  4593. pr_debug("%s: start_angle[%d] = %d\n",
  4594. __func__, i, soundFocusData.start_angle[i]);
  4595. pr_debug("%s: enable[%d] = %d\n",
  4596. __func__, i, soundFocusData.enable[i]);
  4597. }
  4598. soundfocus_params.gain_step = soundFocusData.gain_step;
  4599. pr_debug("%s: gain_step = %d\n", __func__, soundFocusData.gain_step);
  4600. soundfocus_params.reserved = 0;
  4601. ret = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4602. (uint8_t *) &soundfocus_params);
  4603. if (ret)
  4604. pr_err("%s: Failed to set sound focus params, err %d\n",
  4605. __func__, ret);
  4606. pr_debug("%s: Exit, ret=%d\n", __func__, ret);
  4607. return ret;
  4608. }
  4609. EXPORT_SYMBOL(adm_set_sound_focus);
  4610. /**
  4611. * adm_get_sound_focus -
  4612. * Retrieve sound focus info
  4613. *
  4614. * @port_id: Port ID number
  4615. * @copp_idx: copp index assigned
  4616. * @soundFocusData: pointer for sound focus data to be updated with
  4617. *
  4618. * Returns 0 on success or error on failure
  4619. */
  4620. int adm_get_sound_focus(int port_id, int copp_idx,
  4621. struct sound_focus_param *soundFocusData)
  4622. {
  4623. int ret = 0, i;
  4624. char *params_value;
  4625. uint32_t max_param_size = 0;
  4626. struct adm_param_fluence_soundfocus_t *soundfocus_params = NULL;
  4627. struct param_hdr_v3 param_hdr;
  4628. pr_debug("%s: Enter, port_id %d, copp_idx %d\n",
  4629. __func__, port_id, copp_idx);
  4630. max_param_size = sizeof(struct adm_param_fluence_soundfocus_t) +
  4631. sizeof(union param_hdrs);
  4632. params_value = kzalloc(max_param_size, GFP_KERNEL);
  4633. if (!params_value)
  4634. return -ENOMEM;
  4635. memset(&param_hdr, 0, sizeof(param_hdr));
  4636. param_hdr.module_id = VOICEPROC_MODULE_ID_FLUENCE_PRO_VC_TX;
  4637. param_hdr.instance_id = INSTANCE_ID_0;
  4638. param_hdr.param_id = VOICEPROC_PARAM_ID_FLUENCE_SOUNDFOCUS;
  4639. param_hdr.param_size = max_param_size;
  4640. ret = adm_get_pp_params(port_id, copp_idx,
  4641. ADM_CLIENT_ID_SOURCE_TRACKING, NULL, &param_hdr,
  4642. params_value);
  4643. if (ret) {
  4644. pr_err("%s: get parameters failed ret:%d\n", __func__, ret);
  4645. ret = -EINVAL;
  4646. goto done;
  4647. }
  4648. if (this_adm.sourceTrackingData.apr_cmd_status != 0) {
  4649. pr_err("%s - get params returned error [%s]\n",
  4650. __func__, adsp_err_get_err_str(
  4651. this_adm.sourceTrackingData.apr_cmd_status));
  4652. ret = adsp_err_get_lnx_err_code(
  4653. this_adm.sourceTrackingData.apr_cmd_status);
  4654. goto done;
  4655. }
  4656. soundfocus_params = (struct adm_param_fluence_soundfocus_t *)
  4657. params_value;
  4658. for (i = 0; i < MAX_SECTORS; i++) {
  4659. soundFocusData->start_angle[i] =
  4660. soundfocus_params->start_angles[i];
  4661. soundFocusData->enable[i] = soundfocus_params->enables[i];
  4662. pr_debug("%s: start_angle[%d] = %d\n",
  4663. __func__, i, soundFocusData->start_angle[i]);
  4664. pr_debug("%s: enable[%d] = %d\n",
  4665. __func__, i, soundFocusData->enable[i]);
  4666. }
  4667. soundFocusData->gain_step = soundfocus_params->gain_step;
  4668. pr_debug("%s: gain_step = %d\n", __func__, soundFocusData->gain_step);
  4669. done:
  4670. pr_debug("%s: Exit, ret = %d\n", __func__, ret);
  4671. kfree(params_value);
  4672. return ret;
  4673. }
  4674. EXPORT_SYMBOL(adm_get_sound_focus);
  4675. static int adm_source_tracking_alloc_map_memory(void)
  4676. {
  4677. int ret;
  4678. pr_debug("%s: Enter\n", __func__);
  4679. ret = msm_audio_ion_alloc(&this_adm.sourceTrackingData.dma_buf,
  4680. AUD_PROC_BLOCK_SIZE,
  4681. &this_adm.sourceTrackingData.memmap.paddr,
  4682. &this_adm.sourceTrackingData.memmap.size,
  4683. &this_adm.sourceTrackingData.memmap.kvaddr);
  4684. if (ret) {
  4685. pr_err("%s: failed to allocate memory\n", __func__);
  4686. ret = -EINVAL;
  4687. goto done;
  4688. }
  4689. atomic_set(&this_adm.mem_map_index, ADM_MEM_MAP_INDEX_SOURCE_TRACKING);
  4690. ret = adm_memory_map_regions(&this_adm.sourceTrackingData.memmap.paddr,
  4691. 0,
  4692. (uint32_t *)&this_adm.sourceTrackingData.memmap.size,
  4693. 1);
  4694. if (ret < 0) {
  4695. pr_err("%s: failed to map memory, paddr = 0x%pK, size = %d\n",
  4696. __func__,
  4697. (void *)this_adm.sourceTrackingData.memmap.paddr,
  4698. (uint32_t)this_adm.sourceTrackingData.memmap.size);
  4699. msm_audio_ion_free(this_adm.sourceTrackingData.dma_buf);
  4700. this_adm.sourceTrackingData.dma_buf = NULL;
  4701. this_adm.sourceTrackingData.memmap.size = 0;
  4702. this_adm.sourceTrackingData.memmap.kvaddr = NULL;
  4703. this_adm.sourceTrackingData.memmap.paddr = 0;
  4704. this_adm.sourceTrackingData.apr_cmd_status = -1;
  4705. atomic_set(&this_adm.mem_map_handles
  4706. [ADM_MEM_MAP_INDEX_SOURCE_TRACKING], 0);
  4707. ret = -EINVAL;
  4708. goto done;
  4709. }
  4710. ret = 0;
  4711. pr_debug("%s: paddr = 0x%pK, size = %d, mem_map_handle = 0x%x\n",
  4712. __func__, (void *)this_adm.sourceTrackingData.memmap.paddr,
  4713. (uint32_t)this_adm.sourceTrackingData.memmap.size,
  4714. atomic_read(&this_adm.mem_map_handles
  4715. [ADM_MEM_MAP_INDEX_SOURCE_TRACKING]));
  4716. done:
  4717. pr_debug("%s: Exit, ret = %d\n", __func__, ret);
  4718. return ret;
  4719. }
  4720. /**
  4721. * adm_get_source_tracking -
  4722. * Retrieve source tracking info
  4723. *
  4724. * @port_id: Port ID number
  4725. * @copp_idx: copp index assigned
  4726. * @sourceTrackingData: pointer for source track data to be updated with
  4727. *
  4728. * Returns 0 on success or error on failure
  4729. */
  4730. int adm_get_source_tracking(int port_id, int copp_idx,
  4731. struct source_tracking_param *sourceTrackingData)
  4732. {
  4733. struct adm_param_fluence_sourcetracking_t *source_tracking_params =
  4734. NULL;
  4735. struct mem_mapping_hdr mem_hdr;
  4736. struct param_hdr_v3 param_hdr;
  4737. int i = 0;
  4738. int ret = 0;
  4739. pr_debug("%s: Enter, port_id %d, copp_idx %d\n",
  4740. __func__, port_id, copp_idx);
  4741. if (!this_adm.sourceTrackingData.memmap.paddr) {
  4742. /* Allocate and map shared memory for out of band usage */
  4743. ret = adm_source_tracking_alloc_map_memory();
  4744. if (ret != 0) {
  4745. ret = -EINVAL;
  4746. goto done;
  4747. }
  4748. }
  4749. memset(&mem_hdr, 0, sizeof(mem_hdr));
  4750. memset(&param_hdr, 0, sizeof(param_hdr));
  4751. mem_hdr.data_payload_addr_lsw =
  4752. lower_32_bits(this_adm.sourceTrackingData.memmap.paddr);
  4753. mem_hdr.data_payload_addr_msw = msm_audio_populate_upper_32_bits(
  4754. this_adm.sourceTrackingData.memmap.paddr);
  4755. mem_hdr.mem_map_handle = atomic_read(
  4756. &this_adm.mem_map_handles[ADM_MEM_MAP_INDEX_SOURCE_TRACKING]);
  4757. param_hdr.module_id = VOICEPROC_MODULE_ID_FLUENCE_PRO_VC_TX;
  4758. param_hdr.instance_id = INSTANCE_ID_0;
  4759. param_hdr.param_id = VOICEPROC_PARAM_ID_FLUENCE_SOURCETRACKING;
  4760. /*
  4761. * This size should be the max size of the calibration data + header.
  4762. * Use the union size to ensure max size is used.
  4763. */
  4764. param_hdr.param_size =
  4765. sizeof(struct adm_param_fluence_sourcetracking_t) +
  4766. sizeof(union param_hdrs);
  4767. /*
  4768. * Retrieving parameters out of band, so no need to provide a buffer for
  4769. * the returned parameter data as it will be at the memory location
  4770. * provided.
  4771. */
  4772. ret = adm_get_pp_params(port_id, copp_idx,
  4773. ADM_CLIENT_ID_SOURCE_TRACKING, &mem_hdr,
  4774. &param_hdr, NULL);
  4775. if (ret) {
  4776. pr_err("%s: Failed to get params, error %d\n", __func__, ret);
  4777. goto done;
  4778. }
  4779. if (this_adm.sourceTrackingData.apr_cmd_status != 0) {
  4780. pr_err("%s - get params returned error [%s]\n",
  4781. __func__, adsp_err_get_err_str(
  4782. this_adm.sourceTrackingData.apr_cmd_status));
  4783. ret = adsp_err_get_lnx_err_code(
  4784. this_adm.sourceTrackingData.apr_cmd_status);
  4785. goto done;
  4786. }
  4787. /* How do we know what the param data was retrieved with for hdr size */
  4788. source_tracking_params =
  4789. (struct adm_param_fluence_sourcetracking_t
  4790. *) (this_adm.sourceTrackingData.memmap.kvaddr +
  4791. sizeof(struct param_hdr_v1));
  4792. for (i = 0; i < MAX_SECTORS; i++) {
  4793. sourceTrackingData->vad[i] = source_tracking_params->vad[i];
  4794. pr_debug("%s: vad[%d] = %d\n",
  4795. __func__, i, sourceTrackingData->vad[i]);
  4796. }
  4797. sourceTrackingData->doa_speech = source_tracking_params->doa_speech;
  4798. pr_debug("%s: doa_speech = %d\n",
  4799. __func__, sourceTrackingData->doa_speech);
  4800. for (i = 0; i < MAX_NOISE_SOURCE_INDICATORS; i++) {
  4801. sourceTrackingData->doa_noise[i] =
  4802. source_tracking_params->doa_noise[i];
  4803. pr_debug("%s: doa_noise[%d] = %d\n",
  4804. __func__, i, sourceTrackingData->doa_noise[i]);
  4805. }
  4806. for (i = 0; i < MAX_POLAR_ACTIVITY_INDICATORS; i++) {
  4807. sourceTrackingData->polar_activity[i] =
  4808. source_tracking_params->polar_activity[i];
  4809. pr_debug("%s: polar_activity[%d] = %d\n",
  4810. __func__, i, sourceTrackingData->polar_activity[i]);
  4811. }
  4812. ret = 0;
  4813. done:
  4814. pr_debug("%s: Exit, ret=%d\n", __func__, ret);
  4815. return ret;
  4816. }
  4817. EXPORT_SYMBOL(adm_get_source_tracking);
  4818. /**
  4819. * adm_get_doa_tracking_mon -
  4820. * Retrieve doa tracking monitor info
  4821. *
  4822. * @port_id: Port ID number
  4823. * @copp_idx: copp index assigned
  4824. * @doa_tracking_data: pointer for doa data to be updated with
  4825. *
  4826. * Returns 0 on success or error on failure
  4827. */
  4828. int adm_get_doa_tracking_mon(int port_id, int copp_idx,
  4829. struct doa_tracking_mon_param *doa_tracking_data)
  4830. {
  4831. int ret = 0, i;
  4832. char *params_value;
  4833. uint32_t max_param_size = 0;
  4834. struct adm_param_doa_tracking_mon_t *doa_tracking_params = NULL;
  4835. struct param_hdr_v3 param_hdr;
  4836. pr_debug("%s: Enter, port_id %d, copp_idx %d\n",
  4837. __func__, port_id, copp_idx);
  4838. if (doa_tracking_data == NULL) {
  4839. pr_err("%s: Received NULL pointer for doa tracking data\n",
  4840. __func__);
  4841. return -EINVAL;
  4842. }
  4843. max_param_size = sizeof(struct adm_param_doa_tracking_mon_t) +
  4844. sizeof(union param_hdrs);
  4845. params_value = kzalloc(max_param_size, GFP_KERNEL);
  4846. if (!params_value)
  4847. return -ENOMEM;
  4848. memset(&param_hdr, 0, sizeof(param_hdr));
  4849. param_hdr.module_id = AUDPROC_MODULE_ID_FFECNS;
  4850. param_hdr.instance_id = INSTANCE_ID_0;
  4851. param_hdr.param_id = AUDPROC_PARAM_ID_FFV_DOA_TRACKING_MONITOR;
  4852. param_hdr.param_size = max_param_size;
  4853. ret = adm_get_pp_params(port_id, copp_idx,
  4854. ADM_CLIENT_ID_DEFAULT, NULL, &param_hdr,
  4855. params_value);
  4856. if (ret) {
  4857. pr_err("%s: get parameters failed ret:%d\n", __func__, ret);
  4858. goto done;
  4859. }
  4860. doa_tracking_params =
  4861. (struct adm_param_doa_tracking_mon_t *)params_value;
  4862. for (i = 0; i < MAX_DOA_TRACKING_ANGLES; i++) {
  4863. doa_tracking_data->target_angle_L16[i] =
  4864. doa_tracking_params->target_angle_L16[i];
  4865. pr_debug("%s: target angle[%d] = %d\n",
  4866. __func__, i, doa_tracking_data->target_angle_L16[i]);
  4867. }
  4868. for (i = 0; i < MAX_DOA_TRACKING_ANGLES; i++) {
  4869. doa_tracking_data->interf_angle_L16[i] =
  4870. doa_tracking_params->interf_angle_L16[i];
  4871. pr_debug("%s: interference angle[%d] = %d\n",
  4872. __func__, i, doa_tracking_data->interf_angle_L16[i]);
  4873. }
  4874. for (i = 0; i < MAX_POLAR_ACTIVITY_INDICATORS; i++) {
  4875. doa_tracking_data->polar_activity[i] =
  4876. doa_tracking_params->polar_activity[i];
  4877. }
  4878. done:
  4879. pr_debug("%s: Exit, ret = %d\n", __func__, ret);
  4880. kfree(params_value);
  4881. return ret;
  4882. }
  4883. EXPORT_SYMBOL(adm_get_doa_tracking_mon);
  4884. int __init adm_init(void)
  4885. {
  4886. int i = 0, j;
  4887. this_adm.ec_ref_rx = -1;
  4888. this_adm.ffecns_port_id = -1;
  4889. init_waitqueue_head(&this_adm.matrix_map_wait);
  4890. init_waitqueue_head(&this_adm.adm_wait);
  4891. for (i = 0; i < AFE_MAX_PORTS; i++) {
  4892. for (j = 0; j < MAX_COPPS_PER_PORT; j++) {
  4893. atomic_set(&this_adm.copp.id[i][j], RESET_COPP_ID);
  4894. init_waitqueue_head(&this_adm.copp.wait[i][j]);
  4895. init_waitqueue_head(
  4896. &this_adm.copp.adm_delay_wait[i][j]);
  4897. }
  4898. }
  4899. if (adm_init_cal_data())
  4900. pr_err("%s: could not init cal data!\n", __func__);
  4901. this_adm.sourceTrackingData.dma_buf = NULL;
  4902. this_adm.sourceTrackingData.memmap.size = 0;
  4903. this_adm.sourceTrackingData.memmap.kvaddr = NULL;
  4904. this_adm.sourceTrackingData.memmap.paddr = 0;
  4905. this_adm.sourceTrackingData.apr_cmd_status = -1;
  4906. return 0;
  4907. }
  4908. void adm_exit(void)
  4909. {
  4910. if (this_adm.apr)
  4911. adm_reset_data();
  4912. adm_delete_cal_data();
  4913. }