swr-mstr-ctrl.c 90 KB

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