swr-mstr-ctrl.c 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2015-2021, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2022-2023, Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #include <linux/irq.h>
  7. #include <linux/kernel.h>
  8. #include <linux/init.h>
  9. #include <linux/slab.h>
  10. #include <linux/io.h>
  11. #include <linux/interrupt.h>
  12. #include <linux/platform_device.h>
  13. #include <linux/delay.h>
  14. #include <linux/kthread.h>
  15. #include <linux/bitops.h>
  16. #include <linux/clk.h>
  17. #include <linux/gpio.h>
  18. #include <linux/of_gpio.h>
  19. #include <linux/pm_runtime.h>
  20. #include <linux/of.h>
  21. #include <soc/soundwire.h>
  22. #include <soc/swr-common.h>
  23. #include <linux/regmap.h>
  24. #include <dsp/msm-audio-event-notify.h>
  25. #include "swr-mstr-registers.h"
  26. #include "swr-slave-registers.h"
  27. #include <dsp/digital-cdc-rsc-mgr.h>
  28. #include "swr-mstr-ctrl.h"
  29. #define SWR_NUM_PORTS 4 /* TODO - Get this info from DT */
  30. #define SWRM_FRAME_SYNC_SEL 4000 /* 4KHz */
  31. #define SWRM_FRAME_SYNC_SEL_NATIVE 3675 /* 3.675KHz */
  32. #define SWRM_PCM_OUT 0
  33. #define SWRM_PCM_IN 1
  34. #define SWRM_SYSTEM_RESUME_TIMEOUT_MS 700
  35. #define SWRM_SYS_SUSPEND_WAIT 1
  36. #define SWRM_DSD_PARAMS_PORT 4
  37. #define SWRM_SPK_DAC_PORT_RECEIVER 0
  38. #define SWR_BROADCAST_CMD_ID 0x0F
  39. #define SWR_DEV_ID_MASK 0xFFFFFFFFFFFF
  40. #define SWR_REG_VAL_PACK(data, dev, id, reg) \
  41. ((reg) | ((id) << 16) | ((dev) << 20) | ((data) << 24))
  42. #define SWR_INVALID_PARAM 0xFF
  43. #define SWR_HSTOP_MAX_VAL 0xF
  44. #define SWR_HSTART_MIN_VAL 0x0
  45. #define ERR_AUTO_SUSPEND_TIMER_VAL 0x1
  46. #define SWRM_LINK_STATUS_RETRY_CNT 100
  47. #define SWRM_ROW_48 48
  48. #define SWRM_ROW_50 50
  49. #define SWRM_ROW_64 64
  50. #define SWRM_COL_02 02
  51. #define SWRM_COL_16 16
  52. #define SWRS_SCP_INT_STATUS_CLEAR_1 0x40
  53. #define SWRS_SCP_INT_STATUS_MASK_1 0x41
  54. #define SWRM_MCP_SLV_STATUS_MASK 0x03
  55. #define SWRM_ROW_CTRL_MASK 0xF8
  56. #define SWRM_COL_CTRL_MASK 0x07
  57. #define SWRM_CLK_DIV_MASK 0x700
  58. #define SWRM_SSP_PERIOD_MASK 0xff0000
  59. #define SWRM_NUM_PINGS_MASK 0x3E0000
  60. #define SWRM_MCP_FRAME_CTRL_BANK_ROW_CTRL_SHFT 3
  61. #define SWRM_MCP_FRAME_CTRL_BANK_COL_CTRL_SHFT 0
  62. #define SWRM_MCP_FRAME_CTRL_BANK_CLK_DIV_VALUE_SHFT 8
  63. #define SWRM_MCP_FRAME_CTRL_BANK_SSP_PERIOD_SHFT 16
  64. #define SWRM_NUM_PINGS_POS 0x11
  65. #define SWRM_DP_PORT_CTRL_EN_CHAN_SHFT 0x18
  66. #define SWRM_DP_PORT_CTRL_OFFSET2_SHFT 0x10
  67. #define SWRM_DP_PORT_CTRL_OFFSET1_SHFT 0x08
  68. #define SWR_OVERFLOW_RETRY_COUNT 30
  69. #define CPU_IDLE_LATENCY 10
  70. #define SWRM_REG_GAP_START 0x2C54
  71. #define SWRM_REG_GAP_END 0x4000
  72. /* pm runtime auto suspend timer in msecs */
  73. static int auto_suspend_timer = 500;
  74. module_param(auto_suspend_timer, int, 0664);
  75. MODULE_PARM_DESC(auto_suspend_timer, "timer for auto suspend");
  76. enum {
  77. SWR_NOT_PRESENT, /* Device is detached/not present on the bus */
  78. SWR_ATTACHED_OK, /* Device is attached */
  79. SWR_ALERT, /* Device alters master for any interrupts */
  80. SWR_RESERVED, /* Reserved */
  81. };
  82. enum {
  83. MASTER_ID_WSA = 1,
  84. MASTER_ID_RX,
  85. MASTER_ID_TX
  86. };
  87. enum {
  88. ENABLE_PENDING,
  89. DISABLE_PENDING
  90. };
  91. enum {
  92. LPASS_HW_CORE,
  93. LPASS_AUDIO_CORE,
  94. };
  95. enum {
  96. SWRM_WR_CHECK_AVAIL,
  97. SWRM_RD_CHECK_AVAIL,
  98. };
  99. #define TRUE 1
  100. #define FALSE 0
  101. #define SWRM_MAX_PORT_REG 120
  102. #define SWRM_MAX_INIT_REG 12
  103. #define MAX_FIFO_RD_FAIL_RETRY 3
  104. static bool swrm_lock_sleep(struct swr_mstr_ctrl *swrm);
  105. static void swrm_unlock_sleep(struct swr_mstr_ctrl *swrm);
  106. static u32 swr_master_read(struct swr_mstr_ctrl *swrm, unsigned int reg_addr);
  107. static void swr_master_write(struct swr_mstr_ctrl *swrm, u16 reg_addr, u32 val);
  108. static int swrm_runtime_resume(struct device *dev);
  109. static void swrm_wait_for_fifo_avail(struct swr_mstr_ctrl *swrm, int swrm_rd_wr);
  110. static u8 swrm_get_clk_div(int mclk_freq, int bus_clk_freq)
  111. {
  112. int clk_div = 0;
  113. u8 div_val = 0;
  114. if (!mclk_freq || !bus_clk_freq)
  115. return 0;
  116. clk_div = (mclk_freq / bus_clk_freq);
  117. switch (clk_div) {
  118. case 32:
  119. div_val = 5;
  120. break;
  121. case 16:
  122. div_val = 4;
  123. break;
  124. case 8:
  125. div_val = 3;
  126. break;
  127. case 4:
  128. div_val = 2;
  129. break;
  130. case 2:
  131. div_val = 1;
  132. break;
  133. case 1:
  134. default:
  135. div_val = 0;
  136. break;
  137. }
  138. return div_val;
  139. }
  140. static bool swrm_is_msm_variant(int val)
  141. {
  142. return (val == SWRM_VERSION_1_3);
  143. }
  144. static u8 get_cmd_id(struct swr_mstr_ctrl *swrm)
  145. {
  146. u8 id;
  147. id = swrm->cmd_id;
  148. swrm->cmd_id = (swrm->cmd_id == 0xE) ? 0 : ((swrm->cmd_id + 1) % 16);
  149. return id;
  150. }
  151. #ifdef CONFIG_DEBUG_FS
  152. static int swrm_debug_open(struct inode *inode, struct file *file)
  153. {
  154. file->private_data = inode->i_private;
  155. return 0;
  156. }
  157. static int get_parameters(char *buf, u32 *param1, int num_of_par)
  158. {
  159. char *token;
  160. int base, cnt;
  161. token = strsep(&buf, " ");
  162. for (cnt = 0; cnt < num_of_par; cnt++) {
  163. if (token) {
  164. if ((token[1] == 'x') || (token[1] == 'X'))
  165. base = 16;
  166. else
  167. base = 10;
  168. if (kstrtou32(token, base, &param1[cnt]) != 0)
  169. return -EINVAL;
  170. token = strsep(&buf, " ");
  171. } else
  172. return -EINVAL;
  173. }
  174. return 0;
  175. }
  176. static ssize_t swrm_reg_show(struct swr_mstr_ctrl *swrm, char __user *ubuf,
  177. size_t count, loff_t *ppos)
  178. {
  179. int i, reg_val, len;
  180. ssize_t total = 0;
  181. char tmp_buf[SWR_MSTR_MAX_BUF_LEN];
  182. if (!ubuf || !ppos)
  183. return 0;
  184. i = ((int) *ppos + SWRM_BASE);
  185. for (; i <= SWRM_MAX_REGISTER; i += 4) {
  186. /* No registers between SWRM_REG_GAP_START to SWRM_REG_GAP_END */
  187. if (i > SWRM_REG_GAP_START && i < SWRM_REG_GAP_END)
  188. continue;
  189. usleep_range(100, 150);
  190. reg_val = swr_master_read(swrm, i);
  191. len = snprintf(tmp_buf, 25, "0x%.3x: 0x%.2x\n", i, reg_val);
  192. if (len < 0) {
  193. pr_err_ratelimited("%s: fail to fill the buffer\n", __func__);
  194. total = -EFAULT;
  195. goto copy_err;
  196. }
  197. if ((total + len) >= count - 1)
  198. break;
  199. if (copy_to_user((ubuf + total), tmp_buf, len)) {
  200. pr_err_ratelimited("%s: fail to copy reg dump\n", __func__);
  201. total = -EFAULT;
  202. goto copy_err;
  203. }
  204. *ppos += 4;
  205. total += len;
  206. }
  207. copy_err:
  208. return total;
  209. }
  210. static ssize_t swrm_debug_reg_dump(struct file *file, char __user *ubuf,
  211. size_t count, loff_t *ppos)
  212. {
  213. struct swr_mstr_ctrl *swrm;
  214. if (!count || !file || !ppos || !ubuf)
  215. return -EINVAL;
  216. swrm = file->private_data;
  217. if (!swrm)
  218. return -EINVAL;
  219. if (*ppos < 0)
  220. return -EINVAL;
  221. return swrm_reg_show(swrm, ubuf, count, ppos);
  222. }
  223. static ssize_t swrm_debug_read(struct file *file, char __user *ubuf,
  224. size_t count, loff_t *ppos)
  225. {
  226. char lbuf[SWR_MSTR_RD_BUF_LEN];
  227. struct swr_mstr_ctrl *swrm = NULL;
  228. if (!count || !file || !ppos || !ubuf)
  229. return -EINVAL;
  230. swrm = file->private_data;
  231. if (!swrm)
  232. return -EINVAL;
  233. if (*ppos < 0)
  234. return -EINVAL;
  235. snprintf(lbuf, sizeof(lbuf), "0x%x\n", swrm->read_data);
  236. return simple_read_from_buffer(ubuf, count, ppos, lbuf,
  237. strnlen(lbuf, 7));
  238. }
  239. static ssize_t swrm_debug_peek_write(struct file *file, const char __user *ubuf,
  240. size_t count, loff_t *ppos)
  241. {
  242. char lbuf[SWR_MSTR_RD_BUF_LEN];
  243. int rc;
  244. u32 param[5];
  245. struct swr_mstr_ctrl *swrm = NULL;
  246. if (!count || !file || !ppos || !ubuf)
  247. return -EINVAL;
  248. swrm = file->private_data;
  249. if (!swrm)
  250. return -EINVAL;
  251. if (*ppos < 0)
  252. return -EINVAL;
  253. if (count > sizeof(lbuf) - 1)
  254. return -EINVAL;
  255. rc = copy_from_user(lbuf, ubuf, count);
  256. if (rc)
  257. return -EFAULT;
  258. lbuf[count] = '\0';
  259. rc = get_parameters(lbuf, param, 1);
  260. if ((param[0] <= SWRM_MAX_REGISTER) && (rc == 0))
  261. swrm->read_data = swr_master_read(swrm, param[0]);
  262. else
  263. rc = -EINVAL;
  264. if (rc == 0)
  265. rc = count;
  266. else
  267. dev_err_ratelimited(swrm->dev, "%s: rc = %d\n", __func__, rc);
  268. return rc;
  269. }
  270. static ssize_t swrm_debug_write(struct file *file,
  271. const char __user *ubuf, size_t count, loff_t *ppos)
  272. {
  273. char lbuf[SWR_MSTR_WR_BUF_LEN];
  274. int rc;
  275. u32 param[5];
  276. struct swr_mstr_ctrl *swrm;
  277. if (!file || !ppos || !ubuf)
  278. return -EINVAL;
  279. swrm = file->private_data;
  280. if (!swrm)
  281. return -EINVAL;
  282. if (count > sizeof(lbuf) - 1)
  283. return -EINVAL;
  284. rc = copy_from_user(lbuf, ubuf, count);
  285. if (rc)
  286. return -EFAULT;
  287. lbuf[count] = '\0';
  288. rc = get_parameters(lbuf, param, 2);
  289. if ((param[0] <= SWRM_MAX_REGISTER) &&
  290. (param[1] <= 0xFFFFFFFF) &&
  291. (rc == 0))
  292. swr_master_write(swrm, param[0], param[1]);
  293. else
  294. rc = -EINVAL;
  295. if (rc == 0)
  296. rc = count;
  297. else
  298. pr_err_ratelimited("%s: rc = %d\n", __func__, rc);
  299. return rc;
  300. }
  301. static const struct file_operations swrm_debug_read_ops = {
  302. .open = swrm_debug_open,
  303. .write = swrm_debug_peek_write,
  304. .read = swrm_debug_read,
  305. };
  306. static const struct file_operations swrm_debug_write_ops = {
  307. .open = swrm_debug_open,
  308. .write = swrm_debug_write,
  309. };
  310. static const struct file_operations swrm_debug_dump_ops = {
  311. .open = swrm_debug_open,
  312. .read = swrm_debug_reg_dump,
  313. };
  314. #endif
  315. static void swrm_reg_dump(struct swr_mstr_ctrl *swrm,
  316. u32 *reg, u32 *val, int len, const char* func)
  317. {
  318. int i = 0;
  319. for (i = 0; i < len; i++)
  320. dev_dbg(swrm->dev, "%s: reg = 0x%x val = 0x%x\n",
  321. func, reg[i], val[i]);
  322. }
  323. static bool is_swr_clk_needed(struct swr_mstr_ctrl *swrm)
  324. {
  325. return ((swrm->version <= SWRM_VERSION_1_5_1) ? true : false);
  326. }
  327. static int swrm_request_hw_vote(struct swr_mstr_ctrl *swrm,
  328. int core_type, bool enable)
  329. {
  330. int ret = 0;
  331. mutex_lock(&swrm->devlock);
  332. if (core_type == LPASS_HW_CORE) {
  333. if (swrm->lpass_core_hw_vote) {
  334. if (enable) {
  335. if (!swrm->dev_up) {
  336. dev_dbg(swrm->dev, "%s: device is down or SSR state\n",
  337. __func__);
  338. trace_printk("%s: device is down or SSR state\n",
  339. __func__);
  340. mutex_unlock(&swrm->devlock);
  341. return -ENODEV;
  342. }
  343. if (++swrm->hw_core_clk_en == 1) {
  344. ret =
  345. digital_cdc_rsc_mgr_hw_vote_enable(
  346. swrm->lpass_core_hw_vote, swrm->dev);
  347. if (ret < 0) {
  348. dev_err_ratelimited(swrm->dev,
  349. "%s:lpass core hw enable failed\n",
  350. __func__);
  351. --swrm->hw_core_clk_en;
  352. }
  353. }
  354. } else {
  355. --swrm->hw_core_clk_en;
  356. if (swrm->hw_core_clk_en < 0)
  357. swrm->hw_core_clk_en = 0;
  358. else if (swrm->hw_core_clk_en == 0)
  359. digital_cdc_rsc_mgr_hw_vote_disable(
  360. swrm->lpass_core_hw_vote, swrm->dev);
  361. }
  362. }
  363. }
  364. if (core_type == LPASS_AUDIO_CORE) {
  365. if (swrm->lpass_core_audio) {
  366. if (enable) {
  367. if (!swrm->dev_up) {
  368. dev_dbg(swrm->dev, "%s: device is down or SSR state\n",
  369. __func__);
  370. trace_printk("%s: device is down or SSR state\n",
  371. __func__);
  372. mutex_unlock(&swrm->devlock);
  373. return -ENODEV;
  374. }
  375. if (++swrm->aud_core_clk_en == 1) {
  376. ret =
  377. digital_cdc_rsc_mgr_hw_vote_enable(
  378. swrm->lpass_core_audio, swrm->dev);
  379. if (ret < 0) {
  380. dev_err_ratelimited(swrm->dev,
  381. "%s:lpass audio hw enable failed\n",
  382. __func__);
  383. --swrm->aud_core_clk_en;
  384. }
  385. }
  386. } else {
  387. --swrm->aud_core_clk_en;
  388. if (swrm->aud_core_clk_en < 0)
  389. swrm->aud_core_clk_en = 0;
  390. else if (swrm->aud_core_clk_en == 0)
  391. digital_cdc_rsc_mgr_hw_vote_disable(
  392. swrm->lpass_core_audio, swrm->dev);
  393. }
  394. }
  395. }
  396. mutex_unlock(&swrm->devlock);
  397. dev_dbg(swrm->dev, "%s: hw_clk_en: %d audio_core_clk_en: %d\n",
  398. __func__, swrm->hw_core_clk_en, swrm->aud_core_clk_en);
  399. trace_printk("%s: hw_clk_en: %d audio_core_clk_en: %d\n",
  400. __func__, swrm->hw_core_clk_en, swrm->aud_core_clk_en);
  401. return ret;
  402. }
  403. static int swrm_get_ssp_period(struct swr_mstr_ctrl *swrm,
  404. int row, int col,
  405. int frame_sync)
  406. {
  407. if (!swrm || !row || !col || !frame_sync)
  408. return 1;
  409. return ((swrm->bus_clk * 2) / ((row * col) * frame_sync));
  410. }
  411. static int swrm_core_vote_request(struct swr_mstr_ctrl *swrm, bool enable)
  412. {
  413. int ret = 0;
  414. static DEFINE_RATELIMIT_STATE(rtl, 1 * HZ, 1);
  415. if (!swrm->handle)
  416. return -EINVAL;
  417. mutex_lock(&swrm->clklock);
  418. if (!swrm->dev_up) {
  419. ret = -ENODEV;
  420. goto exit;
  421. }
  422. if (swrm->core_vote) {
  423. ret = swrm->core_vote(swrm->handle, enable);
  424. if (ret)
  425. if (__ratelimit(&rtl))
  426. dev_err_ratelimited(swrm->dev,
  427. "%s: core vote request failed\n", __func__);
  428. }
  429. exit:
  430. mutex_unlock(&swrm->clklock);
  431. return ret;
  432. }
  433. static int swrm_clk_request(struct swr_mstr_ctrl *swrm, bool enable)
  434. {
  435. int ret = 0;
  436. if (!swrm->clk || !swrm->handle)
  437. return -EINVAL;
  438. mutex_lock(&swrm->clklock);
  439. if (enable) {
  440. if (!swrm->dev_up) {
  441. ret = -ENODEV;
  442. goto exit;
  443. }
  444. if (is_swr_clk_needed(swrm)) {
  445. if (swrm->core_vote) {
  446. ret = swrm->core_vote(swrm->handle, true);
  447. if (ret) {
  448. dev_err_ratelimited(swrm->dev,
  449. "%s: core vote request failed\n",
  450. __func__);
  451. swrm->core_vote(swrm->handle, false);
  452. goto exit;
  453. }
  454. ret = swrm->core_vote(swrm->handle, false);
  455. }
  456. }
  457. swrm->clk_ref_count++;
  458. if (swrm->clk_ref_count == 1) {
  459. trace_printk("%s: clock enable count %d\n",
  460. __func__, swrm->clk_ref_count);
  461. ret = swrm->clk(swrm->handle, true);
  462. if (ret) {
  463. dev_err_ratelimited(swrm->dev,
  464. "%s: clock enable req failed",
  465. __func__);
  466. --swrm->clk_ref_count;
  467. }
  468. }
  469. } else if (--swrm->clk_ref_count == 0) {
  470. trace_printk("%s: clock disable count %d\n",
  471. __func__, swrm->clk_ref_count);
  472. swrm->clk(swrm->handle, false);
  473. complete(&swrm->clk_off_complete);
  474. }
  475. if (swrm->clk_ref_count < 0) {
  476. dev_err_ratelimited(swrm->dev, "%s: swrm clk count mismatch\n", __func__);
  477. swrm->clk_ref_count = 0;
  478. }
  479. exit:
  480. mutex_unlock(&swrm->clklock);
  481. return ret;
  482. }
  483. static int swrm_ahb_write(struct swr_mstr_ctrl *swrm,
  484. u16 reg, u32 *value)
  485. {
  486. u32 temp = (u32)(*value);
  487. int ret = 0;
  488. int vote_ret = 0;
  489. mutex_lock(&swrm->devlock);
  490. if (!swrm->dev_up)
  491. goto err;
  492. if (is_swr_clk_needed(swrm)) {
  493. ret = swrm_clk_request(swrm, TRUE);
  494. if (ret) {
  495. dev_err_ratelimited(swrm->dev,
  496. "%s: clock request failed\n",
  497. __func__);
  498. goto err;
  499. }
  500. } else {
  501. vote_ret = swrm_core_vote_request(swrm, true);
  502. if (vote_ret == -ENOTSYNC)
  503. goto err_vote;
  504. else if (vote_ret)
  505. goto err;
  506. }
  507. iowrite32(temp, swrm->swrm_dig_base + reg);
  508. if (is_swr_clk_needed(swrm))
  509. swrm_clk_request(swrm, FALSE);
  510. err_vote:
  511. if (!is_swr_clk_needed(swrm))
  512. swrm_core_vote_request(swrm, false);
  513. err:
  514. mutex_unlock(&swrm->devlock);
  515. return ret;
  516. }
  517. static int swrm_ahb_read(struct swr_mstr_ctrl *swrm,
  518. u16 reg, u32 *value)
  519. {
  520. u32 temp = 0;
  521. int ret = 0;
  522. int vote_ret = 0;
  523. mutex_lock(&swrm->devlock);
  524. if (!swrm->dev_up)
  525. goto err;
  526. if (is_swr_clk_needed(swrm)) {
  527. ret = swrm_clk_request(swrm, TRUE);
  528. if (ret) {
  529. dev_err_ratelimited(swrm->dev, "%s: clock request failed\n",
  530. __func__);
  531. goto err;
  532. }
  533. } else {
  534. vote_ret = swrm_core_vote_request(swrm, true);
  535. if (vote_ret == -ENOTSYNC)
  536. goto err_vote;
  537. else if (vote_ret)
  538. goto err;
  539. }
  540. temp = ioread32(swrm->swrm_dig_base + reg);
  541. *value = temp;
  542. if (is_swr_clk_needed(swrm))
  543. swrm_clk_request(swrm, FALSE);
  544. err_vote:
  545. if (!is_swr_clk_needed(swrm))
  546. swrm_core_vote_request(swrm, false);
  547. err:
  548. mutex_unlock(&swrm->devlock);
  549. return ret;
  550. }
  551. static u32 swr_master_read(struct swr_mstr_ctrl *swrm, unsigned int reg_addr)
  552. {
  553. u32 val = 0;
  554. if (swrm->read)
  555. val = swrm->read(swrm->handle, reg_addr);
  556. else
  557. swrm_ahb_read(swrm, reg_addr, &val);
  558. return val;
  559. }
  560. static void swr_master_write(struct swr_mstr_ctrl *swrm, u16 reg_addr, u32 val)
  561. {
  562. if (swrm->write)
  563. swrm->write(swrm->handle, reg_addr, val);
  564. else
  565. swrm_ahb_write(swrm, reg_addr, &val);
  566. }
  567. static int swr_master_bulk_write(struct swr_mstr_ctrl *swrm, u32 *reg_addr,
  568. u32 *val, unsigned int length)
  569. {
  570. int i = 0;
  571. if (swrm->bulk_write)
  572. swrm->bulk_write(swrm->handle, reg_addr, val, length);
  573. else {
  574. mutex_lock(&swrm->iolock);
  575. for (i = 0; i < length; i++) {
  576. /* wait for FIFO WR command to complete to avoid overflow */
  577. /*
  578. * Reduce sleep from 100us to 50us to meet KPIs
  579. * This still meets the hardware spec
  580. */
  581. usleep_range(50, 55);
  582. if (reg_addr[i] == SWRM_CMD_FIFO_WR_CMD(swrm->ee_val))
  583. swrm_wait_for_fifo_avail(swrm,
  584. SWRM_WR_CHECK_AVAIL);
  585. swr_master_write(swrm, reg_addr[i], val[i]);
  586. }
  587. usleep_range(100, 110);
  588. mutex_unlock(&swrm->iolock);
  589. }
  590. return 0;
  591. }
  592. static bool swrm_check_link_status(struct swr_mstr_ctrl *swrm, bool active)
  593. {
  594. int retry = SWRM_LINK_STATUS_RETRY_CNT;
  595. int ret = false;
  596. int status = active ? 0x1 : 0x0;
  597. int comp_sts = 0x0;
  598. if ((swrm->version <= SWRM_VERSION_1_5_1))
  599. return true;
  600. do {
  601. #ifdef CONFIG_SWRM_VER_2P0
  602. comp_sts = swr_master_read(swrm, SWRM_LINK_STATUS(swrm->ee_val)) & 0x01;
  603. #else
  604. comp_sts = swr_master_read(swrm, SWRM_COMP_STATUS) & 0x01;
  605. #endif
  606. /* check comp status and status requested met */
  607. if ((comp_sts && status) || (!comp_sts && !status)) {
  608. ret = true;
  609. break;
  610. }
  611. retry--;
  612. usleep_range(500, 510);
  613. } while (retry);
  614. if (retry == 0)
  615. dev_err_ratelimited(swrm->dev, "%s: link status not %s\n", __func__,
  616. active ? "connected" : "disconnected");
  617. return ret;
  618. }
  619. static bool swrm_is_port_en(struct swr_master *mstr)
  620. {
  621. return !!(mstr->num_port);
  622. }
  623. static void copy_port_tables(struct swr_mstr_ctrl *swrm,
  624. struct port_params *params)
  625. {
  626. u8 i;
  627. struct port_params *config = params;
  628. for (i = 0; i < SWR_MSTR_PORT_LEN; i++) {
  629. /* wsa uses single frame structure for all configurations */
  630. if (!swrm->mport_cfg[i].port_en)
  631. continue;
  632. swrm->mport_cfg[i].sinterval = config[i].si;
  633. swrm->mport_cfg[i].offset1 = config[i].off1;
  634. swrm->mport_cfg[i].offset2 = config[i].off2;
  635. swrm->mport_cfg[i].hstart = config[i].hstart;
  636. swrm->mport_cfg[i].hstop = config[i].hstop;
  637. swrm->mport_cfg[i].blk_pack_mode = config[i].bp_mode;
  638. swrm->mport_cfg[i].blk_grp_count = config[i].bgp_ctrl;
  639. swrm->mport_cfg[i].word_length = config[i].wd_len;
  640. swrm->mport_cfg[i].lane_ctrl = config[i].lane_ctrl;
  641. swrm->mport_cfg[i].dir = config[i].dir;
  642. swrm->mport_cfg[i].stream_type = config[i].stream_type;
  643. }
  644. }
  645. static int swrm_get_port_config(struct swr_mstr_ctrl *swrm)
  646. {
  647. struct port_params *params;
  648. u32 usecase = 0;
  649. if (swrm->master_id == MASTER_ID_TX)
  650. return 0;
  651. /* TODO - Send usecase information to avoid checking for master_id */
  652. if (swrm->mport_cfg[SWRM_DSD_PARAMS_PORT].port_en &&
  653. (swrm->master_id == MASTER_ID_RX))
  654. usecase = 1;
  655. else if ((swrm->master_id == MASTER_ID_RX) &&
  656. (swrm->bus_clk == SWR_CLK_RATE_11P2896MHZ))
  657. usecase = 2;
  658. if ((swrm->master_id == MASTER_ID_WSA) &&
  659. swrm->mport_cfg[SWRM_SPK_DAC_PORT_RECEIVER].port_en &&
  660. swrm->mport_cfg[SWRM_SPK_DAC_PORT_RECEIVER].ch_rate ==
  661. SWR_CLK_RATE_4P8MHZ)
  662. usecase = 1;
  663. params = swrm->port_param[usecase];
  664. copy_port_tables(swrm, params);
  665. return 0;
  666. }
  667. static int swrm_pcm_port_config(struct swr_mstr_ctrl *swrm, u8 port_num,
  668. u8 stream_type, bool dir, bool enable)
  669. {
  670. u16 reg_addr = 0;
  671. u32 reg_val = 0;
  672. if (!port_num || port_num > SWR_MSTR_PORT_LEN) {
  673. dev_err_ratelimited(swrm->dev, "%s: invalid port: %d\n",
  674. __func__, port_num);
  675. return -EINVAL;
  676. }
  677. if (stream_type == SWR_PDM)
  678. return 0;
  679. reg_addr = ((dir) ? SWRM_DIN_DP_PCM_PORT_CTRL(port_num) : \
  680. SWRM_DOUT_DP_PCM_PORT_CTRL(port_num));
  681. reg_val = enable ? 0x3 : 0x0;
  682. swr_master_write(swrm, reg_addr, reg_val);
  683. dev_dbg(swrm->dev, "%s : pcm port %s, reg_val = %d, for addr %x\n",
  684. __func__, enable ? "Enabled" : "disabled", reg_val, reg_addr);
  685. return 0;
  686. }
  687. static int swrm_get_master_port(struct swr_mstr_ctrl *swrm, u8 *mstr_port_id,
  688. u8 *mstr_ch_mask, u8 mstr_prt_type,
  689. u8 slv_port_id)
  690. {
  691. int i, j;
  692. *mstr_port_id = 0;
  693. for (i = 1; i <= swrm->num_ports; i++) {
  694. for (j = 0; j < SWR_MAX_CH_PER_PORT; j++) {
  695. if (swrm->port_mapping[i][j].port_type == mstr_prt_type)
  696. goto found;
  697. }
  698. }
  699. found:
  700. if (i > swrm->num_ports || j == SWR_MAX_CH_PER_PORT) {
  701. dev_err_ratelimited(swrm->dev, "%s: port type not supported by master\n",
  702. __func__);
  703. return -EINVAL;
  704. }
  705. /* id 0 corresponds to master port 1 */
  706. *mstr_port_id = i - 1;
  707. *mstr_ch_mask = swrm->port_mapping[i][j].ch_mask;
  708. return 0;
  709. }
  710. static u32 swrm_get_packed_reg_val(u8 *cmd_id, u8 cmd_data,
  711. u8 dev_addr, u16 reg_addr)
  712. {
  713. u32 val;
  714. u8 id = *cmd_id;
  715. if (id != SWR_BROADCAST_CMD_ID) {
  716. if (id < 14)
  717. id += 1;
  718. else
  719. id = 0;
  720. *cmd_id = id;
  721. }
  722. val = SWR_REG_VAL_PACK(cmd_data, dev_addr, id, reg_addr);
  723. return val;
  724. }
  725. static void swrm_wait_for_fifo_avail(struct swr_mstr_ctrl *swrm, int swrm_rd_wr)
  726. {
  727. u32 fifo_outstanding_cmd;
  728. u32 fifo_retry_count = SWR_OVERFLOW_RETRY_COUNT;
  729. if (swrm_rd_wr) {
  730. /* Check for fifo underflow during read */
  731. /* Check no of outstanding commands in fifo before read */
  732. fifo_outstanding_cmd = ((swr_master_read(swrm,
  733. SWRM_CMD_FIFO_STATUS(swrm->ee_val)) & 0x001F0000) >> 16);
  734. if (fifo_outstanding_cmd == 0) {
  735. while (fifo_retry_count) {
  736. usleep_range(500, 510);
  737. fifo_outstanding_cmd =
  738. ((swr_master_read (swrm,
  739. SWRM_CMD_FIFO_STATUS(swrm->ee_val)) & 0x001F0000)
  740. >> 16);
  741. fifo_retry_count--;
  742. if (fifo_outstanding_cmd > 0)
  743. break;
  744. }
  745. }
  746. if (fifo_outstanding_cmd == 0)
  747. dev_err_ratelimited(swrm->dev,
  748. "%s err read underflow\n", __func__);
  749. } else {
  750. /* Check for fifo overflow during write */
  751. /* Check no of outstanding commands in fifo before write */
  752. fifo_outstanding_cmd = ((swr_master_read(swrm,
  753. SWRM_CMD_FIFO_STATUS(swrm->ee_val)) & 0x00001F00)
  754. >> 8);
  755. if (fifo_outstanding_cmd == swrm->wr_fifo_depth) {
  756. while (fifo_retry_count) {
  757. usleep_range(500, 510);
  758. fifo_outstanding_cmd =
  759. ((swr_master_read(swrm, SWRM_CMD_FIFO_STATUS(swrm->ee_val))
  760. & 0x00001F00) >> 8);
  761. fifo_retry_count--;
  762. if (fifo_outstanding_cmd < swrm->wr_fifo_depth)
  763. break;
  764. }
  765. }
  766. if (fifo_outstanding_cmd == swrm->wr_fifo_depth)
  767. dev_err_ratelimited(swrm->dev,
  768. "%s err write overflow\n", __func__);
  769. }
  770. }
  771. static int swrm_cmd_fifo_rd_cmd(struct swr_mstr_ctrl *swrm, int *cmd_data,
  772. u8 dev_addr, u8 cmd_id, u16 reg_addr,
  773. u32 len)
  774. {
  775. u32 val;
  776. u32 retry_attempt = 0;
  777. mutex_lock(&swrm->iolock);
  778. val = swrm_get_packed_reg_val(&swrm->rcmd_id, len, dev_addr, reg_addr);
  779. if (swrm->read) {
  780. /* skip delay if read is handled in platform driver */
  781. swr_master_write(swrm, SWRM_CMD_FIFO_RD_CMD(swrm->ee_val), val);
  782. } else {
  783. /*
  784. * Check for outstanding cmd wrt. write fifo depth to avoid
  785. * overflow as read will also increase write fifo cnt.
  786. */
  787. swrm_wait_for_fifo_avail(swrm, SWRM_WR_CHECK_AVAIL);
  788. /* wait for FIFO RD to complete to avoid overflow */
  789. usleep_range(100, 105);
  790. swr_master_write(swrm, SWRM_CMD_FIFO_RD_CMD(swrm->ee_val), val);
  791. /* wait for FIFO RD CMD complete to avoid overflow */
  792. usleep_range(250, 255);
  793. }
  794. /* Check if slave responds properly after FIFO RD is complete */
  795. swrm_wait_for_fifo_avail(swrm, SWRM_RD_CHECK_AVAIL);
  796. retry_read:
  797. *cmd_data = swr_master_read(swrm, SWRM_CMD_FIFO_RD_FIFO(swrm->ee_val));
  798. dev_dbg(swrm->dev, "%s: reg: 0x%x, cmd_id: 0x%x, rcmd_id: 0x%x, \
  799. dev_num: 0x%x, cmd_data: 0x%x\n", __func__, reg_addr,
  800. cmd_id, swrm->rcmd_id, dev_addr, *cmd_data);
  801. if ((((*cmd_data) & 0xF00) >> 8) != swrm->rcmd_id) {
  802. if (retry_attempt < MAX_FIFO_RD_FAIL_RETRY) {
  803. /* wait 500 us before retry on fifo read failure */
  804. usleep_range(500, 505);
  805. if (retry_attempt == (MAX_FIFO_RD_FAIL_RETRY - 1)) {
  806. swr_master_write(swrm,
  807. SWRM_CMD_FIFO_RD_CMD(swrm->ee_val),
  808. val);
  809. }
  810. retry_attempt++;
  811. goto retry_read;
  812. } else {
  813. dev_err_ratelimited(swrm->dev, "%s: reg: 0x%x, cmd_id: 0x%x, \
  814. rcmd_id: 0x%x, dev_num: 0x%x, cmd_data: 0x%x\n",
  815. __func__, reg_addr, cmd_id, swrm->rcmd_id,
  816. dev_addr, *cmd_data);
  817. dev_err_ratelimited(swrm->dev,
  818. "%s: failed to read fifo\n", __func__);
  819. }
  820. }
  821. mutex_unlock(&swrm->iolock);
  822. return 0;
  823. }
  824. static int swrm_cmd_fifo_wr_cmd(struct swr_mstr_ctrl *swrm, u8 cmd_data,
  825. u8 dev_addr, u8 cmd_id, u16 reg_addr)
  826. {
  827. u32 val;
  828. int ret = 0;
  829. mutex_lock(&swrm->iolock);
  830. if (!cmd_id)
  831. val = swrm_get_packed_reg_val(&swrm->wcmd_id, cmd_data,
  832. dev_addr, reg_addr);
  833. else
  834. val = swrm_get_packed_reg_val(&cmd_id, cmd_data,
  835. dev_addr, reg_addr);
  836. dev_dbg(swrm->dev, "%s: reg: 0x%x, cmd_id: 0x%x,wcmd_id: 0x%x, \
  837. dev_num: 0x%x, cmd_data: 0x%x\n", __func__,
  838. reg_addr, cmd_id, swrm->wcmd_id,dev_addr, cmd_data);
  839. /*
  840. * Check for outstanding cmd wrt. write fifo depth to avoid
  841. * overflow.
  842. */
  843. swrm_wait_for_fifo_avail(swrm, SWRM_WR_CHECK_AVAIL);
  844. swr_master_write(swrm, SWRM_CMD_FIFO_WR_CMD(swrm->ee_val), val);
  845. /*
  846. * wait for FIFO WR command to complete to avoid overflow
  847. * skip delay if write is handled in platform driver.
  848. */
  849. if(!swrm->write)
  850. usleep_range(150, 155);
  851. if (cmd_id == 0xF) {
  852. /*
  853. * sleep for 10ms for MSM soundwire variant to allow broadcast
  854. * command to complete.
  855. */
  856. if (swrm_is_msm_variant(swrm->version))
  857. usleep_range(10000, 10100);
  858. else
  859. wait_for_completion_timeout(&swrm->broadcast,
  860. (2 * HZ/10));
  861. }
  862. mutex_unlock(&swrm->iolock);
  863. return ret;
  864. }
  865. static int swrm_read(struct swr_master *master, u8 dev_num, u16 reg_addr,
  866. void *buf, u32 len)
  867. {
  868. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  869. int ret = 0;
  870. int val;
  871. u8 *reg_val = (u8 *)buf;
  872. if (!swrm) {
  873. dev_err_ratelimited(&master->dev, "%s: swrm is NULL\n", __func__);
  874. return -EINVAL;
  875. }
  876. if (!dev_num) {
  877. dev_err_ratelimited(&master->dev, "%s: invalid slave dev num\n", __func__);
  878. return -EINVAL;
  879. }
  880. mutex_lock(&swrm->devlock);
  881. if (!swrm->dev_up) {
  882. mutex_unlock(&swrm->devlock);
  883. return 0;
  884. }
  885. mutex_unlock(&swrm->devlock);
  886. pm_runtime_get_sync(swrm->dev);
  887. if (swrm->req_clk_switch)
  888. swrm_runtime_resume(swrm->dev);
  889. ret = swrm_cmd_fifo_rd_cmd(swrm, &val, dev_num,
  890. get_cmd_id(swrm), reg_addr, len);
  891. if (!ret)
  892. *reg_val = (u8)val;
  893. pm_runtime_put_autosuspend(swrm->dev);
  894. pm_runtime_mark_last_busy(swrm->dev);
  895. return ret;
  896. }
  897. static int swrm_write(struct swr_master *master, u8 dev_num, u16 reg_addr,
  898. const void *buf)
  899. {
  900. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  901. int ret = 0;
  902. u8 reg_val = *(u8 *)buf;
  903. if (!swrm) {
  904. dev_err_ratelimited(&master->dev, "%s: swrm is NULL\n", __func__);
  905. return -EINVAL;
  906. }
  907. if (!dev_num) {
  908. dev_err_ratelimited(&master->dev, "%s: invalid slave dev num\n", __func__);
  909. return -EINVAL;
  910. }
  911. mutex_lock(&swrm->devlock);
  912. if (!swrm->dev_up) {
  913. mutex_unlock(&swrm->devlock);
  914. return 0;
  915. }
  916. mutex_unlock(&swrm->devlock);
  917. pm_runtime_get_sync(swrm->dev);
  918. if (swrm->req_clk_switch)
  919. swrm_runtime_resume(swrm->dev);
  920. ret = swrm_cmd_fifo_wr_cmd(swrm, reg_val, dev_num,
  921. get_cmd_id(swrm), reg_addr);
  922. pm_runtime_put_autosuspend(swrm->dev);
  923. pm_runtime_mark_last_busy(swrm->dev);
  924. return ret;
  925. }
  926. static int swrm_bulk_write(struct swr_master *master, u8 dev_num, void *reg,
  927. const void *buf, size_t len)
  928. {
  929. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  930. int ret = 0;
  931. int i;
  932. u32 *val;
  933. u32 *swr_fifo_reg;
  934. if (!swrm || !swrm->handle) {
  935. dev_err_ratelimited(&master->dev, "%s: swrm is NULL\n", __func__);
  936. return -EINVAL;
  937. }
  938. if (len <= 0)
  939. return -EINVAL;
  940. mutex_lock(&swrm->devlock);
  941. if (!swrm->dev_up) {
  942. mutex_unlock(&swrm->devlock);
  943. return 0;
  944. }
  945. mutex_unlock(&swrm->devlock);
  946. pm_runtime_get_sync(swrm->dev);
  947. if (dev_num) {
  948. swr_fifo_reg = kcalloc(len, sizeof(u32), GFP_KERNEL);
  949. if (!swr_fifo_reg) {
  950. ret = -ENOMEM;
  951. goto err;
  952. }
  953. val = kcalloc(len, sizeof(u32), GFP_KERNEL);
  954. if (!val) {
  955. ret = -ENOMEM;
  956. goto mem_fail;
  957. }
  958. for (i = 0; i < len; i++) {
  959. val[i] = swrm_get_packed_reg_val(&swrm->wcmd_id,
  960. ((u8 *)buf)[i],
  961. dev_num,
  962. ((u16 *)reg)[i]);
  963. swr_fifo_reg[i] = SWRM_CMD_FIFO_WR_CMD(swrm->ee_val);
  964. }
  965. ret = swr_master_bulk_write(swrm, swr_fifo_reg, val, len);
  966. if (ret) {
  967. dev_err_ratelimited(&master->dev, "%s: bulk write failed\n",
  968. __func__);
  969. ret = -EINVAL;
  970. }
  971. } else {
  972. dev_err_ratelimited(&master->dev,
  973. "%s: No support of Bulk write for master regs\n",
  974. __func__);
  975. ret = -EINVAL;
  976. goto err;
  977. }
  978. kfree(val);
  979. mem_fail:
  980. kfree(swr_fifo_reg);
  981. err:
  982. pm_runtime_put_autosuspend(swrm->dev);
  983. pm_runtime_mark_last_busy(swrm->dev);
  984. return ret;
  985. }
  986. static u8 get_inactive_bank_num(struct swr_mstr_ctrl *swrm)
  987. {
  988. return (swr_master_read(swrm, SWRM_MCP_STATUS) & 0x01) ? 0 : 1;
  989. }
  990. static void enable_bank_switch(struct swr_mstr_ctrl *swrm, u8 bank,
  991. u8 row, u8 col)
  992. {
  993. swrm_cmd_fifo_wr_cmd(swrm, ((row << 3) | col), 0xF, 0xF,
  994. SWRS_SCP_FRAME_CTRL_BANK(bank));
  995. }
  996. static void swrm_switch_frame_shape(struct swr_mstr_ctrl *swrm, int mclk_freq)
  997. {
  998. u8 bank;
  999. u32 n_row, n_col;
  1000. u32 value = 0;
  1001. u32 row = 0, col = 0;
  1002. u8 ssp_period = 0;
  1003. int frame_sync = SWRM_FRAME_SYNC_SEL;
  1004. if (mclk_freq == MCLK_FREQ_NATIVE) {
  1005. n_col = SWR_MAX_COL;
  1006. col = SWRM_COL_16;
  1007. n_row = SWR_ROW_64;
  1008. row = SWRM_ROW_64;
  1009. frame_sync = SWRM_FRAME_SYNC_SEL_NATIVE;
  1010. } else {
  1011. n_col = SWR_MIN_COL;
  1012. col = SWRM_COL_02;
  1013. n_row = SWR_ROW_50;
  1014. row = SWRM_ROW_50;
  1015. frame_sync = SWRM_FRAME_SYNC_SEL;
  1016. }
  1017. bank = get_inactive_bank_num(swrm);
  1018. ssp_period = swrm_get_ssp_period(swrm, row, col, frame_sync);
  1019. dev_dbg(swrm->dev, "%s: ssp_period: %d\n", __func__, ssp_period);
  1020. value = ((n_row << SWRM_MCP_FRAME_CTRL_BANK_ROW_CTRL_SHFT) |
  1021. (n_col << SWRM_MCP_FRAME_CTRL_BANK_COL_CTRL_SHFT) |
  1022. ((ssp_period - 1) << SWRM_MCP_FRAME_CTRL_BANK_SSP_PERIOD_SHFT));
  1023. swr_master_write(swrm, SWRM_MCP_FRAME_CTRL_BANK(bank), value);
  1024. enable_bank_switch(swrm, bank, n_row, n_col);
  1025. }
  1026. static struct swr_port_info *swrm_get_port_req(struct swrm_mports *mport,
  1027. u8 slv_port, u8 dev_num)
  1028. {
  1029. struct swr_port_info *port_req = NULL;
  1030. list_for_each_entry(port_req, &mport->port_req_list, list) {
  1031. /* Store dev_id instead of dev_num if enumeration is changed run_time */
  1032. if ((port_req->slave_port_id == slv_port)
  1033. && (port_req->dev_num == dev_num))
  1034. return port_req;
  1035. }
  1036. return NULL;
  1037. }
  1038. static bool swrm_remove_from_group(struct swr_master *master)
  1039. {
  1040. struct swr_device *swr_dev;
  1041. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  1042. bool is_removed = false;
  1043. if (!swrm)
  1044. goto end;
  1045. mutex_lock(&swrm->mlock);
  1046. if (swrm->num_rx_chs > 1) {
  1047. list_for_each_entry(swr_dev, &master->devices,
  1048. dev_list) {
  1049. swr_dev->group_id = SWR_GROUP_NONE;
  1050. master->gr_sid = 0;
  1051. }
  1052. is_removed = true;
  1053. }
  1054. mutex_unlock(&swrm->mlock);
  1055. end:
  1056. return is_removed;
  1057. }
  1058. int swrm_get_clk_div_rate(int mclk_freq, int bus_clk_freq)
  1059. {
  1060. if (!bus_clk_freq)
  1061. return mclk_freq;
  1062. if (mclk_freq == SWR_CLK_RATE_9P6MHZ) {
  1063. if (bus_clk_freq <= SWR_CLK_RATE_0P6MHZ)
  1064. bus_clk_freq = SWR_CLK_RATE_0P6MHZ;
  1065. else if (bus_clk_freq <= SWR_CLK_RATE_1P2MHZ)
  1066. bus_clk_freq = SWR_CLK_RATE_4P8MHZ;
  1067. else if (bus_clk_freq <= SWR_CLK_RATE_2P4MHZ)
  1068. bus_clk_freq = SWR_CLK_RATE_4P8MHZ;
  1069. else if(bus_clk_freq <= SWR_CLK_RATE_4P8MHZ)
  1070. bus_clk_freq = SWR_CLK_RATE_4P8MHZ;
  1071. else if(bus_clk_freq <= SWR_CLK_RATE_9P6MHZ)
  1072. bus_clk_freq = SWR_CLK_RATE_9P6MHZ;
  1073. else
  1074. bus_clk_freq = SWR_CLK_RATE_9P6MHZ;
  1075. } else if (mclk_freq == SWR_CLK_RATE_11P2896MHZ)
  1076. bus_clk_freq = SWR_CLK_RATE_11P2896MHZ;
  1077. return bus_clk_freq;
  1078. }
  1079. static int swrm_update_bus_clk(struct swr_mstr_ctrl *swrm)
  1080. {
  1081. int ret = 0;
  1082. int agg_clk = 0;
  1083. int i;
  1084. for (i = 0; i < SWR_MSTR_PORT_LEN; i++)
  1085. agg_clk += swrm->mport_cfg[i].ch_rate;
  1086. if (agg_clk)
  1087. swrm->bus_clk = swrm_get_clk_div_rate(swrm->mclk_freq,
  1088. agg_clk);
  1089. else
  1090. swrm->bus_clk = swrm->mclk_freq;
  1091. dev_dbg(swrm->dev, "%s: all_port_clk: %d, bus_clk: %d\n",
  1092. __func__, agg_clk, swrm->bus_clk);
  1093. return ret;
  1094. }
  1095. static void swrm_disable_ports(struct swr_master *master,
  1096. u8 bank)
  1097. {
  1098. u32 value;
  1099. struct swr_port_info *port_req;
  1100. int i;
  1101. struct swrm_mports *mport;
  1102. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  1103. if (!swrm) {
  1104. pr_err_ratelimited("%s: swrm is null\n", __func__);
  1105. return;
  1106. }
  1107. dev_dbg(swrm->dev, "%s: master num_port: %d\n", __func__,
  1108. master->num_port);
  1109. for (i = 0; i < SWR_MSTR_PORT_LEN ; i++) {
  1110. mport = &(swrm->mport_cfg[i]);
  1111. if (!mport->port_en)
  1112. continue;
  1113. list_for_each_entry(port_req, &mport->port_req_list, list) {
  1114. /* skip ports with no change req's*/
  1115. if (port_req->req_ch == port_req->ch_en)
  1116. continue;
  1117. swrm_cmd_fifo_wr_cmd(swrm, port_req->req_ch,
  1118. port_req->dev_num, get_cmd_id(swrm),
  1119. SWRS_DP_CHANNEL_ENABLE_BANK(port_req->slave_port_id,
  1120. bank));
  1121. dev_dbg(swrm->dev, "%s: mport :%d, reg: 0x%x\n",
  1122. __func__, i,
  1123. (SWRM_DP_PORT_CTRL_BANK((i + 1), bank)));
  1124. }
  1125. value = ((mport->req_ch)
  1126. << SWRM_DP_PORT_CTRL_EN_CHAN_SHFT);
  1127. value |= ((mport->offset2)
  1128. << SWRM_DP_PORT_CTRL_OFFSET2_SHFT);
  1129. value |= ((mport->offset1)
  1130. << SWRM_DP_PORT_CTRL_OFFSET1_SHFT);
  1131. value |= (mport->sinterval & 0xFF);
  1132. swr_master_write(swrm,
  1133. SWRM_DP_PORT_CTRL_BANK((i + 1), bank),
  1134. value);
  1135. dev_dbg(swrm->dev, "%s: mport :%d, reg: 0x%x, val: 0x%x\n",
  1136. __func__, i,
  1137. (SWRM_DP_PORT_CTRL_BANK((i + 1), bank)), value);
  1138. if (!mport->req_ch)
  1139. swrm_pcm_port_config(swrm, (i + 1),
  1140. mport->stream_type, mport->dir, false);
  1141. }
  1142. }
  1143. static void swrm_cleanup_disabled_port_reqs(struct swr_master *master)
  1144. {
  1145. struct swr_port_info *port_req, *next;
  1146. int i;
  1147. struct swrm_mports *mport;
  1148. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  1149. if (!swrm) {
  1150. pr_err_ratelimited("%s: swrm is null\n", __func__);
  1151. return;
  1152. }
  1153. dev_dbg(swrm->dev, "%s: master num_port: %d\n", __func__,
  1154. master->num_port);
  1155. for (i = 0; i < SWR_MSTR_PORT_LEN; i++) {
  1156. mport = &(swrm->mport_cfg[i]);
  1157. list_for_each_entry_safe(port_req, next,
  1158. &mport->port_req_list, list) {
  1159. /* skip ports without new ch req */
  1160. if (port_req->ch_en == port_req->req_ch)
  1161. continue;
  1162. /* remove new ch req's*/
  1163. port_req->ch_en = port_req->req_ch;
  1164. /* If no streams enabled on port, remove the port req */
  1165. if (port_req->ch_en == 0) {
  1166. list_del(&port_req->list);
  1167. kfree(port_req);
  1168. }
  1169. }
  1170. /* remove new ch req's on mport*/
  1171. mport->ch_en = mport->req_ch;
  1172. if (!(mport->ch_en)) {
  1173. mport->port_en = false;
  1174. master->port_en_mask &= ~i;
  1175. }
  1176. }
  1177. }
  1178. static u8 swrm_get_controller_offset1(struct swr_mstr_ctrl *swrm,
  1179. u8* dev_offset, u8 off1)
  1180. {
  1181. u8 offset1 = 0x0F;
  1182. int i = 0;
  1183. if (swrm->master_id == MASTER_ID_TX) {
  1184. for (i = 1; i < SWRM_NUM_AUTO_ENUM_SLAVES; i++) {
  1185. pr_debug("%s: dev offset: %d\n",
  1186. __func__, dev_offset[i]);
  1187. if (offset1 > dev_offset[i])
  1188. offset1 = dev_offset[i];
  1189. }
  1190. } else {
  1191. offset1 = off1;
  1192. }
  1193. pr_debug("%s: offset: %d\n", __func__, offset1);
  1194. return offset1;
  1195. }
  1196. static int swrm_get_uc(int bus_clk)
  1197. {
  1198. switch (bus_clk) {
  1199. case SWR_CLK_RATE_4P8MHZ:
  1200. return SWR_UC1;
  1201. case SWR_CLK_RATE_1P2MHZ:
  1202. return SWR_UC2;
  1203. case SWR_CLK_RATE_0P6MHZ:
  1204. return SWR_UC3;
  1205. case SWR_CLK_RATE_9P6MHZ:
  1206. default:
  1207. return SWR_UC0;
  1208. }
  1209. return SWR_UC0;
  1210. }
  1211. static void swrm_get_device_frame_shape(struct swr_mstr_ctrl *swrm,
  1212. struct swrm_mports *mport,
  1213. struct swr_port_info *port_req)
  1214. {
  1215. u32 uc = SWR_UC0;
  1216. u32 port_id_offset = 0;
  1217. if (swrm->master_id == MASTER_ID_TX) {
  1218. uc = swrm_get_uc(swrm->bus_clk);
  1219. port_id_offset = (port_req->dev_num - 1) *
  1220. SWR_MAX_DEV_PORT_NUM +
  1221. port_req->slave_port_id;
  1222. if (port_id_offset >= SWR_MAX_MSTR_PORT_NUM)
  1223. return;
  1224. port_req->sinterval =
  1225. ((swrm->bus_clk * 2) / port_req->ch_rate) - 1;
  1226. port_req->offset1 = swrm->pp[uc][port_id_offset].offset1;
  1227. port_req->offset2 = 0x00;
  1228. port_req->hstart = 0xFF;
  1229. port_req->hstop = 0xFF;
  1230. port_req->word_length = 0xFF;
  1231. port_req->blk_pack_mode = 0xFF;
  1232. port_req->blk_grp_count = 0xFF;
  1233. port_req->lane_ctrl = swrm->pp[uc][port_id_offset].lane_ctrl;
  1234. } else {
  1235. /* copy master port config to slave */
  1236. port_req->sinterval = mport->sinterval;
  1237. port_req->offset1 = mport->offset1;
  1238. port_req->offset2 = mport->offset2;
  1239. port_req->hstart = mport->hstart;
  1240. port_req->hstop = mport->hstop;
  1241. port_req->word_length = mport->word_length;
  1242. port_req->blk_pack_mode = mport->blk_pack_mode;
  1243. port_req->blk_grp_count = mport->blk_grp_count;
  1244. port_req->lane_ctrl = mport->lane_ctrl;
  1245. }
  1246. if (swrm->master_id == MASTER_ID_WSA) {
  1247. uc = swrm_get_uc(swrm->bus_clk);
  1248. port_id_offset = (port_req->dev_num - 1) *
  1249. SWR_MAX_DEV_PORT_NUM +
  1250. port_req->slave_port_id;
  1251. if (port_id_offset >= SWR_MAX_MSTR_PORT_NUM ||
  1252. !swrm->pp[uc][port_id_offset].offset1)
  1253. return;
  1254. port_req->offset1 = swrm->pp[uc][port_id_offset].offset1;
  1255. }
  1256. }
  1257. static void swrm_copy_data_port_config(struct swr_master *master, u8 bank)
  1258. {
  1259. u32 value = 0, slv_id = 0;
  1260. struct swr_port_info *port_req;
  1261. int i, j;
  1262. u16 sinterval = 0xFFFF;
  1263. u8 lane_ctrl = 0;
  1264. struct swrm_mports *mport;
  1265. u32 reg[SWRM_MAX_PORT_REG];
  1266. u32 val[SWRM_MAX_PORT_REG];
  1267. int len = 0;
  1268. u8 hparams = 0;
  1269. u32 controller_offset = 0;
  1270. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  1271. u8 dev_offset[SWRM_NUM_AUTO_ENUM_SLAVES];
  1272. if (!swrm) {
  1273. pr_err_ratelimited("%s: swrm is null\n", __func__);
  1274. return;
  1275. }
  1276. memset(dev_offset, 0xff, SWRM_NUM_AUTO_ENUM_SLAVES);
  1277. dev_dbg(swrm->dev, "%s: master num_port: %d\n", __func__,
  1278. master->num_port);
  1279. for (i = 0; i < SWR_MSTR_PORT_LEN; i++) {
  1280. mport = &(swrm->mport_cfg[i]);
  1281. if (!mport->port_en)
  1282. continue;
  1283. swrm_pcm_port_config(swrm, (i + 1),
  1284. mport->stream_type, mport->dir, true);
  1285. j = 0;
  1286. lane_ctrl = 0;
  1287. sinterval = 0xFFFF;
  1288. list_for_each_entry(port_req, &mport->port_req_list, list) {
  1289. if (!port_req->dev_num)
  1290. continue;
  1291. j++;
  1292. slv_id = port_req->slave_port_id;
  1293. /* Assumption: If different channels in the same port
  1294. * on master is enabled for different slaves, then each
  1295. * slave offset should be configured differently.
  1296. */
  1297. swrm_get_device_frame_shape(swrm, mport, port_req);
  1298. if (j == 1) {
  1299. sinterval = port_req->sinterval;
  1300. lane_ctrl = port_req->lane_ctrl;
  1301. } else if (sinterval != port_req->sinterval ||
  1302. lane_ctrl != port_req->lane_ctrl) {
  1303. dev_err_ratelimited(swrm->dev,
  1304. "%s:slaves/slave ports attaching to mport%d"\
  1305. " are not using same SI or data lane, update slave tables,"\
  1306. "bailing out without setting port config\n",
  1307. __func__, i);
  1308. return;
  1309. }
  1310. reg[len] = SWRM_CMD_FIFO_WR_CMD(swrm->ee_val);
  1311. val[len++] = SWR_REG_VAL_PACK(port_req->req_ch,
  1312. port_req->dev_num, get_cmd_id(swrm),
  1313. SWRS_DP_CHANNEL_ENABLE_BANK(slv_id,
  1314. bank));
  1315. reg[len] = SWRM_CMD_FIFO_WR_CMD(swrm->ee_val);
  1316. val[len++] = SWR_REG_VAL_PACK(
  1317. port_req->sinterval & 0xFF,
  1318. port_req->dev_num, get_cmd_id(swrm),
  1319. SWRS_DP_SAMPLE_CONTROL_1_BANK(slv_id,
  1320. bank));
  1321. /* Only wite MSB if SI > 0xFF */
  1322. if (port_req->sinterval > 0xFF) {
  1323. reg[len] = SWRM_CMD_FIFO_WR_CMD(swrm->ee_val);
  1324. val[len++] = SWR_REG_VAL_PACK(
  1325. (port_req->sinterval >> 8) & 0xFF,
  1326. port_req->dev_num, get_cmd_id(swrm),
  1327. SWRS_DP_SAMPLE_CONTROL_2_BANK(slv_id,
  1328. bank));
  1329. }
  1330. if (port_req->offset1 != SWR_INVALID_PARAM) {
  1331. reg[len] = SWRM_CMD_FIFO_WR_CMD(swrm->ee_val);
  1332. val[len++] = SWR_REG_VAL_PACK(port_req->offset1,
  1333. port_req->dev_num, get_cmd_id(swrm),
  1334. SWRS_DP_OFFSET_CONTROL_1_BANK(slv_id,
  1335. bank));
  1336. }
  1337. if (port_req->offset2 != SWR_INVALID_PARAM) {
  1338. reg[len] = SWRM_CMD_FIFO_WR_CMD(swrm->ee_val);
  1339. val[len++] = SWR_REG_VAL_PACK(port_req->offset2,
  1340. port_req->dev_num, get_cmd_id(swrm),
  1341. SWRS_DP_OFFSET_CONTROL_2_BANK(
  1342. slv_id, bank));
  1343. }
  1344. if (port_req->hstart != SWR_INVALID_PARAM
  1345. && port_req->hstop != SWR_INVALID_PARAM) {
  1346. hparams = (port_req->hstart << 4) |
  1347. port_req->hstop;
  1348. reg[len] = SWRM_CMD_FIFO_WR_CMD(swrm->ee_val);
  1349. val[len++] = SWR_REG_VAL_PACK(hparams,
  1350. port_req->dev_num, get_cmd_id(swrm),
  1351. SWRS_DP_HCONTROL_BANK(slv_id,
  1352. bank));
  1353. }
  1354. if (port_req->word_length != SWR_INVALID_PARAM) {
  1355. reg[len] = SWRM_CMD_FIFO_WR_CMD(swrm->ee_val);
  1356. val[len++] =
  1357. SWR_REG_VAL_PACK(port_req->word_length,
  1358. port_req->dev_num, get_cmd_id(swrm),
  1359. SWRS_DP_BLOCK_CONTROL_1(slv_id));
  1360. }
  1361. if (port_req->blk_pack_mode != SWR_INVALID_PARAM) {
  1362. reg[len] = SWRM_CMD_FIFO_WR_CMD(swrm->ee_val);
  1363. val[len++] =
  1364. SWR_REG_VAL_PACK(
  1365. port_req->blk_pack_mode,
  1366. port_req->dev_num, get_cmd_id(swrm),
  1367. SWRS_DP_BLOCK_CONTROL_3_BANK(slv_id,
  1368. bank));
  1369. }
  1370. if (port_req->blk_grp_count != SWR_INVALID_PARAM) {
  1371. reg[len] = SWRM_CMD_FIFO_WR_CMD(swrm->ee_val);
  1372. val[len++] =
  1373. SWR_REG_VAL_PACK(
  1374. port_req->blk_grp_count,
  1375. port_req->dev_num, get_cmd_id(swrm),
  1376. SWRS_DP_BLOCK_CONTROL_2_BANK(
  1377. slv_id, bank));
  1378. }
  1379. if (port_req->lane_ctrl != SWR_INVALID_PARAM) {
  1380. reg[len] = SWRM_CMD_FIFO_WR_CMD(swrm->ee_val);
  1381. val[len++] =
  1382. SWR_REG_VAL_PACK(port_req->lane_ctrl,
  1383. port_req->dev_num, get_cmd_id(swrm),
  1384. SWRS_DP_LANE_CONTROL_BANK(
  1385. slv_id, bank));
  1386. }
  1387. port_req->ch_en = port_req->req_ch;
  1388. dev_offset[port_req->dev_num] = port_req->offset1;
  1389. }
  1390. if (swrm->master_id == MASTER_ID_TX) {
  1391. mport->sinterval = sinterval;
  1392. mport->lane_ctrl = lane_ctrl;
  1393. }
  1394. value = ((mport->req_ch)
  1395. << SWRM_DP_PORT_CTRL_EN_CHAN_SHFT);
  1396. if (mport->offset2 != SWR_INVALID_PARAM)
  1397. value |= ((mport->offset2)
  1398. << SWRM_DP_PORT_CTRL_OFFSET2_SHFT);
  1399. controller_offset = (swrm_get_controller_offset1(swrm,
  1400. dev_offset, mport->offset1));
  1401. value |= (controller_offset << SWRM_DP_PORT_CTRL_OFFSET1_SHFT);
  1402. mport->offset1 = controller_offset;
  1403. value |= (mport->sinterval & 0xFF);
  1404. reg[len] = SWRM_DP_PORT_CTRL_BANK((i + 1), bank);
  1405. val[len++] = value;
  1406. dev_dbg(swrm->dev, "%s: mport :%d, reg: 0x%x, val: 0x%x\n",
  1407. __func__, (i + 1),
  1408. (SWRM_DP_PORT_CTRL_BANK((i + 1), bank)), value);
  1409. reg[len] = SWRM_DP_SAMPLECTRL2_BANK((i + 1), bank);
  1410. val[len++] = ((mport->sinterval >> 8) & 0xFF);
  1411. if (mport->lane_ctrl != SWR_INVALID_PARAM) {
  1412. reg[len] = SWRM_DP_PORT_CTRL_2_BANK((i + 1), bank);
  1413. val[len++] = mport->lane_ctrl;
  1414. }
  1415. if (mport->word_length != SWR_INVALID_PARAM) {
  1416. reg[len] = SWRM_DP_BLOCK_CTRL_1((i + 1));
  1417. val[len++] = mport->word_length;
  1418. }
  1419. if (mport->blk_grp_count != SWR_INVALID_PARAM) {
  1420. reg[len] = SWRM_DP_BLOCK_CTRL2_BANK((i + 1), bank);
  1421. val[len++] = mport->blk_grp_count;
  1422. }
  1423. if (mport->hstart != SWR_INVALID_PARAM
  1424. && mport->hstop != SWR_INVALID_PARAM) {
  1425. reg[len] = SWRM_DP_PORT_HCTRL_BANK((i + 1), bank);
  1426. hparams = (mport->hstop << 4) | mport->hstart;
  1427. val[len++] = hparams;
  1428. } else {
  1429. reg[len] = SWRM_DP_PORT_HCTRL_BANK((i + 1), bank);
  1430. hparams = (SWR_HSTOP_MAX_VAL << 4) | SWR_HSTART_MIN_VAL;
  1431. val[len++] = hparams;
  1432. }
  1433. if (mport->blk_pack_mode != SWR_INVALID_PARAM) {
  1434. reg[len] = SWRM_DP_BLOCK_CTRL3_BANK((i + 1), bank);
  1435. val[len++] = mport->blk_pack_mode;
  1436. }
  1437. mport->ch_en = mport->req_ch;
  1438. }
  1439. swrm_reg_dump(swrm, reg, val, len, __func__);
  1440. swr_master_bulk_write(swrm, reg, val, len);
  1441. }
  1442. static void swrm_apply_port_config(struct swr_master *master)
  1443. {
  1444. u8 bank;
  1445. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  1446. if (!swrm) {
  1447. pr_err_ratelimited("%s: Invalid handle to swr controller\n",
  1448. __func__);
  1449. return;
  1450. }
  1451. bank = get_inactive_bank_num(swrm);
  1452. dev_dbg(swrm->dev, "%s: enter bank: %d master_ports: %d\n",
  1453. __func__, bank, master->num_port);
  1454. if (!swrm->disable_div2_clk_switch)
  1455. swrm_cmd_fifo_wr_cmd(swrm, 0x01, 0xF, get_cmd_id(swrm),
  1456. SWRS_SCP_HOST_CLK_DIV2_CTL_BANK(bank));
  1457. swrm_copy_data_port_config(master, bank);
  1458. }
  1459. static int swrm_slvdev_datapath_control(struct swr_master *master, bool enable)
  1460. {
  1461. u8 bank;
  1462. u32 value = 0, n_row = 0, n_col = 0;
  1463. u32 row = 0, col = 0;
  1464. int bus_clk_div_factor;
  1465. int ret;
  1466. u8 ssp_period = 0;
  1467. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  1468. int mask = (SWRM_ROW_CTRL_MASK | SWRM_COL_CTRL_MASK |
  1469. SWRM_CLK_DIV_MASK | SWRM_SSP_PERIOD_MASK);
  1470. u8 inactive_bank;
  1471. int frame_sync = SWRM_FRAME_SYNC_SEL;
  1472. if (!swrm) {
  1473. pr_err_ratelimited("%s: swrm is null\n", __func__);
  1474. return -EFAULT;
  1475. }
  1476. mutex_lock(&swrm->mlock);
  1477. /*
  1478. * During disable if master is already down, which implies an ssr/pdr
  1479. * scenario, just mark ports as disabled and exit
  1480. */
  1481. if (swrm->state == SWR_MSTR_SSR && !enable) {
  1482. if (!test_bit(DISABLE_PENDING, &swrm->port_req_pending)) {
  1483. dev_dbg(swrm->dev, "%s:No pending disconn port req\n",
  1484. __func__);
  1485. goto exit;
  1486. }
  1487. clear_bit(DISABLE_PENDING, &swrm->port_req_pending);
  1488. swrm_cleanup_disabled_port_reqs(master);
  1489. if (!swrm_is_port_en(master)) {
  1490. dev_dbg(&master->dev, "%s: pm_runtime auto suspend triggered\n",
  1491. __func__);
  1492. pm_runtime_mark_last_busy(swrm->dev);
  1493. pm_runtime_put_autosuspend(swrm->dev);
  1494. }
  1495. goto exit;
  1496. }
  1497. bank = get_inactive_bank_num(swrm);
  1498. if (enable) {
  1499. if (!test_bit(ENABLE_PENDING, &swrm->port_req_pending)) {
  1500. dev_dbg(swrm->dev, "%s:No pending connect port req\n",
  1501. __func__);
  1502. goto exit;
  1503. }
  1504. clear_bit(ENABLE_PENDING, &swrm->port_req_pending);
  1505. ret = swrm_get_port_config(swrm);
  1506. if (ret) {
  1507. /* cannot accommodate ports */
  1508. swrm_cleanup_disabled_port_reqs(master);
  1509. mutex_unlock(&swrm->mlock);
  1510. return -EINVAL;
  1511. }
  1512. swr_master_write(swrm, SWRM_INTERRUPT_EN(swrm->ee_val),
  1513. SWRM_INTERRUPT_STATUS_MASK);
  1514. /* apply the new port config*/
  1515. swrm_apply_port_config(master);
  1516. } else {
  1517. if (!test_bit(DISABLE_PENDING, &swrm->port_req_pending)) {
  1518. dev_dbg(swrm->dev, "%s:No pending disconn port req\n",
  1519. __func__);
  1520. goto exit;
  1521. }
  1522. clear_bit(DISABLE_PENDING, &swrm->port_req_pending);
  1523. swrm_disable_ports(master, bank);
  1524. }
  1525. dev_dbg(swrm->dev, "%s: enable: %d, cfg_devs: %d freq %d\n",
  1526. __func__, enable, swrm->num_cfg_devs, swrm->mclk_freq);
  1527. if (enable) {
  1528. /* set col = 16 */
  1529. n_col = SWR_MAX_COL;
  1530. col = SWRM_COL_16;
  1531. if (swrm->bus_clk == MCLK_FREQ_LP) {
  1532. n_col = SWR_MIN_COL;
  1533. col = SWRM_COL_02;
  1534. }
  1535. } else {
  1536. /*
  1537. * Do not change to col = 2 if there are still active ports
  1538. */
  1539. if (!master->num_port) {
  1540. n_col = SWR_MIN_COL;
  1541. col = SWRM_COL_02;
  1542. } else {
  1543. n_col = SWR_MAX_COL;
  1544. col = SWRM_COL_16;
  1545. }
  1546. }
  1547. /* Use default 50 * x, frame shape. Change based on mclk */
  1548. if (swrm->mclk_freq == MCLK_FREQ_NATIVE) {
  1549. dev_dbg(swrm->dev, "setting 64 x %d frameshape\n", col);
  1550. n_row = SWR_ROW_64;
  1551. row = SWRM_ROW_64;
  1552. frame_sync = SWRM_FRAME_SYNC_SEL_NATIVE;
  1553. } else {
  1554. dev_dbg(swrm->dev, "setting 50 x %d frameshape\n", col);
  1555. n_row = SWR_ROW_50;
  1556. row = SWRM_ROW_50;
  1557. frame_sync = SWRM_FRAME_SYNC_SEL;
  1558. }
  1559. ssp_period = swrm_get_ssp_period(swrm, row, col, frame_sync);
  1560. bus_clk_div_factor = swrm_get_clk_div(swrm->mclk_freq, swrm->bus_clk);
  1561. dev_dbg(swrm->dev, "%s: ssp_period: %d, bus_clk_div:%d \n", __func__,
  1562. ssp_period, bus_clk_div_factor);
  1563. value = swr_master_read(swrm, SWRM_MCP_FRAME_CTRL_BANK(bank));
  1564. value &= (~mask);
  1565. value |= ((n_row << SWRM_MCP_FRAME_CTRL_BANK_ROW_CTRL_SHFT) |
  1566. (n_col << SWRM_MCP_FRAME_CTRL_BANK_COL_CTRL_SHFT) |
  1567. (bus_clk_div_factor <<
  1568. SWRM_MCP_FRAME_CTRL_BANK_CLK_DIV_VALUE_SHFT) |
  1569. ((ssp_period - 1) << SWRM_MCP_FRAME_CTRL_BANK_SSP_PERIOD_SHFT));
  1570. swr_master_write(swrm, SWRM_MCP_FRAME_CTRL_BANK(bank), value);
  1571. dev_dbg(swrm->dev, "%s: regaddr: 0x%x, value: 0x%x\n", __func__,
  1572. SWRM_MCP_FRAME_CTRL_BANK(bank), value);
  1573. enable_bank_switch(swrm, bank, n_row, n_col);
  1574. inactive_bank = bank ? 0 : 1;
  1575. if (enable)
  1576. swrm_copy_data_port_config(master, inactive_bank);
  1577. else {
  1578. swrm_disable_ports(master, inactive_bank);
  1579. swrm_cleanup_disabled_port_reqs(master);
  1580. }
  1581. if (!swrm_is_port_en(master)) {
  1582. dev_dbg(&master->dev, "%s: pm_runtime auto suspend triggered\n",
  1583. __func__);
  1584. pm_runtime_mark_last_busy(swrm->dev);
  1585. if (!enable)
  1586. pm_runtime_set_autosuspend_delay(swrm->dev, 80);
  1587. pm_runtime_put_autosuspend(swrm->dev);
  1588. }
  1589. exit:
  1590. mutex_unlock(&swrm->mlock);
  1591. return 0;
  1592. }
  1593. static int swrm_connect_port(struct swr_master *master,
  1594. struct swr_params *portinfo)
  1595. {
  1596. int i;
  1597. struct swr_port_info *port_req;
  1598. int ret = 0;
  1599. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  1600. struct swrm_mports *mport;
  1601. u8 mstr_port_id, mstr_ch_msk;
  1602. dev_dbg(&master->dev, "%s: enter\n", __func__);
  1603. if (!portinfo)
  1604. return -EINVAL;
  1605. if (!swrm) {
  1606. dev_err_ratelimited(&master->dev,
  1607. "%s: Invalid handle to swr controller\n",
  1608. __func__);
  1609. return -EINVAL;
  1610. }
  1611. mutex_lock(&swrm->mlock);
  1612. mutex_lock(&swrm->devlock);
  1613. if (!swrm->dev_up) {
  1614. swr_port_response(master, portinfo->tid);
  1615. mutex_unlock(&swrm->devlock);
  1616. mutex_unlock(&swrm->mlock);
  1617. return -EINVAL;
  1618. }
  1619. mutex_unlock(&swrm->devlock);
  1620. if (!swrm_is_port_en(master))
  1621. pm_runtime_get_sync(swrm->dev);
  1622. for (i = 0; i < portinfo->num_port; i++) {
  1623. ret = swrm_get_master_port(swrm, &mstr_port_id, &mstr_ch_msk,
  1624. portinfo->port_type[i],
  1625. portinfo->port_id[i]);
  1626. if (ret) {
  1627. dev_err_ratelimited(&master->dev,
  1628. "%s: mstr portid for slv port %d not found\n",
  1629. __func__, portinfo->port_id[i]);
  1630. goto port_fail;
  1631. }
  1632. mport = &(swrm->mport_cfg[mstr_port_id]);
  1633. /* get port req */
  1634. port_req = swrm_get_port_req(mport, portinfo->port_id[i],
  1635. portinfo->dev_num);
  1636. if (!port_req) {
  1637. dev_dbg(&master->dev, "%s: new req:port id %d dev %d\n",
  1638. __func__, portinfo->port_id[i],
  1639. portinfo->dev_num);
  1640. port_req = kzalloc(sizeof(struct swr_port_info),
  1641. GFP_KERNEL);
  1642. if (!port_req) {
  1643. ret = -ENOMEM;
  1644. goto mem_fail;
  1645. }
  1646. port_req->dev_num = portinfo->dev_num;
  1647. port_req->slave_port_id = portinfo->port_id[i];
  1648. port_req->num_ch = portinfo->num_ch[i];
  1649. port_req->ch_rate = portinfo->ch_rate[i];
  1650. port_req->ch_en = 0;
  1651. port_req->master_port_id = mstr_port_id;
  1652. list_add(&port_req->list, &mport->port_req_list);
  1653. }
  1654. port_req->req_ch |= portinfo->ch_en[i];
  1655. dev_dbg(&master->dev,
  1656. "%s: mstr port %d, slv port %d ch_rate %d num_ch %d\n",
  1657. __func__, port_req->master_port_id,
  1658. port_req->slave_port_id, port_req->ch_rate,
  1659. port_req->num_ch);
  1660. /* Put the port req on master port */
  1661. mport = &(swrm->mport_cfg[mstr_port_id]);
  1662. mport->port_en = true;
  1663. mport->req_ch |= mstr_ch_msk;
  1664. master->port_en_mask |= (1 << mstr_port_id);
  1665. if (swrm->clk_stop_mode0_supp &&
  1666. swrm->dynamic_port_map_supported) {
  1667. mport->ch_rate += portinfo->ch_rate[i];
  1668. swrm_update_bus_clk(swrm);
  1669. } else {
  1670. /*
  1671. * Fallback to assign slave port ch_rate
  1672. * as master port uses same ch_rate as slave
  1673. * unlike soundwire TX master ports where
  1674. * unified ports and multiple slave port
  1675. * channels can attach to same master port
  1676. */
  1677. mport->ch_rate = portinfo->ch_rate[i];
  1678. }
  1679. }
  1680. master->num_port += portinfo->num_port;
  1681. set_bit(ENABLE_PENDING, &swrm->port_req_pending);
  1682. swr_port_response(master, portinfo->tid);
  1683. mutex_unlock(&swrm->mlock);
  1684. return 0;
  1685. port_fail:
  1686. mem_fail:
  1687. swr_port_response(master, portinfo->tid);
  1688. /* cleanup port reqs in error condition */
  1689. swrm_cleanup_disabled_port_reqs(master);
  1690. mutex_unlock(&swrm->mlock);
  1691. return ret;
  1692. }
  1693. static int swrm_disconnect_port(struct swr_master *master,
  1694. struct swr_params *portinfo)
  1695. {
  1696. int i, ret = 0;
  1697. struct swr_port_info *port_req;
  1698. struct swrm_mports *mport;
  1699. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  1700. u8 mstr_port_id, mstr_ch_mask;
  1701. if (!swrm) {
  1702. dev_err_ratelimited(&master->dev,
  1703. "%s: Invalid handle to swr controller\n",
  1704. __func__);
  1705. return -EINVAL;
  1706. }
  1707. if (!portinfo) {
  1708. dev_err_ratelimited(&master->dev, "%s: portinfo is NULL\n", __func__);
  1709. return -EINVAL;
  1710. }
  1711. mutex_lock(&swrm->mlock);
  1712. for (i = 0; i < portinfo->num_port; i++) {
  1713. ret = swrm_get_master_port(swrm, &mstr_port_id, &mstr_ch_mask,
  1714. portinfo->port_type[i], portinfo->port_id[i]);
  1715. if (ret) {
  1716. dev_err_ratelimited(&master->dev,
  1717. "%s: mstr portid for slv port %d not found\n",
  1718. __func__, portinfo->port_id[i]);
  1719. goto err;
  1720. }
  1721. mport = &(swrm->mport_cfg[mstr_port_id]);
  1722. /* get port req */
  1723. port_req = swrm_get_port_req(mport, portinfo->port_id[i],
  1724. portinfo->dev_num);
  1725. if (!port_req) {
  1726. dev_err_ratelimited(&master->dev, "%s:port not enabled : port %d\n",
  1727. __func__, portinfo->port_id[i]);
  1728. goto err;
  1729. }
  1730. port_req->req_ch &= ~portinfo->ch_en[i];
  1731. mport->req_ch &= ~mstr_ch_mask;
  1732. if (swrm->clk_stop_mode0_supp &&
  1733. swrm->dynamic_port_map_supported &&
  1734. !mport->req_ch) {
  1735. mport->ch_rate = 0;
  1736. swrm_update_bus_clk(swrm);
  1737. }
  1738. }
  1739. if (master->num_port <= portinfo->num_port)
  1740. master->num_port = 0;
  1741. else
  1742. master->num_port -= portinfo->num_port;
  1743. set_bit(DISABLE_PENDING, &swrm->port_req_pending);
  1744. swr_port_response(master, portinfo->tid);
  1745. mutex_unlock(&swrm->mlock);
  1746. return 0;
  1747. err:
  1748. swr_port_response(master, portinfo->tid);
  1749. mutex_unlock(&swrm->mlock);
  1750. return -EINVAL;
  1751. }
  1752. static int swrm_find_alert_slave(struct swr_mstr_ctrl *swrm,
  1753. int status, u8 *devnum)
  1754. {
  1755. int i;
  1756. bool found = false;
  1757. for (i = 0; i < (swrm->num_dev + 1); i++) {
  1758. if ((status & SWRM_MCP_SLV_STATUS_MASK) == SWR_ALERT) {
  1759. *devnum = i;
  1760. found = true;
  1761. break;
  1762. }
  1763. status >>= 2;
  1764. }
  1765. if (found)
  1766. return 0;
  1767. else
  1768. return -EINVAL;
  1769. }
  1770. static void swrm_enable_slave_irq(struct swr_mstr_ctrl *swrm)
  1771. {
  1772. int i;
  1773. int status = 0;
  1774. u32 temp;
  1775. status = swr_master_read(swrm, SWRM_MCP_SLV_STATUS);
  1776. if (!status) {
  1777. dev_dbg_ratelimited(swrm->dev, "%s: slaves status is 0x%x\n",
  1778. __func__, status);
  1779. return;
  1780. }
  1781. dev_dbg(swrm->dev, "%s: slave status: 0x%x\n", __func__, status);
  1782. for (i = 0; i < (swrm->num_dev + 1); i++) {
  1783. if (status & SWRM_MCP_SLV_STATUS_MASK) {
  1784. if (!swrm->clk_stop_wakeup) {
  1785. swrm_cmd_fifo_rd_cmd(swrm, &temp, i,
  1786. get_cmd_id(swrm), SWRS_SCP_INT_STATUS_CLEAR_1, 1);
  1787. swrm_cmd_fifo_wr_cmd(swrm, 0xFF, i,
  1788. get_cmd_id(swrm), SWRS_SCP_INT_STATUS_CLEAR_1);
  1789. }
  1790. swrm_cmd_fifo_wr_cmd(swrm, 0x4, i, get_cmd_id(swrm),
  1791. SWRS_SCP_INT_STATUS_MASK_1);
  1792. }
  1793. status >>= 2;
  1794. }
  1795. }
  1796. static int swrm_check_slave_change_status(struct swr_mstr_ctrl *swrm,
  1797. int status, u8 *devnum)
  1798. {
  1799. int i;
  1800. int new_sts = status;
  1801. int ret = SWR_NOT_PRESENT;
  1802. if (status != swrm->slave_status) {
  1803. for (i = 0; i < (swrm->num_dev + 1); i++) {
  1804. if ((status & SWRM_MCP_SLV_STATUS_MASK) !=
  1805. (swrm->slave_status & SWRM_MCP_SLV_STATUS_MASK)) {
  1806. ret = (status & SWRM_MCP_SLV_STATUS_MASK);
  1807. *devnum = i;
  1808. break;
  1809. }
  1810. status >>= 2;
  1811. swrm->slave_status >>= 2;
  1812. }
  1813. swrm->slave_status = new_sts;
  1814. }
  1815. return ret;
  1816. }
  1817. static irqreturn_t swr_mstr_interrupt(int irq, void *dev)
  1818. {
  1819. struct swr_mstr_ctrl *swrm = dev;
  1820. u32 value, intr_sts, intr_sts_masked;
  1821. u32 temp = 0;
  1822. u32 status, chg_sts, i;
  1823. u8 devnum = 0;
  1824. int ret = IRQ_HANDLED;
  1825. struct swr_device *swr_dev;
  1826. struct swr_master *mstr = &swrm->master;
  1827. int retry = 5;
  1828. trace_printk("%s enter\n", __func__);
  1829. if (unlikely(swrm_lock_sleep(swrm) == false)) {
  1830. dev_err_ratelimited(swrm->dev, "%s Failed to hold suspend\n", __func__);
  1831. return IRQ_NONE;
  1832. }
  1833. mutex_lock(&swrm->reslock);
  1834. if (swrm_request_hw_vote(swrm, LPASS_HW_CORE, true)) {
  1835. ret = IRQ_NONE;
  1836. goto exit;
  1837. }
  1838. if (swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, true)) {
  1839. ret = IRQ_NONE;
  1840. goto err_audio_hw_vote;
  1841. }
  1842. ret = swrm_clk_request(swrm, true);
  1843. if (ret) {
  1844. dev_err_ratelimited(dev, "%s: swrm clk failed\n", __func__);
  1845. ret = IRQ_NONE;
  1846. goto err_audio_core_vote;
  1847. }
  1848. mutex_unlock(&swrm->reslock);
  1849. intr_sts = swr_master_read(swrm, SWRM_INTERRUPT_STATUS(swrm->ee_val));
  1850. intr_sts_masked = intr_sts & swrm->intr_mask;
  1851. dev_dbg(swrm->dev, "%s: status: 0x%x \n", __func__, intr_sts_masked);
  1852. trace_printk("%s: status: 0x%x \n", __func__, intr_sts_masked);
  1853. handle_irq:
  1854. for (i = 0; i < SWRM_INTERRUPT_MAX; i++) {
  1855. value = intr_sts_masked & (1 << i);
  1856. if (!value)
  1857. continue;
  1858. switch (value) {
  1859. case SWRM_INTERRUPT_STATUS_SLAVE_PEND_IRQ:
  1860. dev_dbg(swrm->dev, "%s: Trigger irq to slave device\n",
  1861. __func__);
  1862. status = swr_master_read(swrm, SWRM_MCP_SLV_STATUS);
  1863. ret = swrm_find_alert_slave(swrm, status, &devnum);
  1864. if (ret) {
  1865. dev_err_ratelimited(swrm->dev,
  1866. "%s: no slave alert found.spurious interrupt\n",
  1867. __func__);
  1868. break;
  1869. }
  1870. swrm_cmd_fifo_rd_cmd(swrm, &temp, devnum,
  1871. get_cmd_id(swrm),
  1872. SWRS_SCP_INT_STATUS_CLEAR_1, 1);
  1873. swrm_cmd_fifo_wr_cmd(swrm, 0x4, devnum,
  1874. get_cmd_id(swrm),
  1875. SWRS_SCP_INT_STATUS_CLEAR_1);
  1876. swrm_cmd_fifo_wr_cmd(swrm, 0x0, devnum,
  1877. get_cmd_id(swrm),
  1878. SWRS_SCP_INT_STATUS_CLEAR_1);
  1879. list_for_each_entry(swr_dev, &mstr->devices, dev_list) {
  1880. if (swr_dev->dev_num != devnum)
  1881. continue;
  1882. if (swr_dev->slave_irq) {
  1883. do {
  1884. swr_dev->slave_irq_pending = 0;
  1885. handle_nested_irq(
  1886. irq_find_mapping(
  1887. swr_dev->slave_irq, 0));
  1888. trace_printk("%s: slave_irq_pending\n", __func__);
  1889. } while (swr_dev->slave_irq_pending && swrm->dev_up);
  1890. }
  1891. }
  1892. break;
  1893. case SWRM_INTERRUPT_STATUS_NEW_SLAVE_ATTACHED:
  1894. dev_dbg(swrm->dev, "%s: SWR new slave attached\n",
  1895. __func__);
  1896. break;
  1897. case SWRM_INTERRUPT_STATUS_CHANGE_ENUM_SLAVE_STATUS:
  1898. status = swr_master_read(swrm, SWRM_MCP_SLV_STATUS);
  1899. trace_printk("%s: ENUM_SLAVE_STATUS 0x%x, slave_status 0x%x\n", __func__,
  1900. status, swrm->slave_status);
  1901. swrm_enable_slave_irq(swrm);
  1902. if (status == swrm->slave_status) {
  1903. dev_dbg(swrm->dev,
  1904. "%s: No change in slave status: 0x%x\n",
  1905. __func__, status);
  1906. break;
  1907. }
  1908. chg_sts = swrm_check_slave_change_status(swrm, status,
  1909. &devnum);
  1910. switch (chg_sts) {
  1911. case SWR_NOT_PRESENT:
  1912. dev_dbg(swrm->dev,
  1913. "%s: device %d got detached\n",
  1914. __func__, devnum);
  1915. if (devnum == 0) {
  1916. /*
  1917. * enable host irq if device 0 detached
  1918. * as hw will mask host_irq at slave
  1919. * but will not unmask it afterwards.
  1920. */
  1921. swrm->enable_slave_irq = true;
  1922. }
  1923. break;
  1924. case SWR_ATTACHED_OK:
  1925. dev_dbg(swrm->dev,
  1926. "%s: device %d got attached\n",
  1927. __func__, devnum);
  1928. /* enable host irq from slave device*/
  1929. swrm->enable_slave_irq = true;
  1930. break;
  1931. case SWR_ALERT:
  1932. dev_dbg(swrm->dev,
  1933. "%s: device %d has pending interrupt\n",
  1934. __func__, devnum);
  1935. break;
  1936. }
  1937. break;
  1938. case SWRM_INTERRUPT_STATUS_MASTER_CLASH_DET:
  1939. dev_err_ratelimited(swrm->dev,
  1940. "%s: SWR bus clsh detected\n",
  1941. __func__);
  1942. swrm->intr_mask &=
  1943. ~SWRM_INTERRUPT_STATUS_MASTER_CLASH_DET;
  1944. swr_master_write(swrm,
  1945. SWRM_INTERRUPT_EN(swrm->ee_val),
  1946. swrm->intr_mask);
  1947. break;
  1948. case SWRM_INTERRUPT_STATUS_RD_FIFO_OVERFLOW:
  1949. value = swr_master_read(swrm, SWRM_CMD_FIFO_STATUS(swrm->ee_val));
  1950. dev_err_ratelimited(swrm->dev,
  1951. "%s: SWR read FIFO overflow fifo status %x\n",
  1952. __func__, value);
  1953. break;
  1954. case SWRM_INTERRUPT_STATUS_RD_FIFO_UNDERFLOW:
  1955. value = swr_master_read(swrm, SWRM_CMD_FIFO_STATUS(swrm->ee_val));
  1956. dev_err_ratelimited(swrm->dev,
  1957. "%s: SWR read FIFO underflow fifo status %x\n",
  1958. __func__, value);
  1959. break;
  1960. case SWRM_INTERRUPT_STATUS_WR_CMD_FIFO_OVERFLOW:
  1961. value = swr_master_read(swrm, SWRM_CMD_FIFO_STATUS(swrm->ee_val));
  1962. dev_err_ratelimited(swrm->dev,
  1963. "%s: SWR write FIFO overflow fifo status %x\n",
  1964. __func__, value);
  1965. break;
  1966. case SWRM_INTERRUPT_STATUS_CMD_ERROR:
  1967. value = swr_master_read(swrm, SWRM_CMD_FIFO_STATUS(swrm->ee_val));
  1968. dev_err_ratelimited(swrm->dev,
  1969. "%s: SWR CMD error, fifo status 0x%x, flushing fifo\n",
  1970. __func__, value);
  1971. swr_master_write(swrm, SWRM_CMD_FIFO_CMD, 0x1);
  1972. break;
  1973. case SWRM_INTERRUPT_STATUS_DOUT_PORT_COLLISION:
  1974. dev_err_ratelimited(swrm->dev,
  1975. "%s: SWR Port collision detected\n",
  1976. __func__);
  1977. swrm->intr_mask &= ~SWRM_INTERRUPT_STATUS_DOUT_PORT_COLLISION;
  1978. swr_master_write(swrm,
  1979. SWRM_INTERRUPT_EN(swrm->ee_val),
  1980. swrm->intr_mask);
  1981. break;
  1982. case SWRM_INTERRUPT_STATUS_READ_EN_RD_VALID_MISMATCH:
  1983. dev_dbg(swrm->dev,
  1984. "%s: SWR read enable valid mismatch\n",
  1985. __func__);
  1986. swrm->intr_mask &=
  1987. ~SWRM_INTERRUPT_STATUS_READ_EN_RD_VALID_MISMATCH;
  1988. swr_master_write(swrm,
  1989. SWRM_INTERRUPT_EN(swrm->ee_val),
  1990. swrm->intr_mask);
  1991. break;
  1992. case SWRM_INTERRUPT_STATUS_SPECIAL_CMD_ID_FINISHED:
  1993. complete(&swrm->broadcast);
  1994. dev_dbg(swrm->dev, "%s: SWR cmd id finished\n",
  1995. __func__);
  1996. break;
  1997. case SWRM_INTERRUPT_STATUS_AUTO_ENUM_FAILED:
  1998. swr_master_write(swrm, SWRM_ENUMERATOR_CFG, 0);
  1999. while (swr_master_read(swrm, SWRM_ENUMERATOR_STATUS)) {
  2000. if (!retry) {
  2001. dev_dbg(swrm->dev,
  2002. "%s: ENUM status is not idle\n",
  2003. __func__);
  2004. break;
  2005. }
  2006. retry--;
  2007. }
  2008. swr_master_write(swrm, SWRM_ENUMERATOR_CFG, 1);
  2009. break;
  2010. case SWRM_INTERRUPT_STATUS_AUTO_ENUM_TABLE_IS_FULL:
  2011. break;
  2012. case SWRM_INTERRUPT_STATUS_BUS_RESET_FINISHED:
  2013. swrm_check_link_status(swrm, 0x1);
  2014. break;
  2015. case SWRM_INTERRUPT_STATUS_CLK_STOP_FINISHED:
  2016. break;
  2017. case SWRM_INTERRUPT_STATUS_EXT_CLK_STOP_WAKEUP:
  2018. if (swrm->state == SWR_MSTR_UP) {
  2019. dev_dbg(swrm->dev,
  2020. "%s:SWR Master is already up\n",
  2021. __func__);
  2022. } else {
  2023. dev_err_ratelimited(swrm->dev,
  2024. "%s: SWR wokeup during clock stop\n",
  2025. __func__);
  2026. /* It might be possible the slave device gets
  2027. * reset and slave interrupt gets missed. So
  2028. * re-enable Host IRQ and process slave pending
  2029. * interrupts, if any.
  2030. */
  2031. swrm->clk_stop_wakeup = true;
  2032. swrm_enable_slave_irq(swrm);
  2033. swrm->clk_stop_wakeup = false;
  2034. }
  2035. break;
  2036. case SWRM_INTERRUPT_STATUS_CMD_IGNORED_AND_EXEC_CONTINUED:
  2037. value = swr_master_read(swrm, SWRM_CMD_FIFO_STATUS(swrm->ee_val));
  2038. dev_err_ratelimited(swrm->dev,
  2039. "%s: SWR CMD Ignored, fifo status 0x%x\n",
  2040. __func__, value);
  2041. /* Wait 3.5ms to clear */
  2042. usleep_range(3500, 3505);
  2043. break;
  2044. default:
  2045. dev_err_ratelimited(swrm->dev,
  2046. "%s: SWR unknown interrupt value: %d\n",
  2047. __func__, value);
  2048. ret = IRQ_NONE;
  2049. break;
  2050. }
  2051. }
  2052. swr_master_write(swrm, SWRM_INTERRUPT_CLEAR(swrm->ee_val), intr_sts);
  2053. swr_master_write(swrm, SWRM_INTERRUPT_CLEAR(swrm->ee_val), 0x0);
  2054. if (swrm->enable_slave_irq) {
  2055. /* Enable slave irq here */
  2056. swrm_enable_slave_irq(swrm);
  2057. swrm->enable_slave_irq = false;
  2058. }
  2059. intr_sts = swr_master_read(swrm, SWRM_INTERRUPT_STATUS(swrm->ee_val));
  2060. intr_sts_masked = intr_sts & swrm->intr_mask;
  2061. if (intr_sts_masked && !pm_runtime_suspended(swrm->dev)) {
  2062. dev_dbg(swrm->dev, "%s: new interrupt received 0x%x\n",
  2063. __func__, intr_sts_masked);
  2064. trace_printk("%s: new interrupt received 0x%x\n", __func__,
  2065. intr_sts_masked);
  2066. goto handle_irq;
  2067. }
  2068. mutex_lock(&swrm->reslock);
  2069. swrm_clk_request(swrm, false);
  2070. err_audio_core_vote:
  2071. swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, false);
  2072. err_audio_hw_vote:
  2073. swrm_request_hw_vote(swrm, LPASS_HW_CORE, false);
  2074. exit:
  2075. mutex_unlock(&swrm->reslock);
  2076. swrm_unlock_sleep(swrm);
  2077. trace_printk("%s exit\n", __func__);
  2078. return ret;
  2079. }
  2080. static irqreturn_t swrm_wakeup_interrupt(int irq, void *dev)
  2081. {
  2082. struct swr_mstr_ctrl *swrm = dev;
  2083. int ret = IRQ_HANDLED;
  2084. if (!swrm || !(swrm->dev)) {
  2085. pr_err_ratelimited("%s: swrm or dev is null\n", __func__);
  2086. return IRQ_NONE;
  2087. }
  2088. trace_printk("%s enter\n", __func__);
  2089. mutex_lock(&swrm->devlock);
  2090. if (swrm->state == SWR_MSTR_SSR || !swrm->dev_up) {
  2091. if (swrm->wake_irq > 0) {
  2092. if (unlikely(!irq_get_irq_data(swrm->wake_irq))) {
  2093. pr_err_ratelimited("%s: irq data is NULL\n", __func__);
  2094. mutex_unlock(&swrm->devlock);
  2095. return IRQ_NONE;
  2096. }
  2097. mutex_lock(&swrm->irq_lock);
  2098. if (!irqd_irq_disabled(
  2099. irq_get_irq_data(swrm->wake_irq)))
  2100. disable_irq_nosync(swrm->wake_irq);
  2101. mutex_unlock(&swrm->irq_lock);
  2102. }
  2103. mutex_unlock(&swrm->devlock);
  2104. return ret;
  2105. }
  2106. mutex_unlock(&swrm->devlock);
  2107. if (unlikely(swrm_lock_sleep(swrm) == false)) {
  2108. dev_err_ratelimited(swrm->dev, "%s Failed to hold suspend\n", __func__);
  2109. goto exit;
  2110. }
  2111. if (swrm->wake_irq > 0) {
  2112. if (unlikely(!irq_get_irq_data(swrm->wake_irq))) {
  2113. pr_err_ratelimited("%s: irq data is NULL\n", __func__);
  2114. return IRQ_NONE;
  2115. }
  2116. mutex_lock(&swrm->irq_lock);
  2117. if (!irqd_irq_disabled(
  2118. irq_get_irq_data(swrm->wake_irq)))
  2119. disable_irq_nosync(swrm->wake_irq);
  2120. mutex_unlock(&swrm->irq_lock);
  2121. }
  2122. pm_runtime_get_sync(swrm->dev);
  2123. pm_runtime_mark_last_busy(swrm->dev);
  2124. pm_runtime_put_autosuspend(swrm->dev);
  2125. swrm_unlock_sleep(swrm);
  2126. exit:
  2127. trace_printk("%s exit\n", __func__);
  2128. return ret;
  2129. }
  2130. static void swrm_wakeup_work(struct work_struct *work)
  2131. {
  2132. struct swr_mstr_ctrl *swrm;
  2133. swrm = container_of(work, struct swr_mstr_ctrl,
  2134. wakeup_work);
  2135. if (!swrm || !(swrm->dev)) {
  2136. pr_err("%s: swrm or dev is null\n", __func__);
  2137. return;
  2138. }
  2139. trace_printk("%s enter\n", __func__);
  2140. mutex_lock(&swrm->devlock);
  2141. if (!swrm->dev_up) {
  2142. mutex_unlock(&swrm->devlock);
  2143. goto exit;
  2144. }
  2145. mutex_unlock(&swrm->devlock);
  2146. if (unlikely(swrm_lock_sleep(swrm) == false)) {
  2147. dev_err(swrm->dev, "%s Failed to hold suspend\n", __func__);
  2148. goto exit;
  2149. }
  2150. pm_runtime_get_sync(swrm->dev);
  2151. pm_runtime_mark_last_busy(swrm->dev);
  2152. pm_runtime_put_autosuspend(swrm->dev);
  2153. swrm_unlock_sleep(swrm);
  2154. exit:
  2155. trace_printk("%s exit\n", __func__);
  2156. pm_relax(swrm->dev);
  2157. }
  2158. static int swrm_get_device_status(struct swr_mstr_ctrl *swrm, u8 devnum)
  2159. {
  2160. u32 val;
  2161. swrm->slave_status = swr_master_read(swrm, SWRM_MCP_SLV_STATUS);
  2162. val = (swrm->slave_status >> (devnum * 2));
  2163. val &= SWRM_MCP_SLV_STATUS_MASK;
  2164. return val;
  2165. }
  2166. static int swrm_get_logical_dev_num(struct swr_master *mstr, u64 dev_id,
  2167. u8 *dev_num)
  2168. {
  2169. int i;
  2170. u64 id = 0;
  2171. int ret = -EINVAL;
  2172. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(mstr);
  2173. struct swr_device *swr_dev;
  2174. u32 num_dev = 0;
  2175. if (!swrm) {
  2176. pr_err("%s: Invalid handle to swr controller\n",
  2177. __func__);
  2178. return ret;
  2179. }
  2180. num_dev = swrm->num_dev;
  2181. mutex_lock(&swrm->devlock);
  2182. if (!swrm->dev_up) {
  2183. mutex_unlock(&swrm->devlock);
  2184. return ret;
  2185. }
  2186. mutex_unlock(&swrm->devlock);
  2187. pm_runtime_get_sync(swrm->dev);
  2188. for (i = 1; i < (num_dev + 1); i++) {
  2189. id = ((u64)(swr_master_read(swrm,
  2190. SWRM_ENUMERATOR_SLAVE_DEV_ID_2(i))) << 32);
  2191. id |= swr_master_read(swrm,
  2192. SWRM_ENUMERATOR_SLAVE_DEV_ID_1(i));
  2193. /*
  2194. * As pm_runtime_get_sync() brings all slaves out of reset
  2195. * update logical device number for all slaves.
  2196. */
  2197. list_for_each_entry(swr_dev, &mstr->devices, dev_list) {
  2198. if (swr_dev->addr == (id & SWR_DEV_ID_MASK)) {
  2199. u32 status = swrm_get_device_status(swrm, i);
  2200. if ((status == 0x01) || (status == 0x02)) {
  2201. swr_dev->dev_num = i;
  2202. if ((id & SWR_DEV_ID_MASK) == dev_id) {
  2203. *dev_num = i;
  2204. ret = 0;
  2205. dev_info(swrm->dev,
  2206. "%s: devnum %d assigned for dev %llx\n",
  2207. __func__, i,
  2208. swr_dev->addr);
  2209. }
  2210. }
  2211. }
  2212. }
  2213. }
  2214. if (ret)
  2215. dev_err(swrm->dev,
  2216. "%s: device 0x%llx is not ready\n",
  2217. __func__, dev_id);
  2218. pm_runtime_mark_last_busy(swrm->dev);
  2219. pm_runtime_put_autosuspend(swrm->dev);
  2220. return ret;
  2221. }
  2222. static int swrm_init_port_params(struct swr_master *mstr, u32 dev_num,
  2223. u32 num_ports,
  2224. struct swr_dev_frame_config *uc_arr)
  2225. {
  2226. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(mstr);
  2227. int i, j, port_id_offset;
  2228. if (!swrm) {
  2229. pr_err("%s: Invalid handle to swr controller\n", __func__);
  2230. return 0;
  2231. }
  2232. if (dev_num == 0) {
  2233. pr_err("%s: Invalid device number 0\n", __func__);
  2234. return -EINVAL;
  2235. }
  2236. for (i = 0; i < SWR_UC_MAX; i++) {
  2237. for (j = 0; j < num_ports; j++) {
  2238. port_id_offset = (dev_num - 1) * SWR_MAX_DEV_PORT_NUM + j;
  2239. swrm->pp[i][port_id_offset].offset1 = uc_arr[i].pp[j].offset1;
  2240. swrm->pp[i][port_id_offset].lane_ctrl = uc_arr[i].pp[j].lane_ctrl;
  2241. }
  2242. }
  2243. return 0;
  2244. }
  2245. static void swrm_device_wakeup_vote(struct swr_master *mstr)
  2246. {
  2247. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(mstr);
  2248. if (!swrm) {
  2249. pr_err_ratelimited("%s: Invalid handle to swr controller\n",
  2250. __func__);
  2251. return;
  2252. }
  2253. if (unlikely(swrm_lock_sleep(swrm) == false)) {
  2254. dev_err_ratelimited(swrm->dev, "%s Failed to hold suspend\n", __func__);
  2255. return;
  2256. }
  2257. if (swrm_request_hw_vote(swrm, LPASS_HW_CORE, true))
  2258. dev_err_ratelimited(swrm->dev, "%s:lpass core hw enable failed\n",
  2259. __func__);
  2260. if (swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, true))
  2261. dev_err_ratelimited(swrm->dev, "%s:lpass audio hw enable failed\n",
  2262. __func__);
  2263. pm_runtime_get_sync(swrm->dev);
  2264. }
  2265. static void swrm_device_wakeup_unvote(struct swr_master *mstr)
  2266. {
  2267. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(mstr);
  2268. if (!swrm) {
  2269. pr_err_ratelimited("%s: Invalid handle to swr controller\n",
  2270. __func__);
  2271. return;
  2272. }
  2273. pm_runtime_mark_last_busy(swrm->dev);
  2274. pm_runtime_put_autosuspend(swrm->dev);
  2275. swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, false);
  2276. swrm_request_hw_vote(swrm, LPASS_HW_CORE, false);
  2277. swrm_unlock_sleep(swrm);
  2278. }
  2279. static int swrm_master_init(struct swr_mstr_ctrl *swrm)
  2280. {
  2281. int ret = 0, i = 0;
  2282. u32 val;
  2283. u8 row_ctrl = SWR_ROW_50;
  2284. u8 col_ctrl = SWR_MIN_COL;
  2285. u8 ssp_period = 1;
  2286. u8 retry_cmd_num = 3;
  2287. u32 reg[SWRM_MAX_INIT_REG];
  2288. u32 value[SWRM_MAX_INIT_REG];
  2289. u32 temp = 0;
  2290. int len = 0;
  2291. /* Change no of retry counts to 1 for wsa to avoid underflow */
  2292. if (swrm->master_id == MASTER_ID_WSA)
  2293. retry_cmd_num = 1;
  2294. /* SW workaround to gate hw_ctl for SWR version >=1.6 */
  2295. if (swrm->version >= SWRM_VERSION_1_6) {
  2296. if (swrm->swrm_hctl_reg) {
  2297. temp = ioread32(swrm->swrm_hctl_reg);
  2298. temp &= 0xFFFFFFFD;
  2299. iowrite32(temp, swrm->swrm_hctl_reg);
  2300. usleep_range(500, 505);
  2301. temp = ioread32(swrm->swrm_hctl_reg);
  2302. dev_dbg(swrm->dev, "%s: hctl_reg val: 0x%x\n",
  2303. __func__, temp);
  2304. }
  2305. }
  2306. ssp_period = swrm_get_ssp_period(swrm, SWRM_ROW_50,
  2307. SWRM_COL_02, SWRM_FRAME_SYNC_SEL);
  2308. dev_dbg(swrm->dev, "%s: ssp_period: %d\n", __func__, ssp_period);
  2309. /* Clear Rows and Cols */
  2310. val = ((row_ctrl << SWRM_MCP_FRAME_CTRL_BANK_ROW_CTRL_SHFT) |
  2311. (col_ctrl << SWRM_MCP_FRAME_CTRL_BANK_COL_CTRL_SHFT) |
  2312. ((ssp_period - 1) << SWRM_MCP_FRAME_CTRL_BANK_SSP_PERIOD_SHFT));
  2313. reg[len] = SWRM_MCP_FRAME_CTRL_BANK(0);
  2314. value[len++] = val;
  2315. /* Set Auto enumeration flag */
  2316. reg[len] = SWRM_ENUMERATOR_CFG;
  2317. value[len++] = 1;
  2318. /* Configure No pings */
  2319. val = swr_master_read(swrm, SWRM_MCP_CFG);
  2320. val &= ~SWRM_NUM_PINGS_MASK;
  2321. val |= (0x1f << SWRM_NUM_PINGS_POS);
  2322. reg[len] = SWRM_MCP_CFG;
  2323. value[len++] = val;
  2324. /* Configure number of retries of a read/write cmd */
  2325. val = (retry_cmd_num);
  2326. reg[len] = SWRM_CMD_FIFO_CFG;
  2327. value[len++] = val;
  2328. if (swrm->version >= SWRM_VERSION_1_7) {
  2329. reg[len] = SWRM_LINK_MANAGER_EE;
  2330. value[len++] = swrm->ee_val;
  2331. }
  2332. #ifdef CONFIG_SWRM_VER_2P0
  2333. reg[len] = SWRM_CLK_CTRL(swrm->ee_val);
  2334. value[len++] = 0x01;
  2335. #endif
  2336. /* Set IRQ to PULSE */
  2337. reg[len] = SWRM_COMP_CFG;
  2338. value[len++] = 0x02;
  2339. reg[len] = SWRM_INTERRUPT_CLEAR(swrm->ee_val);
  2340. value[len++] = 0xFFFFFFFF;
  2341. swrm->intr_mask = SWRM_INTERRUPT_STATUS_MASK;
  2342. /* Mask soundwire interrupts */
  2343. reg[len] = SWRM_INTERRUPT_EN(swrm->ee_val);
  2344. value[len++] = swrm->intr_mask;
  2345. reg[len] = SWRM_COMP_CFG;
  2346. value[len++] = 0x03;
  2347. swr_master_bulk_write(swrm, reg, value, len);
  2348. if (!swrm_check_link_status(swrm, 0x1)) {
  2349. dev_err(swrm->dev,
  2350. "%s: swr link failed to connect\n",
  2351. __func__);
  2352. for (i = 0; i < len; i++) {
  2353. usleep_range(50, 55);
  2354. dev_err(swrm->dev,
  2355. "%s:reg:0x%x val:0x%x\n",
  2356. __func__,
  2357. reg[i], swr_master_read(swrm, reg[i]));
  2358. }
  2359. return -EINVAL;
  2360. }
  2361. /* Execute it for versions >= 1.5.1 */
  2362. if (swrm->version >= SWRM_VERSION_1_5_1)
  2363. swr_master_write(swrm, SWRM_CMD_FIFO_CFG,
  2364. (swr_master_read(swrm,
  2365. SWRM_CMD_FIFO_CFG) | 0x80000000));
  2366. return ret;
  2367. }
  2368. static int swrm_event_notify(struct notifier_block *self,
  2369. unsigned long action, void *data)
  2370. {
  2371. struct swr_mstr_ctrl *swrm = container_of(self, struct swr_mstr_ctrl,
  2372. event_notifier);
  2373. if (!swrm || !(swrm->dev)) {
  2374. pr_err_ratelimited("%s: swrm or dev is NULL\n", __func__);
  2375. return -EINVAL;
  2376. }
  2377. switch (action) {
  2378. case MSM_AUD_DC_EVENT:
  2379. schedule_work(&(swrm->dc_presence_work));
  2380. break;
  2381. case SWR_WAKE_IRQ_EVENT:
  2382. if (swrm->ipc_wakeup && !swrm->ipc_wakeup_triggered) {
  2383. swrm->ipc_wakeup_triggered = true;
  2384. pm_stay_awake(swrm->dev);
  2385. schedule_work(&swrm->wakeup_work);
  2386. }
  2387. break;
  2388. default:
  2389. dev_err_ratelimited(swrm->dev, "%s: invalid event type: %lu\n",
  2390. __func__, action);
  2391. return -EINVAL;
  2392. }
  2393. return 0;
  2394. }
  2395. static void swrm_notify_work_fn(struct work_struct *work)
  2396. {
  2397. struct swr_mstr_ctrl *swrm = container_of(work, struct swr_mstr_ctrl,
  2398. dc_presence_work);
  2399. if (!swrm || !swrm->pdev) {
  2400. pr_err_ratelimited("%s: swrm or pdev is NULL\n", __func__);
  2401. return;
  2402. }
  2403. swrm_wcd_notify(swrm->pdev, SWR_DEVICE_DOWN, NULL);
  2404. }
  2405. static int swrm_probe(struct platform_device *pdev)
  2406. {
  2407. struct swr_mstr_ctrl *swrm;
  2408. struct swr_ctrl_platform_data *pdata;
  2409. u32 i, num_ports, port_num, port_type, ch_mask, swrm_hctl_reg = 0;
  2410. u32 *temp, map_size, map_length, ch_iter = 0, old_port_num = 0;
  2411. int ret = 0;
  2412. struct clk *lpass_core_hw_vote = NULL;
  2413. struct clk *lpass_core_audio = NULL;
  2414. u32 swrm_hw_ver = 0;
  2415. /* Allocate soundwire master driver structure */
  2416. swrm = devm_kzalloc(&pdev->dev, sizeof(struct swr_mstr_ctrl),
  2417. GFP_KERNEL);
  2418. if (!swrm) {
  2419. ret = -ENOMEM;
  2420. goto err_memory_fail;
  2421. }
  2422. swrm->pdev = pdev;
  2423. swrm->dev = &pdev->dev;
  2424. platform_set_drvdata(pdev, swrm);
  2425. swr_set_ctrl_data(&swrm->master, swrm);
  2426. pdata = dev_get_platdata(&pdev->dev);
  2427. if (!pdata) {
  2428. dev_err(&pdev->dev, "%s: pdata from parent is NULL\n",
  2429. __func__);
  2430. ret = -EINVAL;
  2431. goto err_pdata_fail;
  2432. }
  2433. swrm->handle = (void *)pdata->handle;
  2434. if (!swrm->handle) {
  2435. dev_err(&pdev->dev, "%s: swrm->handle is NULL\n",
  2436. __func__);
  2437. ret = -EINVAL;
  2438. goto err_pdata_fail;
  2439. }
  2440. ret = of_property_read_u32(pdev->dev.of_node, "qcom,swr-master-ee-val",
  2441. &swrm->ee_val);
  2442. if (ret) {
  2443. dev_dbg(&pdev->dev,
  2444. "%s: ee_val not specified, initialize with default val\n",
  2445. __func__);
  2446. swrm->ee_val = 0x1;
  2447. }
  2448. ret = of_property_read_u32(pdev->dev.of_node,
  2449. "qcom,swr-master-version",
  2450. &swrm->version);
  2451. if (ret) {
  2452. dev_dbg(&pdev->dev, "%s: swrm version not defined, use default\n",
  2453. __func__);
  2454. swrm->version = SWRM_VERSION_2_0;
  2455. }
  2456. ret = of_property_read_u32(pdev->dev.of_node, "qcom,swr_master_id",
  2457. &swrm->master_id);
  2458. if (ret) {
  2459. dev_err(&pdev->dev, "%s: failed to get master id\n", __func__);
  2460. goto err_pdata_fail;
  2461. }
  2462. ret = of_property_read_u32(pdev->dev.of_node, "qcom,dynamic-port-map-supported",
  2463. &swrm->dynamic_port_map_supported);
  2464. if (ret) {
  2465. dev_dbg(&pdev->dev,
  2466. "%s: failed to get dynamic port map support, use default\n",
  2467. __func__);
  2468. swrm->dynamic_port_map_supported = 1;
  2469. }
  2470. if (!(of_property_read_u32(pdev->dev.of_node,
  2471. "swrm-io-base", &swrm->swrm_base_reg)))
  2472. ret = of_property_read_u32(pdev->dev.of_node,
  2473. "swrm-io-base", &swrm->swrm_base_reg);
  2474. if (!swrm->swrm_base_reg) {
  2475. swrm->read = pdata->read;
  2476. if (!swrm->read) {
  2477. dev_err(&pdev->dev, "%s: swrm->read is NULL\n",
  2478. __func__);
  2479. ret = -EINVAL;
  2480. goto err_pdata_fail;
  2481. }
  2482. swrm->write = pdata->write;
  2483. if (!swrm->write) {
  2484. dev_err(&pdev->dev, "%s: swrm->write is NULL\n",
  2485. __func__);
  2486. ret = -EINVAL;
  2487. goto err_pdata_fail;
  2488. }
  2489. swrm->bulk_write = pdata->bulk_write;
  2490. if (!swrm->bulk_write) {
  2491. dev_err(&pdev->dev, "%s: swrm->bulk_write is NULL\n",
  2492. __func__);
  2493. ret = -EINVAL;
  2494. goto err_pdata_fail;
  2495. }
  2496. } else {
  2497. swrm->swrm_dig_base = devm_ioremap(&pdev->dev,
  2498. swrm->swrm_base_reg, SWRM_MAX_REGISTER);
  2499. }
  2500. swrm->core_vote = pdata->core_vote;
  2501. if (!(of_property_read_u32(pdev->dev.of_node,
  2502. "qcom,swrm-hctl-reg", &swrm_hctl_reg)))
  2503. swrm->swrm_hctl_reg = devm_ioremap(&pdev->dev,
  2504. swrm_hctl_reg, 0x4);
  2505. swrm->clk = pdata->clk;
  2506. if (!swrm->clk) {
  2507. dev_err(&pdev->dev, "%s: swrm->clk is NULL\n",
  2508. __func__);
  2509. ret = -EINVAL;
  2510. goto err_pdata_fail;
  2511. }
  2512. if (of_property_read_u32(pdev->dev.of_node,
  2513. "qcom,swr-clock-stop-mode0",
  2514. &swrm->clk_stop_mode0_supp)) {
  2515. swrm->clk_stop_mode0_supp = FALSE;
  2516. }
  2517. /* Parse soundwire port mapping */
  2518. ret = of_property_read_u32(pdev->dev.of_node, "qcom,swr-num-ports",
  2519. &num_ports);
  2520. if (ret) {
  2521. dev_err(swrm->dev, "%s: Failed to get num_ports\n", __func__);
  2522. goto err_pdata_fail;
  2523. }
  2524. swrm->num_ports = num_ports;
  2525. if (!of_find_property(pdev->dev.of_node, "qcom,swr-port-mapping",
  2526. &map_size)) {
  2527. dev_err(swrm->dev, "missing port mapping\n");
  2528. goto err_pdata_fail;
  2529. }
  2530. map_length = map_size / (3 * sizeof(u32));
  2531. if (num_ports > SWR_MSTR_PORT_LEN) {
  2532. dev_err(&pdev->dev, "%s:invalid number of swr ports\n",
  2533. __func__);
  2534. ret = -EINVAL;
  2535. goto err_pdata_fail;
  2536. }
  2537. temp = devm_kzalloc(&pdev->dev, map_size, GFP_KERNEL);
  2538. if (!temp) {
  2539. ret = -ENOMEM;
  2540. goto err_pdata_fail;
  2541. }
  2542. ret = of_property_read_u32_array(pdev->dev.of_node,
  2543. "qcom,swr-port-mapping", temp, 3 * map_length);
  2544. if (ret) {
  2545. dev_err(swrm->dev, "%s: Failed to read port mapping\n",
  2546. __func__);
  2547. goto err_pdata_fail;
  2548. }
  2549. for (i = 0; i < map_length; i++) {
  2550. port_num = temp[3 * i];
  2551. port_type = temp[3 * i + 1];
  2552. ch_mask = temp[3 * i + 2];
  2553. if (port_num != old_port_num)
  2554. ch_iter = 0;
  2555. if (port_num > SWR_MSTR_PORT_LEN ||
  2556. ch_iter >= SWR_MAX_CH_PER_PORT) {
  2557. dev_err(&pdev->dev,
  2558. "%s:invalid port_num %d or ch_iter %d\n",
  2559. __func__, port_num, ch_iter);
  2560. goto err_pdata_fail;
  2561. }
  2562. swrm->port_mapping[port_num][ch_iter].port_type = port_type;
  2563. swrm->port_mapping[port_num][ch_iter++].ch_mask = ch_mask;
  2564. old_port_num = port_num;
  2565. }
  2566. devm_kfree(&pdev->dev, temp);
  2567. ret = of_property_read_u32(pdev->dev.of_node, "qcom,is-always-on",
  2568. &swrm->is_always_on);
  2569. if (ret)
  2570. dev_dbg(&pdev->dev, "%s: failed to get is_always_on flag\n", __func__);
  2571. swrm->reg_irq = pdata->reg_irq;
  2572. swrm->master.read = swrm_read;
  2573. swrm->master.write = swrm_write;
  2574. swrm->master.bulk_write = swrm_bulk_write;
  2575. swrm->master.get_logical_dev_num = swrm_get_logical_dev_num;
  2576. swrm->master.init_port_params = swrm_init_port_params;
  2577. swrm->master.connect_port = swrm_connect_port;
  2578. swrm->master.disconnect_port = swrm_disconnect_port;
  2579. swrm->master.slvdev_datapath_control = swrm_slvdev_datapath_control;
  2580. swrm->master.remove_from_group = swrm_remove_from_group;
  2581. swrm->master.device_wakeup_vote = swrm_device_wakeup_vote;
  2582. swrm->master.device_wakeup_unvote = swrm_device_wakeup_unvote;
  2583. swrm->master.dev.parent = &pdev->dev;
  2584. swrm->master.dev.of_node = pdev->dev.of_node;
  2585. swrm->master.num_port = 0;
  2586. swrm->rcmd_id = 0;
  2587. swrm->wcmd_id = 0;
  2588. swrm->cmd_id = 0;
  2589. swrm->slave_status = 0;
  2590. swrm->num_rx_chs = 0;
  2591. swrm->clk_ref_count = 0;
  2592. swrm->swr_irq_wakeup_capable = 0;
  2593. swrm->mclk_freq = MCLK_FREQ;
  2594. swrm->bus_clk = MCLK_FREQ;
  2595. swrm->dev_up = true;
  2596. swrm->state = SWR_MSTR_UP;
  2597. swrm->ipc_wakeup = false;
  2598. swrm->enable_slave_irq = false;
  2599. swrm->clk_stop_wakeup = false;
  2600. swrm->ipc_wakeup_triggered = false;
  2601. swrm->disable_div2_clk_switch = FALSE;
  2602. init_completion(&swrm->reset);
  2603. init_completion(&swrm->broadcast);
  2604. init_completion(&swrm->clk_off_complete);
  2605. mutex_init(&swrm->irq_lock);
  2606. mutex_init(&swrm->mlock);
  2607. mutex_init(&swrm->reslock);
  2608. mutex_init(&swrm->force_down_lock);
  2609. mutex_init(&swrm->iolock);
  2610. mutex_init(&swrm->clklock);
  2611. mutex_init(&swrm->devlock);
  2612. mutex_init(&swrm->pm_lock);
  2613. mutex_init(&swrm->runtime_lock);
  2614. swrm->wlock_holders = 0;
  2615. swrm->pm_state = SWRM_PM_SLEEPABLE;
  2616. init_waitqueue_head(&swrm->pm_wq);
  2617. cpu_latency_qos_add_request(&swrm->pm_qos_req,
  2618. PM_QOS_DEFAULT_VALUE);
  2619. for (i = 0 ; i < SWR_MSTR_PORT_LEN; i++) {
  2620. INIT_LIST_HEAD(&swrm->mport_cfg[i].port_req_list);
  2621. if (swrm->master_id == MASTER_ID_TX) {
  2622. swrm->mport_cfg[i].sinterval = 0xFFFF;
  2623. swrm->mport_cfg[i].offset1 = 0x00;
  2624. swrm->mport_cfg[i].offset2 = 0x00;
  2625. swrm->mport_cfg[i].hstart = 0xFF;
  2626. swrm->mport_cfg[i].hstop = 0xFF;
  2627. swrm->mport_cfg[i].blk_pack_mode = 0xFF;
  2628. swrm->mport_cfg[i].blk_grp_count = 0xFF;
  2629. swrm->mport_cfg[i].word_length = 0xFF;
  2630. swrm->mport_cfg[i].lane_ctrl = 0x00;
  2631. swrm->mport_cfg[i].dir = 0x00;
  2632. swrm->mport_cfg[i].stream_type = 0x00;
  2633. }
  2634. }
  2635. if (of_property_read_u32(pdev->dev.of_node,
  2636. "qcom,disable-div2-clk-switch",
  2637. &swrm->disable_div2_clk_switch)) {
  2638. swrm->disable_div2_clk_switch = FALSE;
  2639. }
  2640. /* Register LPASS core hw vote */
  2641. lpass_core_hw_vote = devm_clk_get(&pdev->dev, "lpass_core_hw_vote");
  2642. if (IS_ERR(lpass_core_hw_vote)) {
  2643. ret = PTR_ERR(lpass_core_hw_vote);
  2644. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  2645. __func__, "lpass_core_hw_vote", ret);
  2646. lpass_core_hw_vote = NULL;
  2647. ret = 0;
  2648. }
  2649. swrm->lpass_core_hw_vote = lpass_core_hw_vote;
  2650. /* Register LPASS audio core vote */
  2651. lpass_core_audio = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  2652. if (IS_ERR(lpass_core_audio)) {
  2653. ret = PTR_ERR(lpass_core_audio);
  2654. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  2655. __func__, "lpass_core_audio", ret);
  2656. lpass_core_audio = NULL;
  2657. ret = 0;
  2658. }
  2659. swrm->lpass_core_audio = lpass_core_audio;
  2660. if (swrm->reg_irq) {
  2661. ret = swrm->reg_irq(swrm->handle, swr_mstr_interrupt, swrm,
  2662. SWR_IRQ_REGISTER);
  2663. if (ret) {
  2664. dev_err(&pdev->dev, "%s: IRQ register failed ret %d\n",
  2665. __func__, ret);
  2666. goto err_irq_fail;
  2667. }
  2668. } else {
  2669. swrm->irq = platform_get_irq_byname(pdev, "swr_master_irq");
  2670. if (swrm->irq < 0) {
  2671. dev_err(swrm->dev, "%s() error getting irq hdle: %d\n",
  2672. __func__, swrm->irq);
  2673. goto err_irq_fail;
  2674. }
  2675. ret = request_threaded_irq(swrm->irq, NULL,
  2676. swr_mstr_interrupt,
  2677. IRQF_TRIGGER_RISING | IRQF_ONESHOT,
  2678. "swr_master_irq", swrm);
  2679. if (ret) {
  2680. dev_err(swrm->dev, "%s: Failed to request irq %d\n",
  2681. __func__, ret);
  2682. goto err_irq_fail;
  2683. }
  2684. }
  2685. /* Make inband tx interrupts as wakeup capable for slave irq */
  2686. ret = of_property_read_u32(pdev->dev.of_node,
  2687. "qcom,swr-mstr-irq-wakeup-capable",
  2688. &swrm->swr_irq_wakeup_capable);
  2689. if (ret)
  2690. dev_dbg(swrm->dev, "%s: swrm irq wakeup capable not defined\n",
  2691. __func__);
  2692. if (swrm->swr_irq_wakeup_capable) {
  2693. irq_set_irq_wake(swrm->irq, 1);
  2694. ret = device_init_wakeup(swrm->dev, true);
  2695. if (ret)
  2696. dev_info(swrm->dev,
  2697. "%s: Device wakeup init failed: %d\n",
  2698. __func__, ret);
  2699. }
  2700. ret = swr_register_master(&swrm->master);
  2701. if (ret) {
  2702. dev_err(&pdev->dev, "%s: error adding swr master\n", __func__);
  2703. goto err_mstr_fail;
  2704. }
  2705. /* Add devices registered with board-info as the
  2706. * controller will be up now
  2707. */
  2708. swr_master_add_boarddevices(&swrm->master);
  2709. if (!swrm->is_always_on && swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, true))
  2710. dev_dbg(&pdev->dev, "%s: Audio HW Vote is failed\n", __func__);
  2711. mutex_lock(&swrm->mlock);
  2712. swrm_clk_request(swrm, true);
  2713. swrm->rd_fifo_depth = ((swr_master_read(swrm, SWRM_COMP_PARAMS)
  2714. & SWRM_COMP_PARAMS_RD_FIFO_DEPTH) >> 15);
  2715. swrm->wr_fifo_depth = ((swr_master_read(swrm, SWRM_COMP_PARAMS)
  2716. & SWRM_COMP_PARAMS_WR_FIFO_DEPTH) >> 10);
  2717. swrm_hw_ver = swr_master_read(swrm, SWRM_COMP_HW_VERSION);
  2718. if (swrm->version != swrm_hw_ver)
  2719. dev_info(&pdev->dev,
  2720. "%s: version specified in dtsi: 0x%x not match with HW read version 0x%x\n",
  2721. __func__, swrm->version, swrm_hw_ver);
  2722. swrm->num_auto_enum = ((swr_master_read(swrm, SWRM_COMP_PARAMS)
  2723. & SWRM_COMP_PARAMS_AUTO_ENUM_SLAVES) >> 20);
  2724. ret = of_property_read_u32(swrm->dev->of_node, "qcom,swr-num-dev",
  2725. &swrm->num_dev);
  2726. if (ret) {
  2727. dev_err(&pdev->dev, "%s: Looking up %s property failed\n",
  2728. __func__, "qcom,swr-num-dev");
  2729. mutex_unlock(&swrm->mlock);
  2730. goto err_parse_num_dev;
  2731. } else {
  2732. if (swrm->num_dev > swrm->num_auto_enum) {
  2733. dev_err(&pdev->dev, "%s: num_dev %d > max limit %d\n",
  2734. __func__, swrm->num_dev,
  2735. swrm->num_auto_enum);
  2736. ret = -EINVAL;
  2737. mutex_unlock(&swrm->mlock);
  2738. goto err_parse_num_dev;
  2739. } else {
  2740. dev_dbg(&pdev->dev,
  2741. "max swr devices expected to attach - %d, supported auto_enum - %d\n",
  2742. swrm->num_dev, swrm->num_auto_enum);
  2743. }
  2744. }
  2745. ret = swrm_master_init(swrm);
  2746. if (ret < 0) {
  2747. dev_err(&pdev->dev,
  2748. "%s: Error in master Initialization , err %d\n",
  2749. __func__, ret);
  2750. mutex_unlock(&swrm->mlock);
  2751. ret = -EPROBE_DEFER;
  2752. goto err_mstr_init_fail;
  2753. }
  2754. mutex_unlock(&swrm->mlock);
  2755. INIT_WORK(&swrm->wakeup_work, swrm_wakeup_work);
  2756. if (pdev->dev.of_node)
  2757. of_register_swr_devices(&swrm->master);
  2758. #ifdef CONFIG_DEBUG_FS
  2759. swrm->debugfs_swrm_dent = debugfs_create_dir(dev_name(&pdev->dev), 0);
  2760. if (!IS_ERR(swrm->debugfs_swrm_dent)) {
  2761. swrm->debugfs_peek = debugfs_create_file("swrm_peek",
  2762. S_IFREG | 0444, swrm->debugfs_swrm_dent,
  2763. (void *) swrm, &swrm_debug_read_ops);
  2764. swrm->debugfs_poke = debugfs_create_file("swrm_poke",
  2765. S_IFREG | 0444, swrm->debugfs_swrm_dent,
  2766. (void *) swrm, &swrm_debug_write_ops);
  2767. swrm->debugfs_reg_dump = debugfs_create_file("swrm_reg_dump",
  2768. S_IFREG | 0444, swrm->debugfs_swrm_dent,
  2769. (void *) swrm,
  2770. &swrm_debug_dump_ops);
  2771. }
  2772. #endif
  2773. pm_runtime_set_autosuspend_delay(&pdev->dev, auto_suspend_timer);
  2774. pm_runtime_use_autosuspend(&pdev->dev);
  2775. pm_runtime_set_active(&pdev->dev);
  2776. pm_runtime_enable(&pdev->dev);
  2777. pm_runtime_mark_last_busy(&pdev->dev);
  2778. INIT_WORK(&swrm->dc_presence_work, swrm_notify_work_fn);
  2779. swrm->event_notifier.notifier_call = swrm_event_notify;
  2780. //msm_aud_evt_register_client(&swrm->event_notifier);
  2781. return 0;
  2782. err_parse_num_dev:
  2783. err_mstr_init_fail:
  2784. swr_unregister_master(&swrm->master);
  2785. device_init_wakeup(swrm->dev, false);
  2786. err_mstr_fail:
  2787. if (swrm->reg_irq) {
  2788. swrm->reg_irq(swrm->handle, swr_mstr_interrupt,
  2789. swrm, SWR_IRQ_FREE);
  2790. } else if (swrm->irq) {
  2791. if (irq_get_irq_data(swrm->irq) != NULL)
  2792. irqd_set_trigger_type(
  2793. irq_get_irq_data(swrm->irq),
  2794. IRQ_TYPE_NONE);
  2795. if (swrm->swr_irq_wakeup_capable)
  2796. irq_set_irq_wake(swrm->irq, 0);
  2797. free_irq(swrm->irq, swrm);
  2798. }
  2799. err_irq_fail:
  2800. mutex_destroy(&swrm->irq_lock);
  2801. mutex_destroy(&swrm->mlock);
  2802. mutex_destroy(&swrm->reslock);
  2803. mutex_destroy(&swrm->force_down_lock);
  2804. mutex_destroy(&swrm->iolock);
  2805. mutex_destroy(&swrm->clklock);
  2806. mutex_destroy(&swrm->pm_lock);
  2807. mutex_destroy(&swrm->runtime_lock);
  2808. cpu_latency_qos_remove_request(&swrm->pm_qos_req);
  2809. err_pdata_fail:
  2810. err_memory_fail:
  2811. return ret;
  2812. }
  2813. static int swrm_remove(struct platform_device *pdev)
  2814. {
  2815. struct swr_mstr_ctrl *swrm = platform_get_drvdata(pdev);
  2816. if (swrm->reg_irq) {
  2817. swrm->reg_irq(swrm->handle, swr_mstr_interrupt,
  2818. swrm, SWR_IRQ_FREE);
  2819. } else if (swrm->irq) {
  2820. if (irq_get_irq_data(swrm->irq) != NULL)
  2821. irqd_set_trigger_type(
  2822. irq_get_irq_data(swrm->irq),
  2823. IRQ_TYPE_NONE);
  2824. if (swrm->swr_irq_wakeup_capable) {
  2825. irq_set_irq_wake(swrm->irq, 0);
  2826. device_init_wakeup(swrm->dev, false);
  2827. }
  2828. free_irq(swrm->irq, swrm);
  2829. } else if (swrm->wake_irq > 0) {
  2830. free_irq(swrm->wake_irq, swrm);
  2831. }
  2832. cancel_work_sync(&swrm->wakeup_work);
  2833. pm_runtime_disable(&pdev->dev);
  2834. pm_runtime_set_suspended(&pdev->dev);
  2835. swr_unregister_master(&swrm->master);
  2836. //msm_aud_evt_unregister_client(&swrm->event_notifier);
  2837. mutex_destroy(&swrm->irq_lock);
  2838. mutex_destroy(&swrm->mlock);
  2839. mutex_destroy(&swrm->reslock);
  2840. mutex_destroy(&swrm->iolock);
  2841. mutex_destroy(&swrm->clklock);
  2842. mutex_destroy(&swrm->force_down_lock);
  2843. mutex_destroy(&swrm->pm_lock);
  2844. mutex_destroy(&swrm->runtime_lock);
  2845. cpu_latency_qos_remove_request(&swrm->pm_qos_req);
  2846. devm_kfree(&pdev->dev, swrm);
  2847. return 0;
  2848. }
  2849. static int swrm_clk_pause(struct swr_mstr_ctrl *swrm)
  2850. {
  2851. u32 val;
  2852. dev_dbg(swrm->dev, "%s: state: %d\n", __func__, swrm->state);
  2853. swr_master_write(swrm, SWRM_INTERRUPT_EN(swrm->ee_val),
  2854. SWRM_INTERRUPT_STATUS_MASK);
  2855. val = swr_master_read(swrm, SWRM_MCP_CFG);
  2856. val |= 0x02;
  2857. swr_master_write(swrm, SWRM_MCP_CFG, val);
  2858. return 0;
  2859. }
  2860. #ifdef CONFIG_PM
  2861. static int swrm_runtime_resume(struct device *dev)
  2862. {
  2863. struct platform_device *pdev = to_platform_device(dev);
  2864. struct swr_mstr_ctrl *swrm = platform_get_drvdata(pdev);
  2865. int ret = 0;
  2866. bool swrm_clk_req_err = false;
  2867. bool hw_core_err = false, aud_core_err = false;
  2868. struct swr_master *mstr = &swrm->master;
  2869. struct swr_device *swr_dev;
  2870. u32 temp = 0;
  2871. dev_dbg(dev, "%s: pm_runtime: resume, state:%d\n",
  2872. __func__, swrm->state);
  2873. trace_printk("%s: pm_runtime: resume, state:%d\n",
  2874. __func__, swrm->state);
  2875. mutex_lock(&swrm->runtime_lock);
  2876. mutex_lock(&swrm->reslock);
  2877. if (swrm_request_hw_vote(swrm, LPASS_HW_CORE, true)) {
  2878. dev_err_ratelimited(dev, "%s:lpass core hw enable failed\n",
  2879. __func__);
  2880. hw_core_err = true;
  2881. pm_runtime_set_autosuspend_delay(&pdev->dev,
  2882. ERR_AUTO_SUSPEND_TIMER_VAL);
  2883. if (swrm->req_clk_switch)
  2884. swrm->req_clk_switch = false;
  2885. mutex_unlock(&swrm->reslock);
  2886. mutex_unlock(&swrm->runtime_lock);
  2887. return 0;
  2888. }
  2889. if (swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, true)) {
  2890. dev_err_ratelimited(dev, "%s:lpass audio hw enable failed\n",
  2891. __func__);
  2892. aud_core_err = true;
  2893. }
  2894. if ((swrm->state == SWR_MSTR_DOWN) ||
  2895. (swrm->state == SWR_MSTR_SSR && swrm->dev_up)) {
  2896. if (swrm->clk_stop_mode0_supp) {
  2897. if (swrm->wake_irq > 0) {
  2898. if (unlikely(!irq_get_irq_data
  2899. (swrm->wake_irq))) {
  2900. pr_err_ratelimited("%s: irq data is NULL\n",
  2901. __func__);
  2902. mutex_unlock(&swrm->reslock);
  2903. mutex_unlock(&swrm->runtime_lock);
  2904. return IRQ_NONE;
  2905. }
  2906. mutex_lock(&swrm->irq_lock);
  2907. if (!irqd_irq_disabled(
  2908. irq_get_irq_data(swrm->wake_irq)))
  2909. disable_irq_nosync(swrm->wake_irq);
  2910. mutex_unlock(&swrm->irq_lock);
  2911. }
  2912. if (swrm->ipc_wakeup)
  2913. dev_err_ratelimited(dev, "%s:notifications disabled\n", __func__);
  2914. // msm_aud_evt_blocking_notifier_call_chain(
  2915. // SWR_WAKE_IRQ_DEREGISTER, (void *)swrm);
  2916. }
  2917. if (swrm_clk_request(swrm, true)) {
  2918. /*
  2919. * Set autosuspend timer to 1 for
  2920. * master to enter into suspend.
  2921. */
  2922. swrm_clk_req_err = true;
  2923. goto exit;
  2924. }
  2925. if (!swrm->clk_stop_mode0_supp || swrm->state == SWR_MSTR_SSR) {
  2926. list_for_each_entry(swr_dev, &mstr->devices, dev_list) {
  2927. ret = swr_device_up(swr_dev);
  2928. if (ret == -ENODEV) {
  2929. dev_dbg(dev,
  2930. "%s slave device up not implemented\n",
  2931. __func__);
  2932. trace_printk(
  2933. "%s slave device up not implemented\n",
  2934. __func__);
  2935. ret = 0;
  2936. } else if (ret) {
  2937. dev_err_ratelimited(dev,
  2938. "%s: failed to wakeup swr dev %d\n",
  2939. __func__, swr_dev->dev_num);
  2940. swrm_clk_request(swrm, false);
  2941. goto exit;
  2942. }
  2943. }
  2944. swr_master_write(swrm, SWRM_COMP_SW_RESET, 0x01);
  2945. swr_master_write(swrm, SWRM_COMP_SW_RESET, 0x01);
  2946. swr_master_write(swrm, SWRM_MCP_BUS_CTRL, 0x01);
  2947. swrm_master_init(swrm);
  2948. /* wait for hw enumeration to complete */
  2949. usleep_range(100, 105);
  2950. if (!swrm_check_link_status(swrm, 0x1))
  2951. dev_dbg(dev, "%s:failed in connecting, ssr?\n",
  2952. __func__);
  2953. swrm_cmd_fifo_wr_cmd(swrm, 0x4, 0xF, get_cmd_id(swrm),
  2954. SWRS_SCP_INT_STATUS_MASK_1);
  2955. if (swrm->state == SWR_MSTR_SSR) {
  2956. mutex_unlock(&swrm->reslock);
  2957. enable_bank_switch(swrm, 0, SWR_ROW_50, SWR_MIN_COL);
  2958. mutex_lock(&swrm->reslock);
  2959. }
  2960. } else {
  2961. if (swrm->swrm_hctl_reg) {
  2962. temp = ioread32(swrm->swrm_hctl_reg);
  2963. temp &= 0xFFFFFFFD;
  2964. iowrite32(temp, swrm->swrm_hctl_reg);
  2965. }
  2966. /*wake up from clock stop*/
  2967. #ifdef CONFIG_SWRM_VER_2P0
  2968. swr_master_write(swrm,
  2969. SWRM_CLK_CTRL(swrm->ee_val), 0x01);
  2970. #else
  2971. swr_master_write(swrm, SWRM_MCP_BUS_CTRL, 0x2);
  2972. #endif
  2973. /* clear and enable bus clash interrupt */
  2974. swr_master_write(swrm,
  2975. SWRM_INTERRUPT_CLEAR(swrm->ee_val), 0x08);
  2976. swrm->intr_mask |= 0x08;
  2977. swr_master_write(swrm, SWRM_INTERRUPT_EN(swrm->ee_val),
  2978. swrm->intr_mask);
  2979. usleep_range(100, 105);
  2980. if (!swrm_check_link_status(swrm, 0x1))
  2981. dev_dbg(dev, "%s:failed in connecting, ssr?\n",
  2982. __func__);
  2983. }
  2984. swrm->state = SWR_MSTR_UP;
  2985. }
  2986. exit:
  2987. if (swrm->is_always_on && !aud_core_err)
  2988. swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, false);
  2989. if (!hw_core_err)
  2990. swrm_request_hw_vote(swrm, LPASS_HW_CORE, false);
  2991. if (swrm_clk_req_err || aud_core_err || hw_core_err)
  2992. pm_runtime_set_autosuspend_delay(&pdev->dev,
  2993. ERR_AUTO_SUSPEND_TIMER_VAL);
  2994. else
  2995. pm_runtime_set_autosuspend_delay(&pdev->dev,
  2996. auto_suspend_timer);
  2997. if (swrm->req_clk_switch)
  2998. swrm->req_clk_switch = false;
  2999. mutex_unlock(&swrm->reslock);
  3000. mutex_unlock(&swrm->runtime_lock);
  3001. trace_printk("%s: pm_runtime: resume done, state:%d\n",
  3002. __func__, swrm->state);
  3003. return ret;
  3004. }
  3005. static int swrm_runtime_suspend(struct device *dev)
  3006. {
  3007. struct platform_device *pdev = to_platform_device(dev);
  3008. struct swr_mstr_ctrl *swrm = platform_get_drvdata(pdev);
  3009. int ret = 0;
  3010. bool hw_core_err = false, aud_core_err = false;
  3011. struct swr_master *mstr = &swrm->master;
  3012. struct swr_device *swr_dev;
  3013. int current_state = 0;
  3014. struct irq_data *irq_data = NULL;
  3015. trace_printk("%s: pm_runtime: suspend state: %d\n",
  3016. __func__, swrm->state);
  3017. dev_dbg(dev, "%s: pm_runtime: suspend state: %d\n",
  3018. __func__, swrm->state);
  3019. if (swrm->state == SWR_MSTR_SSR_RESET) {
  3020. swrm->state = SWR_MSTR_SSR;
  3021. return 0;
  3022. }
  3023. mutex_lock(&swrm->runtime_lock);
  3024. mutex_lock(&swrm->reslock);
  3025. mutex_lock(&swrm->force_down_lock);
  3026. current_state = swrm->state;
  3027. mutex_unlock(&swrm->force_down_lock);
  3028. if (swrm_request_hw_vote(swrm, LPASS_HW_CORE, true)) {
  3029. dev_err_ratelimited(dev, "%s:lpass core hw enable failed\n",
  3030. __func__);
  3031. hw_core_err = true;
  3032. }
  3033. if (swrm->is_always_on && swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, true))
  3034. aud_core_err = true;
  3035. if ((current_state == SWR_MSTR_UP) ||
  3036. (current_state == SWR_MSTR_SSR)) {
  3037. if ((current_state != SWR_MSTR_SSR) &&
  3038. swrm_is_port_en(&swrm->master)) {
  3039. dev_dbg(dev, "%s ports are enabled\n", __func__);
  3040. trace_printk("%s ports are enabled\n", __func__);
  3041. ret = -EBUSY;
  3042. goto exit;
  3043. }
  3044. if (!swrm->clk_stop_mode0_supp || swrm->state == SWR_MSTR_SSR) {
  3045. dev_err_ratelimited(dev, "%s: clk stop mode not supported or SSR entry\n",
  3046. __func__);
  3047. if (swrm->state == SWR_MSTR_SSR)
  3048. goto chk_lnk_status;
  3049. mutex_unlock(&swrm->reslock);
  3050. enable_bank_switch(swrm, 0, SWR_ROW_50, SWR_MIN_COL);
  3051. mutex_lock(&swrm->reslock);
  3052. swrm_clk_pause(swrm);
  3053. swr_master_write(swrm, SWRM_COMP_CFG, 0x00);
  3054. list_for_each_entry(swr_dev, &mstr->devices, dev_list) {
  3055. ret = swr_device_down(swr_dev);
  3056. if (ret == -ENODEV) {
  3057. dev_dbg_ratelimited(dev,
  3058. "%s slave device down not implemented\n",
  3059. __func__);
  3060. trace_printk(
  3061. "%s slave device down not implemented\n",
  3062. __func__);
  3063. ret = 0;
  3064. } else if (ret) {
  3065. dev_err_ratelimited(dev,
  3066. "%s: failed to shutdown swr dev %d\n",
  3067. __func__, swr_dev->dev_num);
  3068. trace_printk(
  3069. "%s: failed to shutdown swr dev %d\n",
  3070. __func__, swr_dev->dev_num);
  3071. goto exit;
  3072. }
  3073. }
  3074. trace_printk("%s: clk stop mode not supported or SSR exit\n",
  3075. __func__);
  3076. } else {
  3077. /* Mask bus clash interrupt */
  3078. swrm->intr_mask &= ~((u32)0x08);
  3079. swr_master_write(swrm, SWRM_INTERRUPT_EN(swrm->ee_val),
  3080. swrm->intr_mask);
  3081. mutex_unlock(&swrm->reslock);
  3082. /* clock stop sequence */
  3083. swrm_cmd_fifo_wr_cmd(swrm, 0x2, 0xF, 0xF,
  3084. SWRS_SCP_CONTROL);
  3085. mutex_lock(&swrm->reslock);
  3086. usleep_range(100, 105);
  3087. }
  3088. chk_lnk_status:
  3089. if (!swrm_check_link_status(swrm, 0x0))
  3090. dev_dbg(dev, "%s:failed in disconnecting, ssr?\n",
  3091. __func__);
  3092. ret = swrm_clk_request(swrm, false);
  3093. if (ret) {
  3094. dev_err_ratelimited(dev, "%s: swrmn clk failed\n", __func__);
  3095. ret = 0;
  3096. goto exit;
  3097. }
  3098. if (swrm->clk_stop_mode0_supp) {
  3099. if (swrm->wake_irq > 0) {
  3100. irq_data = irq_get_irq_data(swrm->wake_irq);
  3101. if (irq_data && irqd_irq_disabled(irq_data))
  3102. enable_irq(swrm->wake_irq);
  3103. } else if (swrm->ipc_wakeup) {
  3104. //msm_aud_evt_blocking_notifier_call_chain(
  3105. // SWR_WAKE_IRQ_REGISTER, (void *)swrm);
  3106. dev_err_ratelimited(dev, "%s:notifications disabled\n", __func__);
  3107. swrm->ipc_wakeup_triggered = false;
  3108. }
  3109. }
  3110. }
  3111. /* Retain SSR state until resume */
  3112. if (current_state != SWR_MSTR_SSR)
  3113. swrm->state = SWR_MSTR_DOWN;
  3114. exit:
  3115. if (!swrm->is_always_on && swrm->state != SWR_MSTR_UP) {
  3116. if (swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, false))
  3117. dev_dbg(dev, "%s:lpass audio hw enable failed\n",
  3118. __func__);
  3119. } else if (swrm->is_always_on && !aud_core_err)
  3120. swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, false);
  3121. if (!hw_core_err)
  3122. swrm_request_hw_vote(swrm, LPASS_HW_CORE, false);
  3123. mutex_unlock(&swrm->reslock);
  3124. mutex_unlock(&swrm->runtime_lock);
  3125. trace_printk("%s: pm_runtime: suspend done state: %d\n",
  3126. __func__, swrm->state);
  3127. dev_dbg(dev, "%s: pm_runtime: suspend done state: %d\n",
  3128. __func__, swrm->state);
  3129. pm_runtime_set_autosuspend_delay(dev, auto_suspend_timer);
  3130. return ret;
  3131. }
  3132. #endif /* CONFIG_PM */
  3133. static int swrm_device_suspend(struct device *dev)
  3134. {
  3135. struct platform_device *pdev = to_platform_device(dev);
  3136. struct swr_mstr_ctrl *swrm = platform_get_drvdata(pdev);
  3137. int ret = 0;
  3138. dev_dbg(dev, "%s: swrm state: %d\n", __func__, swrm->state);
  3139. trace_printk("%s: swrm state: %d\n", __func__, swrm->state);
  3140. if (!pm_runtime_enabled(dev) || !pm_runtime_suspended(dev)) {
  3141. ret = swrm_runtime_suspend(dev);
  3142. if (!ret) {
  3143. pm_runtime_disable(dev);
  3144. pm_runtime_set_suspended(dev);
  3145. pm_runtime_enable(dev);
  3146. }
  3147. }
  3148. return 0;
  3149. }
  3150. static int swrm_device_down(struct device *dev)
  3151. {
  3152. struct platform_device *pdev = to_platform_device(dev);
  3153. struct swr_mstr_ctrl *swrm = platform_get_drvdata(pdev);
  3154. dev_dbg(dev, "%s: swrm state: %d\n", __func__, swrm->state);
  3155. trace_printk("%s: swrm state: %d\n", __func__, swrm->state);
  3156. mutex_lock(&swrm->force_down_lock);
  3157. swrm->state = SWR_MSTR_SSR;
  3158. mutex_unlock(&swrm->force_down_lock);
  3159. swrm_device_suspend(dev);
  3160. return 0;
  3161. }
  3162. int swrm_register_wake_irq(struct swr_mstr_ctrl *swrm)
  3163. {
  3164. int ret = 0;
  3165. int irq, dir_apps_irq;
  3166. if (!swrm->ipc_wakeup) {
  3167. irq = of_get_named_gpio(swrm->dev->of_node,
  3168. "qcom,swr-wakeup-irq", 0);
  3169. if (gpio_is_valid(irq)) {
  3170. swrm->wake_irq = gpio_to_irq(irq);
  3171. if (swrm->wake_irq < 0) {
  3172. dev_err_ratelimited(swrm->dev,
  3173. "Unable to configure irq\n");
  3174. return swrm->wake_irq;
  3175. }
  3176. } else {
  3177. dir_apps_irq = platform_get_irq_byname(swrm->pdev,
  3178. "swr_wake_irq");
  3179. if (dir_apps_irq < 0) {
  3180. dev_err_ratelimited(swrm->dev,
  3181. "TLMM connect gpio not found\n");
  3182. return -EINVAL;
  3183. }
  3184. swrm->wake_irq = dir_apps_irq;
  3185. }
  3186. ret = request_threaded_irq(swrm->wake_irq, NULL,
  3187. swrm_wakeup_interrupt,
  3188. IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
  3189. "swr_wake_irq", swrm);
  3190. if (ret) {
  3191. dev_err_ratelimited(swrm->dev, "%s: Failed to request irq %d\n",
  3192. __func__, ret);
  3193. return -EINVAL;
  3194. }
  3195. irq_set_irq_wake(swrm->wake_irq, 1);
  3196. }
  3197. return ret;
  3198. }
  3199. static int swrm_alloc_port_mem(struct device *dev, struct swr_mstr_ctrl *swrm,
  3200. u32 uc, u32 size)
  3201. {
  3202. if (!swrm->port_param) {
  3203. swrm->port_param = devm_kzalloc(dev,
  3204. sizeof(swrm->port_param) * SWR_UC_MAX,
  3205. GFP_KERNEL);
  3206. if (!swrm->port_param)
  3207. return -ENOMEM;
  3208. }
  3209. if (!swrm->port_param[uc]) {
  3210. swrm->port_param[uc] = devm_kcalloc(dev, size,
  3211. sizeof(struct port_params),
  3212. GFP_KERNEL);
  3213. if (!swrm->port_param[uc])
  3214. return -ENOMEM;
  3215. } else {
  3216. dev_err_ratelimited(swrm->dev, "%s: called more than once\n",
  3217. __func__);
  3218. }
  3219. return 0;
  3220. }
  3221. static int swrm_copy_port_config(struct swr_mstr_ctrl *swrm,
  3222. struct swrm_port_config *port_cfg,
  3223. u32 size)
  3224. {
  3225. int idx;
  3226. struct port_params *params;
  3227. int uc = port_cfg->uc;
  3228. int ret = 0;
  3229. for (idx = 0; idx < size; idx++) {
  3230. params = &((struct port_params *)port_cfg->params)[idx];
  3231. if (!params) {
  3232. dev_err_ratelimited(swrm->dev, "%s: Invalid params\n", __func__);
  3233. ret = -EINVAL;
  3234. break;
  3235. }
  3236. memcpy(&swrm->port_param[uc][idx], params,
  3237. sizeof(struct port_params));
  3238. }
  3239. return ret;
  3240. }
  3241. /**
  3242. * swrm_wcd_notify - parent device can notify to soundwire master through
  3243. * this function
  3244. * @pdev: pointer to platform device structure
  3245. * @id: command id from parent to the soundwire master
  3246. * @data: data from parent device to soundwire master
  3247. */
  3248. int swrm_wcd_notify(struct platform_device *pdev, u32 id, void *data)
  3249. {
  3250. struct swr_mstr_ctrl *swrm;
  3251. int ret = 0;
  3252. struct swr_master *mstr;
  3253. struct swr_device *swr_dev;
  3254. struct swrm_port_config *port_cfg;
  3255. if (!pdev) {
  3256. pr_err_ratelimited("%s: pdev is NULL\n", __func__);
  3257. return -EINVAL;
  3258. }
  3259. swrm = platform_get_drvdata(pdev);
  3260. if (!swrm) {
  3261. dev_err_ratelimited(&pdev->dev, "%s: swrm is NULL\n", __func__);
  3262. return -EINVAL;
  3263. }
  3264. mstr = &swrm->master;
  3265. switch (id) {
  3266. case SWR_REQ_CLK_SWITCH:
  3267. /* This will put soundwire in clock stop mode and disable the
  3268. * clocks, if there is no active usecase running, so that the
  3269. * next activity on soundwire will request clock from new clock
  3270. * source.
  3271. */
  3272. if (!data) {
  3273. dev_err_ratelimited(swrm->dev, "%s: data is NULL for id:%d\n",
  3274. __func__, id);
  3275. ret = -EINVAL;
  3276. break;
  3277. }
  3278. mutex_lock(&swrm->mlock);
  3279. if (swrm->clk_src != *(int *)data) {
  3280. if (swrm->state == SWR_MSTR_UP) {
  3281. swrm->req_clk_switch = true;
  3282. swrm_device_suspend(&pdev->dev);
  3283. if (swrm->state == SWR_MSTR_UP)
  3284. swrm->req_clk_switch = false;
  3285. }
  3286. swrm->clk_src = *(int *)data;
  3287. }
  3288. mutex_unlock(&swrm->mlock);
  3289. break;
  3290. case SWR_CLK_FREQ:
  3291. if (!data) {
  3292. dev_err_ratelimited(swrm->dev, "%s: data is NULL\n", __func__);
  3293. ret = -EINVAL;
  3294. } else {
  3295. mutex_lock(&swrm->mlock);
  3296. if (swrm->mclk_freq != *(int *)data) {
  3297. dev_dbg(swrm->dev, "%s: freq change: force mstr down\n", __func__);
  3298. if (swrm->state == SWR_MSTR_DOWN)
  3299. dev_dbg(swrm->dev, "%s:SWR master is already Down:%d\n",
  3300. __func__, swrm->state);
  3301. else {
  3302. swrm->mclk_freq = *(int *)data;
  3303. swrm->bus_clk = swrm->mclk_freq;
  3304. swrm_switch_frame_shape(swrm,
  3305. swrm->bus_clk);
  3306. swrm_device_suspend(&pdev->dev);
  3307. }
  3308. /*
  3309. * add delay to ensure clk release happen
  3310. * if interrupt triggered for clk stop,
  3311. * wait for it to exit
  3312. */
  3313. usleep_range(10000, 10500);
  3314. }
  3315. swrm->mclk_freq = *(int *)data;
  3316. swrm->bus_clk = swrm->mclk_freq;
  3317. mutex_unlock(&swrm->mlock);
  3318. }
  3319. break;
  3320. case SWR_DEVICE_SSR_DOWN:
  3321. trace_printk("%s: swr device down called\n", __func__);
  3322. mutex_lock(&swrm->mlock);
  3323. mutex_lock(&swrm->devlock);
  3324. swrm->dev_up = false;
  3325. mutex_unlock(&swrm->devlock);
  3326. if (swrm->state == SWR_MSTR_DOWN)
  3327. dev_dbg(swrm->dev, "%s:SWR master is already Down:%d\n",
  3328. __func__, swrm->state);
  3329. else
  3330. swrm_device_down(&pdev->dev);
  3331. mutex_lock(&swrm->devlock);
  3332. if (swrm->hw_core_clk_en)
  3333. digital_cdc_rsc_mgr_hw_vote_disable(
  3334. swrm->lpass_core_hw_vote, swrm->dev);
  3335. swrm->hw_core_clk_en = 0;
  3336. if (swrm->aud_core_clk_en)
  3337. digital_cdc_rsc_mgr_hw_vote_disable(
  3338. swrm->lpass_core_audio, swrm->dev);
  3339. swrm->aud_core_clk_en = 0;
  3340. mutex_unlock(&swrm->devlock);
  3341. mutex_lock(&swrm->reslock);
  3342. swrm->state = SWR_MSTR_SSR;
  3343. mutex_unlock(&swrm->reslock);
  3344. mutex_unlock(&swrm->mlock);
  3345. break;
  3346. case SWR_DEVICE_SSR_UP:
  3347. /* wait for clk voting to be zero */
  3348. trace_printk("%s: swr device up called\n", __func__);
  3349. reinit_completion(&swrm->clk_off_complete);
  3350. if (swrm->clk_ref_count &&
  3351. !wait_for_completion_timeout(&swrm->clk_off_complete,
  3352. msecs_to_jiffies(500)))
  3353. dev_err_ratelimited(swrm->dev, "%s: clock voting not zero\n",
  3354. __func__);
  3355. if (swrm->state == SWR_MSTR_UP ||
  3356. pm_runtime_autosuspend_expiration(swrm->dev)) {
  3357. swrm->state = SWR_MSTR_SSR_RESET;
  3358. dev_dbg(swrm->dev,
  3359. "%s:suspend swr if active at SSR up\n",
  3360. __func__);
  3361. pm_runtime_set_autosuspend_delay(swrm->dev,
  3362. ERR_AUTO_SUSPEND_TIMER_VAL);
  3363. usleep_range(50000, 50100);
  3364. swrm->state = SWR_MSTR_SSR;
  3365. }
  3366. mutex_lock(&swrm->devlock);
  3367. swrm->dev_up = true;
  3368. mutex_unlock(&swrm->devlock);
  3369. break;
  3370. case SWR_DEVICE_DOWN:
  3371. dev_dbg(swrm->dev, "%s: swr master down called\n", __func__);
  3372. trace_printk("%s: swr master down called\n", __func__);
  3373. mutex_lock(&swrm->mlock);
  3374. if (swrm->state == SWR_MSTR_DOWN)
  3375. dev_dbg(swrm->dev, "%s:SWR master is already Down:%d\n",
  3376. __func__, swrm->state);
  3377. else
  3378. swrm_device_down(&pdev->dev);
  3379. mutex_unlock(&swrm->mlock);
  3380. break;
  3381. case SWR_DEVICE_UP:
  3382. dev_dbg(swrm->dev, "%s: swr master up called\n", __func__);
  3383. trace_printk("%s: swr master up called\n", __func__);
  3384. mutex_lock(&swrm->devlock);
  3385. if (!swrm->dev_up) {
  3386. dev_dbg(swrm->dev, "SSR not complete yet\n");
  3387. mutex_unlock(&swrm->devlock);
  3388. return -EBUSY;
  3389. }
  3390. mutex_unlock(&swrm->devlock);
  3391. mutex_lock(&swrm->mlock);
  3392. pm_runtime_mark_last_busy(&pdev->dev);
  3393. pm_runtime_get_sync(&pdev->dev);
  3394. mutex_lock(&swrm->reslock);
  3395. list_for_each_entry(swr_dev, &mstr->devices, dev_list) {
  3396. ret = swr_reset_device(swr_dev);
  3397. if (ret == -ENODEV) {
  3398. dev_dbg_ratelimited(swrm->dev,
  3399. "%s slave reset not implemented\n",
  3400. __func__);
  3401. ret = 0;
  3402. } else if (ret) {
  3403. dev_err_ratelimited(swrm->dev,
  3404. "%s: failed to reset swr device %d\n",
  3405. __func__, swr_dev->dev_num);
  3406. swrm_clk_request(swrm, false);
  3407. }
  3408. }
  3409. pm_runtime_mark_last_busy(&pdev->dev);
  3410. pm_runtime_put_autosuspend(&pdev->dev);
  3411. mutex_unlock(&swrm->reslock);
  3412. mutex_unlock(&swrm->mlock);
  3413. break;
  3414. case SWR_SET_NUM_RX_CH:
  3415. if (!data) {
  3416. dev_err_ratelimited(swrm->dev, "%s: data is NULL\n", __func__);
  3417. ret = -EINVAL;
  3418. } else {
  3419. mutex_lock(&swrm->mlock);
  3420. swrm->num_rx_chs = *(int *)data;
  3421. if ((swrm->num_rx_chs > 1) && !swrm->num_cfg_devs) {
  3422. list_for_each_entry(swr_dev, &mstr->devices,
  3423. dev_list) {
  3424. ret = swr_set_device_group(swr_dev,
  3425. SWR_BROADCAST);
  3426. if (ret)
  3427. dev_err_ratelimited(swrm->dev,
  3428. "%s: set num ch failed\n",
  3429. __func__);
  3430. }
  3431. } else {
  3432. list_for_each_entry(swr_dev, &mstr->devices,
  3433. dev_list) {
  3434. ret = swr_set_device_group(swr_dev,
  3435. SWR_GROUP_NONE);
  3436. if (ret)
  3437. dev_err_ratelimited(swrm->dev,
  3438. "%s: set num ch failed\n",
  3439. __func__);
  3440. }
  3441. }
  3442. mutex_unlock(&swrm->mlock);
  3443. }
  3444. break;
  3445. case SWR_REGISTER_WAKE_IRQ:
  3446. if (!data) {
  3447. dev_err_ratelimited(swrm->dev, "%s: reg wake irq data is NULL\n",
  3448. __func__);
  3449. ret = -EINVAL;
  3450. } else {
  3451. mutex_lock(&swrm->mlock);
  3452. swrm->ipc_wakeup = *(u32 *)data;
  3453. ret = swrm_register_wake_irq(swrm);
  3454. if (ret)
  3455. dev_err_ratelimited(swrm->dev, "%s: register wake_irq failed\n",
  3456. __func__);
  3457. mutex_unlock(&swrm->mlock);
  3458. }
  3459. break;
  3460. case SWR_REGISTER_WAKEUP:
  3461. //msm_aud_evt_blocking_notifier_call_chain(
  3462. // SWR_WAKE_IRQ_REGISTER, (void *)swrm);
  3463. break;
  3464. case SWR_DEREGISTER_WAKEUP:
  3465. //msm_aud_evt_blocking_notifier_call_chain(
  3466. // SWR_WAKE_IRQ_DEREGISTER, (void *)swrm);
  3467. break;
  3468. case SWR_SET_PORT_MAP:
  3469. if (!data) {
  3470. dev_err_ratelimited(swrm->dev, "%s: data is NULL for id=%d\n",
  3471. __func__, id);
  3472. ret = -EINVAL;
  3473. } else {
  3474. mutex_lock(&swrm->mlock);
  3475. port_cfg = (struct swrm_port_config *)data;
  3476. if (!port_cfg->size) {
  3477. ret = -EINVAL;
  3478. goto done;
  3479. }
  3480. ret = swrm_alloc_port_mem(&pdev->dev, swrm,
  3481. port_cfg->uc, port_cfg->size);
  3482. if (!ret)
  3483. swrm_copy_port_config(swrm, port_cfg,
  3484. port_cfg->size);
  3485. done:
  3486. mutex_unlock(&swrm->mlock);
  3487. }
  3488. break;
  3489. default:
  3490. dev_err_ratelimited(swrm->dev, "%s: swr master unknown id %d\n",
  3491. __func__, id);
  3492. break;
  3493. }
  3494. return ret;
  3495. }
  3496. EXPORT_SYMBOL(swrm_wcd_notify);
  3497. /*
  3498. * swrm_pm_cmpxchg:
  3499. * Check old state and exchange with pm new state
  3500. * if old state matches with current state
  3501. *
  3502. * @swrm: pointer to wcd core resource
  3503. * @o: pm old state
  3504. * @n: pm new state
  3505. *
  3506. * Returns old state
  3507. */
  3508. static enum swrm_pm_state swrm_pm_cmpxchg(
  3509. struct swr_mstr_ctrl *swrm,
  3510. enum swrm_pm_state o,
  3511. enum swrm_pm_state n)
  3512. {
  3513. enum swrm_pm_state old;
  3514. if (!swrm)
  3515. return o;
  3516. mutex_lock(&swrm->pm_lock);
  3517. old = swrm->pm_state;
  3518. if (old == o)
  3519. swrm->pm_state = n;
  3520. mutex_unlock(&swrm->pm_lock);
  3521. return old;
  3522. }
  3523. static bool swrm_lock_sleep(struct swr_mstr_ctrl *swrm)
  3524. {
  3525. enum swrm_pm_state os;
  3526. /*
  3527. * swrm_{lock/unlock}_sleep will be called by swr irq handler
  3528. * and slave wake up requests..
  3529. *
  3530. * If system didn't resume, we can simply return false so
  3531. * IRQ handler can return without handling IRQ.
  3532. */
  3533. mutex_lock(&swrm->pm_lock);
  3534. if (swrm->wlock_holders++ == 0) {
  3535. dev_dbg(swrm->dev, "%s: holding wake lock\n", __func__);
  3536. cpu_latency_qos_update_request(&swrm->pm_qos_req,
  3537. CPU_IDLE_LATENCY);
  3538. pm_stay_awake(swrm->dev);
  3539. }
  3540. mutex_unlock(&swrm->pm_lock);
  3541. if (!wait_event_timeout(swrm->pm_wq,
  3542. ((os = swrm_pm_cmpxchg(swrm,
  3543. SWRM_PM_SLEEPABLE,
  3544. SWRM_PM_AWAKE)) ==
  3545. SWRM_PM_SLEEPABLE ||
  3546. (os == SWRM_PM_AWAKE)),
  3547. msecs_to_jiffies(
  3548. SWRM_SYSTEM_RESUME_TIMEOUT_MS))) {
  3549. dev_err_ratelimited(swrm->dev, "%s: system didn't resume within %dms, s %d, w %d\n",
  3550. __func__, SWRM_SYSTEM_RESUME_TIMEOUT_MS, swrm->pm_state,
  3551. swrm->wlock_holders);
  3552. swrm_unlock_sleep(swrm);
  3553. return false;
  3554. }
  3555. wake_up_all(&swrm->pm_wq);
  3556. return true;
  3557. }
  3558. static void swrm_unlock_sleep(struct swr_mstr_ctrl *swrm)
  3559. {
  3560. mutex_lock(&swrm->pm_lock);
  3561. if (--swrm->wlock_holders == 0) {
  3562. dev_dbg(swrm->dev, "%s: releasing wake lock pm_state %d -> %d\n",
  3563. __func__, swrm->pm_state, SWRM_PM_SLEEPABLE);
  3564. /*
  3565. * if swrm_lock_sleep failed, pm_state would be still
  3566. * swrm_PM_ASLEEP, don't overwrite
  3567. */
  3568. if (likely(swrm->pm_state == SWRM_PM_AWAKE))
  3569. swrm->pm_state = SWRM_PM_SLEEPABLE;
  3570. cpu_latency_qos_update_request(&swrm->pm_qos_req,
  3571. PM_QOS_DEFAULT_VALUE);
  3572. pm_relax(swrm->dev);
  3573. }
  3574. mutex_unlock(&swrm->pm_lock);
  3575. wake_up_all(&swrm->pm_wq);
  3576. }
  3577. #ifdef CONFIG_PM_SLEEP
  3578. static int swrm_suspend(struct device *dev)
  3579. {
  3580. int ret = -EBUSY;
  3581. struct platform_device *pdev = to_platform_device(dev);
  3582. struct swr_mstr_ctrl *swrm = platform_get_drvdata(pdev);
  3583. dev_dbg(dev, "%s: system suspend, state: %d\n", __func__, swrm->state);
  3584. mutex_lock(&swrm->pm_lock);
  3585. if (swrm->pm_state == SWRM_PM_SLEEPABLE) {
  3586. dev_dbg(swrm->dev, "%s: suspending system, state %d, wlock %d\n",
  3587. __func__, swrm->pm_state,
  3588. swrm->wlock_holders);
  3589. /*
  3590. * before updating the pm_state to ASLEEP, check if device is
  3591. * runtime suspended or not. If it is not, then first make it
  3592. * runtime suspend, and then update the pm_state to ASLEEP.
  3593. */
  3594. mutex_unlock(&swrm->pm_lock); /* release pm_lock before dev suspend */
  3595. swrm_device_suspend(swrm->dev); /* runtime suspend the device */
  3596. mutex_lock(&swrm->pm_lock); /* acquire pm_lock and update state */
  3597. if (swrm->pm_state == SWRM_PM_SLEEPABLE) {
  3598. swrm->pm_state = SWRM_PM_ASLEEP;
  3599. } else if (swrm->pm_state == SWRM_PM_AWAKE) {
  3600. ret = -EBUSY;
  3601. mutex_unlock(&swrm->pm_lock);
  3602. goto check_ebusy;
  3603. }
  3604. } else if (swrm->pm_state == SWRM_PM_AWAKE) {
  3605. /*
  3606. * unlock to wait for pm_state == SWRM_PM_SLEEPABLE
  3607. * then set to SWRM_PM_ASLEEP
  3608. */
  3609. dev_dbg(swrm->dev, "%s: waiting to suspend system, state %d, wlock %d\n",
  3610. __func__, swrm->pm_state,
  3611. swrm->wlock_holders);
  3612. mutex_unlock(&swrm->pm_lock);
  3613. if (!(wait_event_timeout(swrm->pm_wq, swrm_pm_cmpxchg(
  3614. swrm, SWRM_PM_SLEEPABLE,
  3615. SWRM_PM_ASLEEP) ==
  3616. SWRM_PM_SLEEPABLE,
  3617. msecs_to_jiffies(
  3618. SWRM_SYS_SUSPEND_WAIT)))) {
  3619. dev_dbg(swrm->dev, "%s: suspend failed state %d, wlock %d\n",
  3620. __func__, swrm->pm_state,
  3621. swrm->wlock_holders);
  3622. return -EBUSY;
  3623. } else {
  3624. dev_dbg(swrm->dev,
  3625. "%s: done, state %d, wlock %d\n",
  3626. __func__, swrm->pm_state,
  3627. swrm->wlock_holders);
  3628. }
  3629. mutex_lock(&swrm->pm_lock);
  3630. } else if (swrm->pm_state == SWRM_PM_ASLEEP) {
  3631. dev_dbg(swrm->dev, "%s: system is already suspended, state %d, wlock %d\n",
  3632. __func__, swrm->pm_state,
  3633. swrm->wlock_holders);
  3634. }
  3635. mutex_unlock(&swrm->pm_lock);
  3636. if ((!pm_runtime_enabled(dev) || !pm_runtime_suspended(dev))) {
  3637. ret = swrm_runtime_suspend(dev);
  3638. if (!ret) {
  3639. /*
  3640. * Synchronize runtime-pm and system-pm states:
  3641. * At this point, we are already suspended. If
  3642. * runtime-pm still thinks its active, then
  3643. * make sure its status is in sync with HW
  3644. * status. The three below calls let the
  3645. * runtime-pm know that we are suspended
  3646. * already without re-invoking the suspend
  3647. * callback
  3648. */
  3649. pm_runtime_disable(dev);
  3650. pm_runtime_set_suspended(dev);
  3651. pm_runtime_enable(dev);
  3652. }
  3653. }
  3654. check_ebusy:
  3655. if (ret == -EBUSY) {
  3656. /*
  3657. * There is a possibility that some audio stream is active
  3658. * during suspend. We dont want to return suspend failure in
  3659. * that case so that display and relevant components can still
  3660. * go to suspend.
  3661. * If there is some other error, then it should be passed-on
  3662. * to system level suspend
  3663. */
  3664. ret = 0;
  3665. }
  3666. return ret;
  3667. }
  3668. static int swrm_resume(struct device *dev)
  3669. {
  3670. int ret = 0;
  3671. struct platform_device *pdev = to_platform_device(dev);
  3672. struct swr_mstr_ctrl *swrm = platform_get_drvdata(pdev);
  3673. dev_dbg(dev, "%s: system resume, state: %d\n", __func__, swrm->state);
  3674. if (!pm_runtime_enabled(dev) || !pm_runtime_suspend(dev)) {
  3675. ret = swrm_runtime_resume(dev);
  3676. if (!ret) {
  3677. pm_runtime_mark_last_busy(dev);
  3678. pm_request_autosuspend(dev);
  3679. }
  3680. }
  3681. mutex_lock(&swrm->pm_lock);
  3682. if (swrm->pm_state == SWRM_PM_ASLEEP) {
  3683. dev_dbg(swrm->dev,
  3684. "%s: resuming system, state %d, wlock %d\n",
  3685. __func__, swrm->pm_state,
  3686. swrm->wlock_holders);
  3687. swrm->pm_state = SWRM_PM_SLEEPABLE;
  3688. } else {
  3689. dev_dbg(swrm->dev, "%s: system is already awake, state %d wlock %d\n",
  3690. __func__, swrm->pm_state,
  3691. swrm->wlock_holders);
  3692. }
  3693. mutex_unlock(&swrm->pm_lock);
  3694. wake_up_all(&swrm->pm_wq);
  3695. return ret;
  3696. }
  3697. #endif /* CONFIG_PM_SLEEP */
  3698. static const struct dev_pm_ops swrm_dev_pm_ops = {
  3699. SET_SYSTEM_SLEEP_PM_OPS(
  3700. swrm_suspend,
  3701. swrm_resume
  3702. )
  3703. SET_RUNTIME_PM_OPS(
  3704. swrm_runtime_suspend,
  3705. swrm_runtime_resume,
  3706. NULL
  3707. )
  3708. };
  3709. static const struct of_device_id swrm_dt_match[] = {
  3710. {
  3711. .compatible = "qcom,swr-mstr",
  3712. },
  3713. {}
  3714. };
  3715. static struct platform_driver swr_mstr_driver = {
  3716. .probe = swrm_probe,
  3717. .remove = swrm_remove,
  3718. .driver = {
  3719. .name = SWR_WCD_NAME,
  3720. .owner = THIS_MODULE,
  3721. .pm = &swrm_dev_pm_ops,
  3722. .of_match_table = swrm_dt_match,
  3723. .suppress_bind_attrs = true,
  3724. },
  3725. };
  3726. static int __init swrm_init(void)
  3727. {
  3728. return platform_driver_register(&swr_mstr_driver);
  3729. }
  3730. module_init(swrm_init);
  3731. static void __exit swrm_exit(void)
  3732. {
  3733. platform_driver_unregister(&swr_mstr_driver);
  3734. }
  3735. module_exit(swrm_exit);
  3736. MODULE_LICENSE("GPL v2");
  3737. MODULE_DESCRIPTION("SoundWire Master Controller");
  3738. MODULE_ALIAS("platform:swr-mstr");