swr-mstr-ctrl.c 107 KB

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