q6adm.c 166 KB

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