q6adm.c 160 KB

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