swr-mstr-ctrl.c 102 KB

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