swr-mstr-ctrl.c 93 KB

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