swr-mstr-ctrl.c 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546
  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 + 1), 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 + 1), 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 & 0xFF);
  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. reg[len] = SWRM_DP_SAMPLECTRL2_BANK((i + 1), bank);
  1119. val[len++] = ((mport->sinterval >> 8) & 0xFF);
  1120. if (mport->lane_ctrl != SWR_INVALID_PARAM) {
  1121. reg[len] = SWRM_DP_PORT_CTRL_2_BANK((i + 1), bank);
  1122. val[len++] = mport->lane_ctrl;
  1123. }
  1124. if (mport->word_length != SWR_INVALID_PARAM) {
  1125. reg[len] = SWRM_DP_BLOCK_CTRL_1((i + 1));
  1126. val[len++] = mport->word_length;
  1127. }
  1128. if (mport->blk_grp_count != SWR_INVALID_PARAM) {
  1129. reg[len] = SWRM_DP_BLOCK_CTRL2_BANK((i + 1), bank);
  1130. val[len++] = mport->blk_grp_count;
  1131. }
  1132. if (mport->hstart != SWR_INVALID_PARAM
  1133. && mport->hstop != SWR_INVALID_PARAM) {
  1134. reg[len] = SWRM_DP_PORT_HCTRL_BANK((i + 1), bank);
  1135. hparams = (mport->hstop << 4) | mport->hstart;
  1136. val[len++] = hparams;
  1137. } else {
  1138. reg[len] = SWRM_DP_PORT_HCTRL_BANK((i + 1), bank);
  1139. hparams = (SWR_HSTOP_MAX_VAL << 4) | SWR_HSTART_MIN_VAL;
  1140. val[len++] = hparams;
  1141. }
  1142. if (mport->blk_pack_mode != SWR_INVALID_PARAM) {
  1143. reg[len] = SWRM_DP_BLOCK_CTRL3_BANK((i + 1), bank);
  1144. val[len++] = mport->blk_pack_mode;
  1145. }
  1146. mport->ch_en = mport->req_ch;
  1147. }
  1148. swrm_reg_dump(swrm, reg, val, len, __func__);
  1149. swr_master_bulk_write(swrm, reg, val, len);
  1150. }
  1151. static void swrm_apply_port_config(struct swr_master *master)
  1152. {
  1153. u8 bank;
  1154. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  1155. if (!swrm) {
  1156. pr_err("%s: Invalid handle to swr controller\n",
  1157. __func__);
  1158. return;
  1159. }
  1160. bank = get_inactive_bank_num(swrm);
  1161. dev_dbg(swrm->dev, "%s: enter bank: %d master_ports: %d\n",
  1162. __func__, bank, master->num_port);
  1163. swrm_cmd_fifo_wr_cmd(swrm, 0x01, 0xF, 0x00,
  1164. SWRS_SCP_HOST_CLK_DIV2_CTL_BANK(bank));
  1165. swrm_copy_data_port_config(master, bank);
  1166. }
  1167. static int swrm_slvdev_datapath_control(struct swr_master *master, bool enable)
  1168. {
  1169. u8 bank;
  1170. u32 value = 0, n_row = 0, n_col = 0;
  1171. u32 row = 0, col = 0;
  1172. int bus_clk_div_factor;
  1173. int ret;
  1174. u8 ssp_period = 0;
  1175. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  1176. int mask = (SWRM_ROW_CTRL_MASK | SWRM_COL_CTRL_MASK |
  1177. SWRM_CLK_DIV_MASK | SWRM_SSP_PERIOD_MASK);
  1178. u8 inactive_bank;
  1179. int frame_sync = SWRM_FRAME_SYNC_SEL;
  1180. if (!swrm) {
  1181. pr_err("%s: swrm is null\n", __func__);
  1182. return -EFAULT;
  1183. }
  1184. mutex_lock(&swrm->mlock);
  1185. /*
  1186. * During disable if master is already down, which implies an ssr/pdr
  1187. * scenario, just mark ports as disabled and exit
  1188. */
  1189. if (swrm->state == SWR_MSTR_SSR && !enable) {
  1190. if (!test_bit(DISABLE_PENDING, &swrm->port_req_pending)) {
  1191. dev_dbg(swrm->dev, "%s:No pending disconn port req\n",
  1192. __func__);
  1193. goto exit;
  1194. }
  1195. clear_bit(DISABLE_PENDING, &swrm->port_req_pending);
  1196. swrm_cleanup_disabled_port_reqs(master);
  1197. if (!swrm_is_port_en(master)) {
  1198. dev_dbg(&master->dev, "%s: pm_runtime auto suspend triggered\n",
  1199. __func__);
  1200. pm_runtime_mark_last_busy(swrm->dev);
  1201. pm_runtime_put_autosuspend(swrm->dev);
  1202. }
  1203. goto exit;
  1204. }
  1205. bank = get_inactive_bank_num(swrm);
  1206. if (enable) {
  1207. if (!test_bit(ENABLE_PENDING, &swrm->port_req_pending)) {
  1208. dev_dbg(swrm->dev, "%s:No pending connect port req\n",
  1209. __func__);
  1210. goto exit;
  1211. }
  1212. clear_bit(ENABLE_PENDING, &swrm->port_req_pending);
  1213. ret = swrm_get_port_config(swrm);
  1214. if (ret) {
  1215. /* cannot accommodate ports */
  1216. swrm_cleanup_disabled_port_reqs(master);
  1217. mutex_unlock(&swrm->mlock);
  1218. return -EINVAL;
  1219. }
  1220. swr_master_write(swrm, SWRM_CPU1_INTERRUPT_EN,
  1221. SWRM_INTERRUPT_STATUS_MASK);
  1222. /* apply the new port config*/
  1223. swrm_apply_port_config(master);
  1224. } else {
  1225. if (!test_bit(DISABLE_PENDING, &swrm->port_req_pending)) {
  1226. dev_dbg(swrm->dev, "%s:No pending disconn port req\n",
  1227. __func__);
  1228. goto exit;
  1229. }
  1230. clear_bit(DISABLE_PENDING, &swrm->port_req_pending);
  1231. swrm_disable_ports(master, bank);
  1232. }
  1233. dev_dbg(swrm->dev, "%s: enable: %d, cfg_devs: %d freq %d\n",
  1234. __func__, enable, swrm->num_cfg_devs, swrm->mclk_freq);
  1235. if (enable) {
  1236. /* set col = 16 */
  1237. n_col = SWR_MAX_COL;
  1238. col = SWRM_COL_16;
  1239. if (swrm->bus_clk == MCLK_FREQ_LP) {
  1240. n_col = SWR_MIN_COL;
  1241. col = SWRM_COL_02;
  1242. }
  1243. } else {
  1244. /*
  1245. * Do not change to col = 2 if there are still active ports
  1246. */
  1247. if (!master->num_port) {
  1248. n_col = SWR_MIN_COL;
  1249. col = SWRM_COL_02;
  1250. } else {
  1251. n_col = SWR_MAX_COL;
  1252. col = SWRM_COL_16;
  1253. }
  1254. }
  1255. /* Use default 50 * x, frame shape. Change based on mclk */
  1256. if (swrm->mclk_freq == MCLK_FREQ_NATIVE) {
  1257. dev_dbg(swrm->dev, "setting 64 x %d frameshape\n", col);
  1258. n_row = SWR_ROW_64;
  1259. row = SWRM_ROW_64;
  1260. frame_sync = SWRM_FRAME_SYNC_SEL_NATIVE;
  1261. } else {
  1262. dev_dbg(swrm->dev, "setting 50 x %d frameshape\n", col);
  1263. n_row = SWR_ROW_50;
  1264. row = SWRM_ROW_50;
  1265. frame_sync = SWRM_FRAME_SYNC_SEL;
  1266. }
  1267. ssp_period = swrm_get_ssp_period(swrm, row, col, frame_sync);
  1268. bus_clk_div_factor = swrm_get_clk_div(swrm->mclk_freq, swrm->bus_clk);
  1269. dev_dbg(swrm->dev, "%s: ssp_period: %d, bus_clk_div:%d \n", __func__,
  1270. ssp_period, bus_clk_div_factor);
  1271. value = swr_master_read(swrm, SWRM_MCP_FRAME_CTRL_BANK(bank));
  1272. value &= (~mask);
  1273. value |= ((n_row << SWRM_MCP_FRAME_CTRL_BANK_ROW_CTRL_SHFT) |
  1274. (n_col << SWRM_MCP_FRAME_CTRL_BANK_COL_CTRL_SHFT) |
  1275. (bus_clk_div_factor <<
  1276. SWRM_MCP_FRAME_CTRL_BANK_CLK_DIV_VALUE_SHFT) |
  1277. ((ssp_period - 1) << SWRM_MCP_FRAME_CTRL_BANK_SSP_PERIOD_SHFT));
  1278. swr_master_write(swrm, SWRM_MCP_FRAME_CTRL_BANK(bank), value);
  1279. dev_dbg(swrm->dev, "%s: regaddr: 0x%x, value: 0x%x\n", __func__,
  1280. SWRM_MCP_FRAME_CTRL_BANK(bank), value);
  1281. enable_bank_switch(swrm, bank, n_row, n_col);
  1282. inactive_bank = bank ? 0 : 1;
  1283. if (enable)
  1284. swrm_copy_data_port_config(master, inactive_bank);
  1285. else {
  1286. swrm_disable_ports(master, inactive_bank);
  1287. swrm_cleanup_disabled_port_reqs(master);
  1288. }
  1289. if (!swrm_is_port_en(master)) {
  1290. dev_dbg(&master->dev, "%s: pm_runtime auto suspend triggered\n",
  1291. __func__);
  1292. pm_runtime_mark_last_busy(swrm->dev);
  1293. pm_runtime_put_autosuspend(swrm->dev);
  1294. }
  1295. exit:
  1296. mutex_unlock(&swrm->mlock);
  1297. return 0;
  1298. }
  1299. static int swrm_connect_port(struct swr_master *master,
  1300. struct swr_params *portinfo)
  1301. {
  1302. int i;
  1303. struct swr_port_info *port_req;
  1304. int ret = 0;
  1305. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  1306. struct swrm_mports *mport;
  1307. u8 mstr_port_id, mstr_ch_msk;
  1308. dev_dbg(&master->dev, "%s: enter\n", __func__);
  1309. if (!portinfo)
  1310. return -EINVAL;
  1311. if (!swrm) {
  1312. dev_err(&master->dev,
  1313. "%s: Invalid handle to swr controller\n",
  1314. __func__);
  1315. return -EINVAL;
  1316. }
  1317. mutex_lock(&swrm->mlock);
  1318. mutex_lock(&swrm->devlock);
  1319. if (!swrm->dev_up) {
  1320. mutex_unlock(&swrm->devlock);
  1321. mutex_unlock(&swrm->mlock);
  1322. return -EINVAL;
  1323. }
  1324. mutex_unlock(&swrm->devlock);
  1325. if (!swrm_is_port_en(master))
  1326. pm_runtime_get_sync(swrm->dev);
  1327. for (i = 0; i < portinfo->num_port; i++) {
  1328. ret = swrm_get_master_port(swrm, &mstr_port_id, &mstr_ch_msk,
  1329. portinfo->port_type[i],
  1330. portinfo->port_id[i]);
  1331. if (ret) {
  1332. dev_err(&master->dev,
  1333. "%s: mstr portid for slv port %d not found\n",
  1334. __func__, portinfo->port_id[i]);
  1335. goto port_fail;
  1336. }
  1337. mport = &(swrm->mport_cfg[mstr_port_id]);
  1338. /* get port req */
  1339. port_req = swrm_get_port_req(mport, portinfo->port_id[i],
  1340. portinfo->dev_num);
  1341. if (!port_req) {
  1342. dev_dbg(&master->dev, "%s: new req:port id %d dev %d\n",
  1343. __func__, portinfo->port_id[i],
  1344. portinfo->dev_num);
  1345. port_req = kzalloc(sizeof(struct swr_port_info),
  1346. GFP_KERNEL);
  1347. if (!port_req) {
  1348. ret = -ENOMEM;
  1349. goto mem_fail;
  1350. }
  1351. port_req->dev_num = portinfo->dev_num;
  1352. port_req->slave_port_id = portinfo->port_id[i];
  1353. port_req->num_ch = portinfo->num_ch[i];
  1354. port_req->ch_rate = portinfo->ch_rate[i];
  1355. port_req->ch_en = 0;
  1356. port_req->master_port_id = mstr_port_id;
  1357. list_add(&port_req->list, &mport->port_req_list);
  1358. }
  1359. port_req->req_ch |= portinfo->ch_en[i];
  1360. dev_dbg(&master->dev,
  1361. "%s: mstr port %d, slv port %d ch_rate %d num_ch %d\n",
  1362. __func__, port_req->master_port_id,
  1363. port_req->slave_port_id, port_req->ch_rate,
  1364. port_req->num_ch);
  1365. /* Put the port req on master port */
  1366. mport = &(swrm->mport_cfg[mstr_port_id]);
  1367. mport->port_en = true;
  1368. mport->req_ch |= mstr_ch_msk;
  1369. master->port_en_mask |= (1 << mstr_port_id);
  1370. if (swrm->clk_stop_mode0_supp &&
  1371. swrm->dynamic_port_map_supported) {
  1372. mport->ch_rate += portinfo->ch_rate[i];
  1373. swrm_update_bus_clk(swrm);
  1374. }
  1375. }
  1376. master->num_port += portinfo->num_port;
  1377. set_bit(ENABLE_PENDING, &swrm->port_req_pending);
  1378. swr_port_response(master, portinfo->tid);
  1379. mutex_unlock(&swrm->mlock);
  1380. return 0;
  1381. port_fail:
  1382. mem_fail:
  1383. /* cleanup port reqs in error condition */
  1384. swrm_cleanup_disabled_port_reqs(master);
  1385. mutex_unlock(&swrm->mlock);
  1386. return ret;
  1387. }
  1388. static int swrm_disconnect_port(struct swr_master *master,
  1389. struct swr_params *portinfo)
  1390. {
  1391. int i, ret = 0;
  1392. struct swr_port_info *port_req;
  1393. struct swrm_mports *mport;
  1394. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(master);
  1395. u8 mstr_port_id, mstr_ch_mask;
  1396. if (!swrm) {
  1397. dev_err(&master->dev,
  1398. "%s: Invalid handle to swr controller\n",
  1399. __func__);
  1400. return -EINVAL;
  1401. }
  1402. if (!portinfo) {
  1403. dev_err(&master->dev, "%s: portinfo is NULL\n", __func__);
  1404. return -EINVAL;
  1405. }
  1406. mutex_lock(&swrm->mlock);
  1407. for (i = 0; i < portinfo->num_port; i++) {
  1408. ret = swrm_get_master_port(swrm, &mstr_port_id, &mstr_ch_mask,
  1409. portinfo->port_type[i], portinfo->port_id[i]);
  1410. if (ret) {
  1411. dev_err(&master->dev,
  1412. "%s: mstr portid for slv port %d not found\n",
  1413. __func__, portinfo->port_id[i]);
  1414. mutex_unlock(&swrm->mlock);
  1415. return -EINVAL;
  1416. }
  1417. mport = &(swrm->mport_cfg[mstr_port_id]);
  1418. /* get port req */
  1419. port_req = swrm_get_port_req(mport, portinfo->port_id[i],
  1420. portinfo->dev_num);
  1421. if (!port_req) {
  1422. dev_err(&master->dev, "%s:port not enabled : port %d\n",
  1423. __func__, portinfo->port_id[i]);
  1424. mutex_unlock(&swrm->mlock);
  1425. return -EINVAL;
  1426. }
  1427. port_req->req_ch &= ~portinfo->ch_en[i];
  1428. mport->req_ch &= ~mstr_ch_mask;
  1429. if (swrm->clk_stop_mode0_supp &&
  1430. swrm->dynamic_port_map_supported &&
  1431. !mport->req_ch) {
  1432. mport->ch_rate = 0;
  1433. swrm_update_bus_clk(swrm);
  1434. }
  1435. }
  1436. master->num_port -= portinfo->num_port;
  1437. set_bit(DISABLE_PENDING, &swrm->port_req_pending);
  1438. swr_port_response(master, portinfo->tid);
  1439. mutex_unlock(&swrm->mlock);
  1440. return 0;
  1441. }
  1442. static int swrm_find_alert_slave(struct swr_mstr_ctrl *swrm,
  1443. int status, u8 *devnum)
  1444. {
  1445. int i;
  1446. bool found = false;
  1447. for (i = 0; i < (swrm->master.num_dev + 1); i++) {
  1448. if ((status & SWRM_MCP_SLV_STATUS_MASK) == SWR_ALERT) {
  1449. *devnum = i;
  1450. found = true;
  1451. break;
  1452. }
  1453. status >>= 2;
  1454. }
  1455. if (found)
  1456. return 0;
  1457. else
  1458. return -EINVAL;
  1459. }
  1460. static void swrm_enable_slave_irq(struct swr_mstr_ctrl *swrm)
  1461. {
  1462. int i;
  1463. int status = 0;
  1464. status = swr_master_read(swrm, SWRM_MCP_SLV_STATUS);
  1465. if (!status) {
  1466. dev_dbg_ratelimited(swrm->dev, "%s: slaves status is 0x%x\n",
  1467. __func__, status);
  1468. return;
  1469. }
  1470. dev_dbg(swrm->dev, "%s: slave status: 0x%x\n", __func__, status);
  1471. for (i = 0; i < (swrm->master.num_dev + 1); i++) {
  1472. if (status & SWRM_MCP_SLV_STATUS_MASK) {
  1473. swrm_cmd_fifo_wr_cmd(swrm, 0xFF, i, 0x0,
  1474. SWRS_SCP_INT_STATUS_CLEAR_1);
  1475. swrm_cmd_fifo_wr_cmd(swrm, 0x4, i, 0x0,
  1476. SWRS_SCP_INT_STATUS_MASK_1);
  1477. }
  1478. status >>= 2;
  1479. }
  1480. }
  1481. static int swrm_check_slave_change_status(struct swr_mstr_ctrl *swrm,
  1482. int status, u8 *devnum)
  1483. {
  1484. int i;
  1485. int new_sts = status;
  1486. int ret = SWR_NOT_PRESENT;
  1487. if (status != swrm->slave_status) {
  1488. for (i = 0; i < (swrm->master.num_dev + 1); i++) {
  1489. if ((status & SWRM_MCP_SLV_STATUS_MASK) !=
  1490. (swrm->slave_status & SWRM_MCP_SLV_STATUS_MASK)) {
  1491. ret = (status & SWRM_MCP_SLV_STATUS_MASK);
  1492. *devnum = i;
  1493. break;
  1494. }
  1495. status >>= 2;
  1496. swrm->slave_status >>= 2;
  1497. }
  1498. swrm->slave_status = new_sts;
  1499. }
  1500. return ret;
  1501. }
  1502. static irqreturn_t swr_mstr_interrupt(int irq, void *dev)
  1503. {
  1504. struct swr_mstr_ctrl *swrm = dev;
  1505. u32 value, intr_sts, intr_sts_masked;
  1506. u32 temp = 0;
  1507. u32 status, chg_sts, i;
  1508. u8 devnum = 0;
  1509. int ret = IRQ_HANDLED;
  1510. struct swr_device *swr_dev;
  1511. struct swr_master *mstr = &swrm->master;
  1512. int retry = 5;
  1513. if (unlikely(swrm_lock_sleep(swrm) == false)) {
  1514. dev_err(swrm->dev, "%s Failed to hold suspend\n", __func__);
  1515. return IRQ_NONE;
  1516. }
  1517. mutex_lock(&swrm->reslock);
  1518. if (swrm_request_hw_vote(swrm, LPASS_HW_CORE, true)) {
  1519. ret = IRQ_NONE;
  1520. goto exit;
  1521. }
  1522. if (swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, true)) {
  1523. ret = IRQ_NONE;
  1524. goto err_audio_hw_vote;
  1525. }
  1526. ret = swrm_clk_request(swrm, true);
  1527. if (ret) {
  1528. dev_err(dev, "%s: swrm clk failed\n", __func__);
  1529. ret = IRQ_NONE;
  1530. goto err_audio_core_vote;
  1531. }
  1532. mutex_unlock(&swrm->reslock);
  1533. intr_sts = swr_master_read(swrm, SWRM_INTERRUPT_STATUS);
  1534. intr_sts_masked = intr_sts & swrm->intr_mask;
  1535. dev_dbg(swrm->dev, "%s: status: 0x%x \n", __func__, intr_sts_masked);
  1536. handle_irq:
  1537. for (i = 0; i < SWRM_INTERRUPT_MAX; i++) {
  1538. value = intr_sts_masked & (1 << i);
  1539. if (!value)
  1540. continue;
  1541. switch (value) {
  1542. case SWRM_INTERRUPT_STATUS_SLAVE_PEND_IRQ:
  1543. dev_dbg(swrm->dev, "%s: Trigger irq to slave device\n",
  1544. __func__);
  1545. status = swr_master_read(swrm, SWRM_MCP_SLV_STATUS);
  1546. ret = swrm_find_alert_slave(swrm, status, &devnum);
  1547. if (ret) {
  1548. dev_err_ratelimited(swrm->dev,
  1549. "%s: no slave alert found.spurious interrupt\n",
  1550. __func__);
  1551. break;
  1552. }
  1553. swrm_cmd_fifo_rd_cmd(swrm, &temp, devnum, 0x0,
  1554. SWRS_SCP_INT_STATUS_CLEAR_1, 1);
  1555. swrm_cmd_fifo_wr_cmd(swrm, 0x4, devnum, 0x0,
  1556. SWRS_SCP_INT_STATUS_CLEAR_1);
  1557. swrm_cmd_fifo_wr_cmd(swrm, 0x0, devnum, 0x0,
  1558. SWRS_SCP_INT_STATUS_CLEAR_1);
  1559. list_for_each_entry(swr_dev, &mstr->devices, dev_list) {
  1560. if (swr_dev->dev_num != devnum)
  1561. continue;
  1562. if (swr_dev->slave_irq) {
  1563. do {
  1564. swr_dev->slave_irq_pending = 0;
  1565. handle_nested_irq(
  1566. irq_find_mapping(
  1567. swr_dev->slave_irq, 0));
  1568. } while (swr_dev->slave_irq_pending);
  1569. }
  1570. }
  1571. break;
  1572. case SWRM_INTERRUPT_STATUS_NEW_SLAVE_ATTACHED:
  1573. dev_dbg(swrm->dev, "%s: SWR new slave attached\n",
  1574. __func__);
  1575. break;
  1576. case SWRM_INTERRUPT_STATUS_CHANGE_ENUM_SLAVE_STATUS:
  1577. status = swr_master_read(swrm, SWRM_MCP_SLV_STATUS);
  1578. swrm_enable_slave_irq(swrm);
  1579. if (status == swrm->slave_status) {
  1580. dev_dbg(swrm->dev,
  1581. "%s: No change in slave status: %d\n",
  1582. __func__, status);
  1583. break;
  1584. }
  1585. chg_sts = swrm_check_slave_change_status(swrm, status,
  1586. &devnum);
  1587. switch (chg_sts) {
  1588. case SWR_NOT_PRESENT:
  1589. dev_dbg(swrm->dev,
  1590. "%s: device %d got detached\n",
  1591. __func__, devnum);
  1592. if (devnum == 0) {
  1593. /*
  1594. * enable host irq if device 0 detached
  1595. * as hw will mask host_irq at slave
  1596. * but will not unmask it afterwards.
  1597. */
  1598. swrm_cmd_fifo_wr_cmd(swrm, 0xFF, devnum, 0x0,
  1599. SWRS_SCP_INT_STATUS_CLEAR_1);
  1600. swrm_cmd_fifo_wr_cmd(swrm, 0x4, devnum, 0x0,
  1601. SWRS_SCP_INT_STATUS_MASK_1);
  1602. }
  1603. break;
  1604. case SWR_ATTACHED_OK:
  1605. dev_dbg(swrm->dev,
  1606. "%s: device %d got attached\n",
  1607. __func__, devnum);
  1608. /* enable host irq from slave device*/
  1609. swrm_cmd_fifo_wr_cmd(swrm, 0xFF, devnum, 0x0,
  1610. SWRS_SCP_INT_STATUS_CLEAR_1);
  1611. swrm_cmd_fifo_wr_cmd(swrm, 0x4, devnum, 0x0,
  1612. SWRS_SCP_INT_STATUS_MASK_1);
  1613. break;
  1614. case SWR_ALERT:
  1615. dev_dbg(swrm->dev,
  1616. "%s: device %d has pending interrupt\n",
  1617. __func__, devnum);
  1618. break;
  1619. }
  1620. break;
  1621. case SWRM_INTERRUPT_STATUS_MASTER_CLASH_DET:
  1622. dev_err_ratelimited(swrm->dev,
  1623. "%s: SWR bus clsh detected\n",
  1624. __func__);
  1625. break;
  1626. case SWRM_INTERRUPT_STATUS_RD_FIFO_OVERFLOW:
  1627. dev_dbg(swrm->dev, "%s: SWR read FIFO overflow\n",
  1628. __func__);
  1629. break;
  1630. case SWRM_INTERRUPT_STATUS_RD_FIFO_UNDERFLOW:
  1631. dev_dbg(swrm->dev, "%s: SWR read FIFO underflow\n",
  1632. __func__);
  1633. break;
  1634. case SWRM_INTERRUPT_STATUS_WR_CMD_FIFO_OVERFLOW:
  1635. dev_dbg(swrm->dev, "%s: SWR write FIFO overflow\n",
  1636. __func__);
  1637. swr_master_write(swrm, SWRM_CMD_FIFO_CMD, 0x1);
  1638. break;
  1639. case SWRM_INTERRUPT_STATUS_CMD_ERROR:
  1640. value = swr_master_read(swrm, SWRM_CMD_FIFO_STATUS);
  1641. dev_err_ratelimited(swrm->dev,
  1642. "%s: SWR CMD error, fifo status 0x%x, flushing fifo\n",
  1643. __func__, value);
  1644. swr_master_write(swrm, SWRM_CMD_FIFO_CMD, 0x1);
  1645. break;
  1646. case SWRM_INTERRUPT_STATUS_DOUT_PORT_COLLISION:
  1647. dev_err_ratelimited(swrm->dev,
  1648. "%s: SWR Port collision detected\n",
  1649. __func__);
  1650. swrm->intr_mask &= ~SWRM_INTERRUPT_STATUS_DOUT_PORT_COLLISION;
  1651. swr_master_write(swrm,
  1652. SWRM_CPU1_INTERRUPT_EN, swrm->intr_mask);
  1653. break;
  1654. case SWRM_INTERRUPT_STATUS_READ_EN_RD_VALID_MISMATCH:
  1655. dev_dbg(swrm->dev,
  1656. "%s: SWR read enable valid mismatch\n",
  1657. __func__);
  1658. swrm->intr_mask &=
  1659. ~SWRM_INTERRUPT_STATUS_READ_EN_RD_VALID_MISMATCH;
  1660. swr_master_write(swrm,
  1661. SWRM_CPU1_INTERRUPT_EN, swrm->intr_mask);
  1662. break;
  1663. case SWRM_INTERRUPT_STATUS_SPECIAL_CMD_ID_FINISHED:
  1664. complete(&swrm->broadcast);
  1665. dev_dbg(swrm->dev, "%s: SWR cmd id finished\n",
  1666. __func__);
  1667. break;
  1668. case SWRM_INTERRUPT_STATUS_AUTO_ENUM_FAILED:
  1669. swr_master_write(swrm, SWRM_ENUMERATOR_CFG, 0);
  1670. while (swr_master_read(swrm, SWRM_ENUMERATOR_STATUS)) {
  1671. if (!retry) {
  1672. dev_dbg(swrm->dev,
  1673. "%s: ENUM status is not idle\n",
  1674. __func__);
  1675. break;
  1676. }
  1677. retry--;
  1678. }
  1679. swr_master_write(swrm, SWRM_ENUMERATOR_CFG, 1);
  1680. break;
  1681. case SWRM_INTERRUPT_STATUS_AUTO_ENUM_TABLE_IS_FULL:
  1682. break;
  1683. case SWRM_INTERRUPT_STATUS_BUS_RESET_FINISHED:
  1684. swrm_check_link_status(swrm, 0x1);
  1685. break;
  1686. case SWRM_INTERRUPT_STATUS_CLK_STOP_FINISHED:
  1687. break;
  1688. case SWRM_INTERRUPT_STATUS_EXT_CLK_STOP_WAKEUP:
  1689. if (swrm->state == SWR_MSTR_UP)
  1690. dev_dbg(swrm->dev,
  1691. "%s:SWR Master is already up\n",
  1692. __func__);
  1693. else
  1694. dev_err_ratelimited(swrm->dev,
  1695. "%s: SWR wokeup during clock stop\n",
  1696. __func__);
  1697. /* It might be possible the slave device gets reset
  1698. * and slave interrupt gets missed. So re-enable
  1699. * Host IRQ and process slave pending
  1700. * interrupts, if any.
  1701. */
  1702. swrm_enable_slave_irq(swrm);
  1703. break;
  1704. default:
  1705. dev_err_ratelimited(swrm->dev,
  1706. "%s: SWR unknown interrupt value: %d\n",
  1707. __func__, value);
  1708. ret = IRQ_NONE;
  1709. break;
  1710. }
  1711. }
  1712. swr_master_write(swrm, SWRM_INTERRUPT_CLEAR, intr_sts);
  1713. swr_master_write(swrm, SWRM_INTERRUPT_CLEAR, 0x0);
  1714. intr_sts = swr_master_read(swrm, SWRM_INTERRUPT_STATUS);
  1715. intr_sts_masked = intr_sts & swrm->intr_mask;
  1716. if (intr_sts_masked) {
  1717. dev_dbg(swrm->dev, "%s: new interrupt received 0x%x\n",
  1718. __func__, intr_sts_masked);
  1719. goto handle_irq;
  1720. }
  1721. mutex_lock(&swrm->reslock);
  1722. swrm_clk_request(swrm, false);
  1723. err_audio_core_vote:
  1724. swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, false);
  1725. err_audio_hw_vote:
  1726. swrm_request_hw_vote(swrm, LPASS_HW_CORE, false);
  1727. exit:
  1728. mutex_unlock(&swrm->reslock);
  1729. swrm_unlock_sleep(swrm);
  1730. return ret;
  1731. }
  1732. static irqreturn_t swrm_wakeup_interrupt(int irq, void *dev)
  1733. {
  1734. struct swr_mstr_ctrl *swrm = dev;
  1735. int ret = IRQ_HANDLED;
  1736. if (!swrm || !(swrm->dev)) {
  1737. pr_err("%s: swrm or dev is null\n", __func__);
  1738. return IRQ_NONE;
  1739. }
  1740. mutex_lock(&swrm->devlock);
  1741. if (!swrm->dev_up) {
  1742. if (swrm->wake_irq > 0) {
  1743. if (unlikely(!irq_get_irq_data(swrm->wake_irq))) {
  1744. pr_err("%s: irq data is NULL\n", __func__);
  1745. mutex_unlock(&swrm->devlock);
  1746. return IRQ_NONE;
  1747. }
  1748. mutex_lock(&swrm->irq_lock);
  1749. if (!irqd_irq_disabled(
  1750. irq_get_irq_data(swrm->wake_irq)))
  1751. disable_irq_nosync(swrm->wake_irq);
  1752. mutex_unlock(&swrm->irq_lock);
  1753. }
  1754. mutex_unlock(&swrm->devlock);
  1755. return ret;
  1756. }
  1757. mutex_unlock(&swrm->devlock);
  1758. if (unlikely(swrm_lock_sleep(swrm) == false)) {
  1759. dev_err(swrm->dev, "%s Failed to hold suspend\n", __func__);
  1760. goto exit;
  1761. }
  1762. if (swrm->wake_irq > 0) {
  1763. if (unlikely(!irq_get_irq_data(swrm->wake_irq))) {
  1764. pr_err("%s: irq data is NULL\n", __func__);
  1765. return IRQ_NONE;
  1766. }
  1767. mutex_lock(&swrm->irq_lock);
  1768. if (!irqd_irq_disabled(
  1769. irq_get_irq_data(swrm->wake_irq)))
  1770. disable_irq_nosync(swrm->wake_irq);
  1771. mutex_unlock(&swrm->irq_lock);
  1772. }
  1773. pm_runtime_get_sync(swrm->dev);
  1774. pm_runtime_mark_last_busy(swrm->dev);
  1775. pm_runtime_put_autosuspend(swrm->dev);
  1776. swrm_unlock_sleep(swrm);
  1777. exit:
  1778. return ret;
  1779. }
  1780. static void swrm_wakeup_work(struct work_struct *work)
  1781. {
  1782. struct swr_mstr_ctrl *swrm;
  1783. swrm = container_of(work, struct swr_mstr_ctrl,
  1784. wakeup_work);
  1785. if (!swrm || !(swrm->dev)) {
  1786. pr_err("%s: swrm or dev is null\n", __func__);
  1787. return;
  1788. }
  1789. mutex_lock(&swrm->devlock);
  1790. if (!swrm->dev_up) {
  1791. mutex_unlock(&swrm->devlock);
  1792. goto exit;
  1793. }
  1794. mutex_unlock(&swrm->devlock);
  1795. if (unlikely(swrm_lock_sleep(swrm) == false)) {
  1796. dev_err(swrm->dev, "%s Failed to hold suspend\n", __func__);
  1797. goto exit;
  1798. }
  1799. pm_runtime_get_sync(swrm->dev);
  1800. pm_runtime_mark_last_busy(swrm->dev);
  1801. pm_runtime_put_autosuspend(swrm->dev);
  1802. swrm_unlock_sleep(swrm);
  1803. exit:
  1804. pm_relax(swrm->dev);
  1805. }
  1806. static int swrm_get_device_status(struct swr_mstr_ctrl *swrm, u8 devnum)
  1807. {
  1808. u32 val;
  1809. swrm->slave_status = swr_master_read(swrm, SWRM_MCP_SLV_STATUS);
  1810. val = (swrm->slave_status >> (devnum * 2));
  1811. val &= SWRM_MCP_SLV_STATUS_MASK;
  1812. return val;
  1813. }
  1814. static int swrm_get_logical_dev_num(struct swr_master *mstr, u64 dev_id,
  1815. u8 *dev_num)
  1816. {
  1817. int i;
  1818. u64 id = 0;
  1819. int ret = -EINVAL;
  1820. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(mstr);
  1821. struct swr_device *swr_dev;
  1822. u32 num_dev = 0;
  1823. if (!swrm) {
  1824. pr_err("%s: Invalid handle to swr controller\n",
  1825. __func__);
  1826. return ret;
  1827. }
  1828. if (swrm->num_dev)
  1829. num_dev = swrm->num_dev;
  1830. else
  1831. num_dev = mstr->num_dev;
  1832. mutex_lock(&swrm->devlock);
  1833. if (!swrm->dev_up) {
  1834. mutex_unlock(&swrm->devlock);
  1835. return ret;
  1836. }
  1837. mutex_unlock(&swrm->devlock);
  1838. pm_runtime_get_sync(swrm->dev);
  1839. for (i = 1; i < (num_dev + 1); i++) {
  1840. id = ((u64)(swr_master_read(swrm,
  1841. SWRM_ENUMERATOR_SLAVE_DEV_ID_2(i))) << 32);
  1842. id |= swr_master_read(swrm,
  1843. SWRM_ENUMERATOR_SLAVE_DEV_ID_1(i));
  1844. /*
  1845. * As pm_runtime_get_sync() brings all slaves out of reset
  1846. * update logical device number for all slaves.
  1847. */
  1848. list_for_each_entry(swr_dev, &mstr->devices, dev_list) {
  1849. if (swr_dev->addr == (id & SWR_DEV_ID_MASK)) {
  1850. u32 status = swrm_get_device_status(swrm, i);
  1851. if ((status == 0x01) || (status == 0x02)) {
  1852. swr_dev->dev_num = i;
  1853. if ((id & SWR_DEV_ID_MASK) == dev_id) {
  1854. *dev_num = i;
  1855. ret = 0;
  1856. }
  1857. dev_dbg(swrm->dev,
  1858. "%s: devnum %d is assigned for dev addr %lx\n",
  1859. __func__, i, swr_dev->addr);
  1860. }
  1861. }
  1862. }
  1863. }
  1864. if (ret)
  1865. dev_err(swrm->dev, "%s: device 0x%llx is not ready\n",
  1866. __func__, dev_id);
  1867. pm_runtime_mark_last_busy(swrm->dev);
  1868. pm_runtime_put_autosuspend(swrm->dev);
  1869. return ret;
  1870. }
  1871. static void swrm_device_wakeup_vote(struct swr_master *mstr)
  1872. {
  1873. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(mstr);
  1874. if (!swrm) {
  1875. pr_err("%s: Invalid handle to swr controller\n",
  1876. __func__);
  1877. return;
  1878. }
  1879. if (unlikely(swrm_lock_sleep(swrm) == false)) {
  1880. dev_err(swrm->dev, "%s Failed to hold suspend\n", __func__);
  1881. return;
  1882. }
  1883. if (++swrm->hw_core_clk_en == 1)
  1884. if (swrm_request_hw_vote(swrm, LPASS_HW_CORE, true)) {
  1885. dev_err(swrm->dev, "%s:lpass core hw enable failed\n",
  1886. __func__);
  1887. --swrm->hw_core_clk_en;
  1888. }
  1889. if ( ++swrm->aud_core_clk_en == 1)
  1890. if (swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, true)) {
  1891. dev_err(swrm->dev, "%s:lpass audio hw enable failed\n",
  1892. __func__);
  1893. --swrm->aud_core_clk_en;
  1894. }
  1895. dev_dbg(swrm->dev, "%s: hw_clk_en: %d audio_core_clk_en: %d\n",
  1896. __func__, swrm->hw_core_clk_en, swrm->aud_core_clk_en);
  1897. pm_runtime_get_sync(swrm->dev);
  1898. }
  1899. static void swrm_device_wakeup_unvote(struct swr_master *mstr)
  1900. {
  1901. struct swr_mstr_ctrl *swrm = swr_get_ctrl_data(mstr);
  1902. if (!swrm) {
  1903. pr_err("%s: Invalid handle to swr controller\n",
  1904. __func__);
  1905. return;
  1906. }
  1907. pm_runtime_mark_last_busy(swrm->dev);
  1908. pm_runtime_put_autosuspend(swrm->dev);
  1909. dev_dbg(swrm->dev, "%s: hw_clk_en: %d audio_core_clk_en: %d\n",
  1910. __func__, swrm->hw_core_clk_en, swrm->aud_core_clk_en);
  1911. --swrm->aud_core_clk_en;
  1912. if (swrm->aud_core_clk_en < 0)
  1913. swrm->aud_core_clk_en = 0;
  1914. else if (swrm->aud_core_clk_en == 0)
  1915. swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, false);
  1916. --swrm->hw_core_clk_en;
  1917. if (swrm->hw_core_clk_en < 0)
  1918. swrm->hw_core_clk_en = 0;
  1919. else if (swrm->hw_core_clk_en == 0)
  1920. swrm_request_hw_vote(swrm, LPASS_HW_CORE, false);
  1921. swrm_unlock_sleep(swrm);
  1922. }
  1923. static int swrm_master_init(struct swr_mstr_ctrl *swrm)
  1924. {
  1925. int ret = 0;
  1926. u32 val;
  1927. u8 row_ctrl = SWR_ROW_50;
  1928. u8 col_ctrl = SWR_MIN_COL;
  1929. u8 ssp_period = 1;
  1930. u8 retry_cmd_num = 3;
  1931. u32 reg[SWRM_MAX_INIT_REG];
  1932. u32 value[SWRM_MAX_INIT_REG];
  1933. u32 temp = 0;
  1934. int len = 0;
  1935. ssp_period = swrm_get_ssp_period(swrm, SWRM_ROW_50,
  1936. SWRM_COL_02, SWRM_FRAME_SYNC_SEL);
  1937. dev_dbg(swrm->dev, "%s: ssp_period: %d\n", __func__, ssp_period);
  1938. /* Clear Rows and Cols */
  1939. val = ((row_ctrl << SWRM_MCP_FRAME_CTRL_BANK_ROW_CTRL_SHFT) |
  1940. (col_ctrl << SWRM_MCP_FRAME_CTRL_BANK_COL_CTRL_SHFT) |
  1941. ((ssp_period - 1) << SWRM_MCP_FRAME_CTRL_BANK_SSP_PERIOD_SHFT));
  1942. reg[len] = SWRM_MCP_FRAME_CTRL_BANK(0);
  1943. value[len++] = val;
  1944. /* Set Auto enumeration flag */
  1945. reg[len] = SWRM_ENUMERATOR_CFG;
  1946. value[len++] = 1;
  1947. /* Configure No pings */
  1948. val = swr_master_read(swrm, SWRM_MCP_CFG);
  1949. val &= ~SWRM_NUM_PINGS_MASK;
  1950. val |= (0x1f << SWRM_NUM_PINGS_POS);
  1951. reg[len] = SWRM_MCP_CFG;
  1952. value[len++] = val;
  1953. /* Configure number of retries of a read/write cmd */
  1954. val = (retry_cmd_num);
  1955. reg[len] = SWRM_CMD_FIFO_CFG;
  1956. value[len++] = val;
  1957. reg[len] = SWRM_MCP_BUS_CTRL;
  1958. value[len++] = 0x2;
  1959. /* Set IRQ to PULSE */
  1960. reg[len] = SWRM_COMP_CFG;
  1961. value[len++] = 0x02;
  1962. reg[len] = SWRM_COMP_CFG;
  1963. value[len++] = 0x03;
  1964. reg[len] = SWRM_INTERRUPT_CLEAR;
  1965. value[len++] = 0xFFFFFFFF;
  1966. swrm->intr_mask = SWRM_INTERRUPT_STATUS_MASK;
  1967. /* Mask soundwire interrupts */
  1968. reg[len] = SWRM_INTERRUPT_EN;
  1969. value[len++] = swrm->intr_mask;
  1970. reg[len] = SWRM_CPU1_INTERRUPT_EN;
  1971. value[len++] = swrm->intr_mask;
  1972. swr_master_bulk_write(swrm, reg, value, len);
  1973. if (!swrm_check_link_status(swrm, 0x1)) {
  1974. dev_err(swrm->dev,
  1975. "%s: swr link failed to connect\n",
  1976. __func__);
  1977. return -EINVAL;
  1978. }
  1979. /* Execute it for versions >= 1.5.1 */
  1980. if (swrm->version >= SWRM_VERSION_1_5_1)
  1981. swr_master_write(swrm, SWRM_CMD_FIFO_CFG,
  1982. (swr_master_read(swrm,
  1983. SWRM_CMD_FIFO_CFG) | 0x80000000));
  1984. /* SW workaround to gate hw_ctl for SWR version >=1.6 */
  1985. if (swrm->version >= SWRM_VERSION_1_6) {
  1986. if (swrm->swrm_hctl_reg) {
  1987. temp = ioread32(swrm->swrm_hctl_reg);
  1988. temp &= 0xFFFFFFFD;
  1989. iowrite32(temp, swrm->swrm_hctl_reg);
  1990. }
  1991. }
  1992. return ret;
  1993. }
  1994. static int swrm_event_notify(struct notifier_block *self,
  1995. unsigned long action, void *data)
  1996. {
  1997. struct swr_mstr_ctrl *swrm = container_of(self, struct swr_mstr_ctrl,
  1998. event_notifier);
  1999. if (!swrm || !(swrm->dev)) {
  2000. pr_err("%s: swrm or dev is NULL\n", __func__);
  2001. return -EINVAL;
  2002. }
  2003. switch (action) {
  2004. case MSM_AUD_DC_EVENT:
  2005. schedule_work(&(swrm->dc_presence_work));
  2006. break;
  2007. case SWR_WAKE_IRQ_EVENT:
  2008. if (swrm->ipc_wakeup && !swrm->ipc_wakeup_triggered) {
  2009. swrm->ipc_wakeup_triggered = true;
  2010. pm_stay_awake(swrm->dev);
  2011. schedule_work(&swrm->wakeup_work);
  2012. }
  2013. break;
  2014. default:
  2015. dev_err(swrm->dev, "%s: invalid event type: %lu\n",
  2016. __func__, action);
  2017. return -EINVAL;
  2018. }
  2019. return 0;
  2020. }
  2021. static void swrm_notify_work_fn(struct work_struct *work)
  2022. {
  2023. struct swr_mstr_ctrl *swrm = container_of(work, struct swr_mstr_ctrl,
  2024. dc_presence_work);
  2025. if (!swrm || !swrm->pdev) {
  2026. pr_err("%s: swrm or pdev is NULL\n", __func__);
  2027. return;
  2028. }
  2029. swrm_wcd_notify(swrm->pdev, SWR_DEVICE_DOWN, NULL);
  2030. }
  2031. static int swrm_probe(struct platform_device *pdev)
  2032. {
  2033. struct swr_mstr_ctrl *swrm;
  2034. struct swr_ctrl_platform_data *pdata;
  2035. u32 i, num_ports, port_num, port_type, ch_mask, swrm_hctl_reg = 0;
  2036. u32 *temp, map_size, map_length, ch_iter = 0, old_port_num = 0;
  2037. int ret = 0;
  2038. struct clk *lpass_core_hw_vote = NULL;
  2039. struct clk *lpass_core_audio = NULL;
  2040. /* Allocate soundwire master driver structure */
  2041. swrm = devm_kzalloc(&pdev->dev, sizeof(struct swr_mstr_ctrl),
  2042. GFP_KERNEL);
  2043. if (!swrm) {
  2044. ret = -ENOMEM;
  2045. goto err_memory_fail;
  2046. }
  2047. swrm->pdev = pdev;
  2048. swrm->dev = &pdev->dev;
  2049. platform_set_drvdata(pdev, swrm);
  2050. swr_set_ctrl_data(&swrm->master, swrm);
  2051. pdata = dev_get_platdata(&pdev->dev);
  2052. if (!pdata) {
  2053. dev_err(&pdev->dev, "%s: pdata from parent is NULL\n",
  2054. __func__);
  2055. ret = -EINVAL;
  2056. goto err_pdata_fail;
  2057. }
  2058. swrm->handle = (void *)pdata->handle;
  2059. if (!swrm->handle) {
  2060. dev_err(&pdev->dev, "%s: swrm->handle is NULL\n",
  2061. __func__);
  2062. ret = -EINVAL;
  2063. goto err_pdata_fail;
  2064. }
  2065. ret = of_property_read_u32(pdev->dev.of_node, "qcom,swr_master_id",
  2066. &swrm->master_id);
  2067. if (ret) {
  2068. dev_err(&pdev->dev, "%s: failed to get master id\n", __func__);
  2069. goto err_pdata_fail;
  2070. }
  2071. ret = of_property_read_u32(pdev->dev.of_node, "qcom,dynamic-port-map-supported",
  2072. &swrm->dynamic_port_map_supported);
  2073. if (ret) {
  2074. dev_dbg(&pdev->dev,
  2075. "%s: failed to get dynamic port map support, use default\n",
  2076. __func__);
  2077. swrm->dynamic_port_map_supported = 1;
  2078. }
  2079. if (!(of_property_read_u32(pdev->dev.of_node,
  2080. "swrm-io-base", &swrm->swrm_base_reg)))
  2081. ret = of_property_read_u32(pdev->dev.of_node,
  2082. "swrm-io-base", &swrm->swrm_base_reg);
  2083. if (!swrm->swrm_base_reg) {
  2084. swrm->read = pdata->read;
  2085. if (!swrm->read) {
  2086. dev_err(&pdev->dev, "%s: swrm->read is NULL\n",
  2087. __func__);
  2088. ret = -EINVAL;
  2089. goto err_pdata_fail;
  2090. }
  2091. swrm->write = pdata->write;
  2092. if (!swrm->write) {
  2093. dev_err(&pdev->dev, "%s: swrm->write is NULL\n",
  2094. __func__);
  2095. ret = -EINVAL;
  2096. goto err_pdata_fail;
  2097. }
  2098. swrm->bulk_write = pdata->bulk_write;
  2099. if (!swrm->bulk_write) {
  2100. dev_err(&pdev->dev, "%s: swrm->bulk_write is NULL\n",
  2101. __func__);
  2102. ret = -EINVAL;
  2103. goto err_pdata_fail;
  2104. }
  2105. } else {
  2106. swrm->swrm_dig_base = devm_ioremap(&pdev->dev,
  2107. swrm->swrm_base_reg, SWRM_MAX_REGISTER);
  2108. }
  2109. swrm->core_vote = pdata->core_vote;
  2110. if (!(of_property_read_u32(pdev->dev.of_node,
  2111. "qcom,swrm-hctl-reg", &swrm_hctl_reg)))
  2112. swrm->swrm_hctl_reg = devm_ioremap(&pdev->dev,
  2113. swrm_hctl_reg, 0x4);
  2114. swrm->clk = pdata->clk;
  2115. if (!swrm->clk) {
  2116. dev_err(&pdev->dev, "%s: swrm->clk is NULL\n",
  2117. __func__);
  2118. ret = -EINVAL;
  2119. goto err_pdata_fail;
  2120. }
  2121. if (of_property_read_u32(pdev->dev.of_node,
  2122. "qcom,swr-clock-stop-mode0",
  2123. &swrm->clk_stop_mode0_supp)) {
  2124. swrm->clk_stop_mode0_supp = FALSE;
  2125. }
  2126. ret = of_property_read_u32(swrm->dev->of_node, "qcom,swr-num-dev",
  2127. &swrm->num_dev);
  2128. if (ret) {
  2129. dev_dbg(&pdev->dev, "%s: Looking up %s property failed\n",
  2130. __func__, "qcom,swr-num-dev");
  2131. } else {
  2132. if (swrm->num_dev > SWRM_NUM_AUTO_ENUM_SLAVES) {
  2133. dev_err(&pdev->dev, "%s: num_dev %d > max limit %d\n",
  2134. __func__, swrm->num_dev,
  2135. SWRM_NUM_AUTO_ENUM_SLAVES);
  2136. ret = -EINVAL;
  2137. goto err_pdata_fail;
  2138. }
  2139. }
  2140. /* Parse soundwire port mapping */
  2141. ret = of_property_read_u32(pdev->dev.of_node, "qcom,swr-num-ports",
  2142. &num_ports);
  2143. if (ret) {
  2144. dev_err(swrm->dev, "%s: Failed to get num_ports\n", __func__);
  2145. goto err_pdata_fail;
  2146. }
  2147. swrm->num_ports = num_ports;
  2148. if (!of_find_property(pdev->dev.of_node, "qcom,swr-port-mapping",
  2149. &map_size)) {
  2150. dev_err(swrm->dev, "missing port mapping\n");
  2151. goto err_pdata_fail;
  2152. }
  2153. map_length = map_size / (3 * sizeof(u32));
  2154. if (num_ports > SWR_MSTR_PORT_LEN) {
  2155. dev_err(&pdev->dev, "%s:invalid number of swr ports\n",
  2156. __func__);
  2157. ret = -EINVAL;
  2158. goto err_pdata_fail;
  2159. }
  2160. temp = devm_kzalloc(&pdev->dev, map_size, GFP_KERNEL);
  2161. if (!temp) {
  2162. ret = -ENOMEM;
  2163. goto err_pdata_fail;
  2164. }
  2165. ret = of_property_read_u32_array(pdev->dev.of_node,
  2166. "qcom,swr-port-mapping", temp, 3 * map_length);
  2167. if (ret) {
  2168. dev_err(swrm->dev, "%s: Failed to read port mapping\n",
  2169. __func__);
  2170. goto err_pdata_fail;
  2171. }
  2172. for (i = 0; i < map_length; i++) {
  2173. port_num = temp[3 * i];
  2174. port_type = temp[3 * i + 1];
  2175. ch_mask = temp[3 * i + 2];
  2176. if (port_num != old_port_num)
  2177. ch_iter = 0;
  2178. swrm->port_mapping[port_num][ch_iter].port_type = port_type;
  2179. swrm->port_mapping[port_num][ch_iter++].ch_mask = ch_mask;
  2180. old_port_num = port_num;
  2181. }
  2182. devm_kfree(&pdev->dev, temp);
  2183. swrm->reg_irq = pdata->reg_irq;
  2184. swrm->master.read = swrm_read;
  2185. swrm->master.write = swrm_write;
  2186. swrm->master.bulk_write = swrm_bulk_write;
  2187. swrm->master.get_logical_dev_num = swrm_get_logical_dev_num;
  2188. swrm->master.connect_port = swrm_connect_port;
  2189. swrm->master.disconnect_port = swrm_disconnect_port;
  2190. swrm->master.slvdev_datapath_control = swrm_slvdev_datapath_control;
  2191. swrm->master.remove_from_group = swrm_remove_from_group;
  2192. swrm->master.device_wakeup_vote = swrm_device_wakeup_vote;
  2193. swrm->master.device_wakeup_unvote = swrm_device_wakeup_unvote;
  2194. swrm->master.dev.parent = &pdev->dev;
  2195. swrm->master.dev.of_node = pdev->dev.of_node;
  2196. swrm->master.num_port = 0;
  2197. swrm->rcmd_id = 0;
  2198. swrm->wcmd_id = 0;
  2199. swrm->slave_status = 0;
  2200. swrm->num_rx_chs = 0;
  2201. swrm->clk_ref_count = 0;
  2202. swrm->swr_irq_wakeup_capable = 0;
  2203. swrm->mclk_freq = MCLK_FREQ;
  2204. swrm->bus_clk = MCLK_FREQ;
  2205. swrm->dev_up = true;
  2206. swrm->state = SWR_MSTR_UP;
  2207. swrm->ipc_wakeup = false;
  2208. swrm->ipc_wakeup_triggered = false;
  2209. init_completion(&swrm->reset);
  2210. init_completion(&swrm->broadcast);
  2211. init_completion(&swrm->clk_off_complete);
  2212. mutex_init(&swrm->irq_lock);
  2213. mutex_init(&swrm->mlock);
  2214. mutex_init(&swrm->reslock);
  2215. mutex_init(&swrm->force_down_lock);
  2216. mutex_init(&swrm->iolock);
  2217. mutex_init(&swrm->clklock);
  2218. mutex_init(&swrm->devlock);
  2219. mutex_init(&swrm->pm_lock);
  2220. swrm->wlock_holders = 0;
  2221. swrm->pm_state = SWRM_PM_SLEEPABLE;
  2222. init_waitqueue_head(&swrm->pm_wq);
  2223. pm_qos_add_request(&swrm->pm_qos_req,
  2224. PM_QOS_CPU_DMA_LATENCY,
  2225. PM_QOS_DEFAULT_VALUE);
  2226. for (i = 0 ; i < SWR_MSTR_PORT_LEN; i++)
  2227. INIT_LIST_HEAD(&swrm->mport_cfg[i].port_req_list);
  2228. /* Register LPASS core hw vote */
  2229. lpass_core_hw_vote = devm_clk_get(&pdev->dev, "lpass_core_hw_vote");
  2230. if (IS_ERR(lpass_core_hw_vote)) {
  2231. ret = PTR_ERR(lpass_core_hw_vote);
  2232. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  2233. __func__, "lpass_core_hw_vote", ret);
  2234. lpass_core_hw_vote = NULL;
  2235. ret = 0;
  2236. }
  2237. swrm->lpass_core_hw_vote = lpass_core_hw_vote;
  2238. /* Register LPASS audio core vote */
  2239. lpass_core_audio = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  2240. if (IS_ERR(lpass_core_audio)) {
  2241. ret = PTR_ERR(lpass_core_audio);
  2242. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  2243. __func__, "lpass_core_audio", ret);
  2244. lpass_core_audio = NULL;
  2245. ret = 0;
  2246. }
  2247. swrm->lpass_core_audio = lpass_core_audio;
  2248. if (swrm->reg_irq) {
  2249. ret = swrm->reg_irq(swrm->handle, swr_mstr_interrupt, swrm,
  2250. SWR_IRQ_REGISTER);
  2251. if (ret) {
  2252. dev_err(&pdev->dev, "%s: IRQ register failed ret %d\n",
  2253. __func__, ret);
  2254. goto err_irq_fail;
  2255. }
  2256. } else {
  2257. swrm->irq = platform_get_irq_byname(pdev, "swr_master_irq");
  2258. if (swrm->irq < 0) {
  2259. dev_err(swrm->dev, "%s() error getting irq hdle: %d\n",
  2260. __func__, swrm->irq);
  2261. goto err_irq_fail;
  2262. }
  2263. ret = request_threaded_irq(swrm->irq, NULL,
  2264. swr_mstr_interrupt,
  2265. IRQF_TRIGGER_RISING | IRQF_ONESHOT,
  2266. "swr_master_irq", swrm);
  2267. if (ret) {
  2268. dev_err(swrm->dev, "%s: Failed to request irq %d\n",
  2269. __func__, ret);
  2270. goto err_irq_fail;
  2271. }
  2272. }
  2273. /* Make inband tx interrupts as wakeup capable for slave irq */
  2274. ret = of_property_read_u32(pdev->dev.of_node,
  2275. "qcom,swr-mstr-irq-wakeup-capable",
  2276. &swrm->swr_irq_wakeup_capable);
  2277. if (ret)
  2278. dev_dbg(swrm->dev, "%s: swrm irq wakeup capable not defined\n",
  2279. __func__);
  2280. if (swrm->swr_irq_wakeup_capable)
  2281. irq_set_irq_wake(swrm->irq, 1);
  2282. ret = swr_register_master(&swrm->master);
  2283. if (ret) {
  2284. dev_err(&pdev->dev, "%s: error adding swr master\n", __func__);
  2285. goto err_mstr_fail;
  2286. }
  2287. /* Add devices registered with board-info as the
  2288. * controller will be up now
  2289. */
  2290. swr_master_add_boarddevices(&swrm->master);
  2291. mutex_lock(&swrm->mlock);
  2292. swrm_clk_request(swrm, true);
  2293. swrm->version = swr_master_read(swrm, SWRM_COMP_HW_VERSION);
  2294. ret = swrm_master_init(swrm);
  2295. if (ret < 0) {
  2296. dev_err(&pdev->dev,
  2297. "%s: Error in master Initialization , err %d\n",
  2298. __func__, ret);
  2299. mutex_unlock(&swrm->mlock);
  2300. goto err_mstr_init_fail;
  2301. }
  2302. mutex_unlock(&swrm->mlock);
  2303. INIT_WORK(&swrm->wakeup_work, swrm_wakeup_work);
  2304. if (pdev->dev.of_node)
  2305. of_register_swr_devices(&swrm->master);
  2306. #ifdef CONFIG_DEBUG_FS
  2307. swrm->debugfs_swrm_dent = debugfs_create_dir(dev_name(&pdev->dev), 0);
  2308. if (!IS_ERR(swrm->debugfs_swrm_dent)) {
  2309. swrm->debugfs_peek = debugfs_create_file("swrm_peek",
  2310. S_IFREG | 0444, swrm->debugfs_swrm_dent,
  2311. (void *) swrm, &swrm_debug_read_ops);
  2312. swrm->debugfs_poke = debugfs_create_file("swrm_poke",
  2313. S_IFREG | 0444, swrm->debugfs_swrm_dent,
  2314. (void *) swrm, &swrm_debug_write_ops);
  2315. swrm->debugfs_reg_dump = debugfs_create_file("swrm_reg_dump",
  2316. S_IFREG | 0444, swrm->debugfs_swrm_dent,
  2317. (void *) swrm,
  2318. &swrm_debug_dump_ops);
  2319. }
  2320. #endif
  2321. ret = device_init_wakeup(swrm->dev, true);
  2322. if (ret) {
  2323. dev_err(swrm->dev, "Device wakeup init failed: %d\n", ret);
  2324. goto err_irq_wakeup_fail;
  2325. }
  2326. pm_runtime_set_autosuspend_delay(&pdev->dev, auto_suspend_timer);
  2327. pm_runtime_use_autosuspend(&pdev->dev);
  2328. pm_runtime_set_active(&pdev->dev);
  2329. pm_runtime_enable(&pdev->dev);
  2330. pm_runtime_mark_last_busy(&pdev->dev);
  2331. INIT_WORK(&swrm->dc_presence_work, swrm_notify_work_fn);
  2332. swrm->event_notifier.notifier_call = swrm_event_notify;
  2333. msm_aud_evt_register_client(&swrm->event_notifier);
  2334. return 0;
  2335. err_irq_wakeup_fail:
  2336. device_init_wakeup(swrm->dev, false);
  2337. err_mstr_init_fail:
  2338. swr_unregister_master(&swrm->master);
  2339. err_mstr_fail:
  2340. if (swrm->reg_irq)
  2341. swrm->reg_irq(swrm->handle, swr_mstr_interrupt,
  2342. swrm, SWR_IRQ_FREE);
  2343. else if (swrm->irq)
  2344. free_irq(swrm->irq, swrm);
  2345. err_irq_fail:
  2346. mutex_destroy(&swrm->irq_lock);
  2347. mutex_destroy(&swrm->mlock);
  2348. mutex_destroy(&swrm->reslock);
  2349. mutex_destroy(&swrm->force_down_lock);
  2350. mutex_destroy(&swrm->iolock);
  2351. mutex_destroy(&swrm->clklock);
  2352. mutex_destroy(&swrm->pm_lock);
  2353. pm_qos_remove_request(&swrm->pm_qos_req);
  2354. err_pdata_fail:
  2355. err_memory_fail:
  2356. return ret;
  2357. }
  2358. static int swrm_remove(struct platform_device *pdev)
  2359. {
  2360. struct swr_mstr_ctrl *swrm = platform_get_drvdata(pdev);
  2361. if (swrm->reg_irq)
  2362. swrm->reg_irq(swrm->handle, swr_mstr_interrupt,
  2363. swrm, SWR_IRQ_FREE);
  2364. else if (swrm->irq)
  2365. free_irq(swrm->irq, swrm);
  2366. else if (swrm->wake_irq > 0)
  2367. free_irq(swrm->wake_irq, swrm);
  2368. if (swrm->swr_irq_wakeup_capable)
  2369. irq_set_irq_wake(swrm->irq, 0);
  2370. cancel_work_sync(&swrm->wakeup_work);
  2371. pm_runtime_disable(&pdev->dev);
  2372. pm_runtime_set_suspended(&pdev->dev);
  2373. swr_unregister_master(&swrm->master);
  2374. msm_aud_evt_unregister_client(&swrm->event_notifier);
  2375. device_init_wakeup(swrm->dev, false);
  2376. mutex_destroy(&swrm->irq_lock);
  2377. mutex_destroy(&swrm->mlock);
  2378. mutex_destroy(&swrm->reslock);
  2379. mutex_destroy(&swrm->iolock);
  2380. mutex_destroy(&swrm->clklock);
  2381. mutex_destroy(&swrm->force_down_lock);
  2382. mutex_destroy(&swrm->pm_lock);
  2383. pm_qos_remove_request(&swrm->pm_qos_req);
  2384. devm_kfree(&pdev->dev, swrm);
  2385. return 0;
  2386. }
  2387. static int swrm_clk_pause(struct swr_mstr_ctrl *swrm)
  2388. {
  2389. u32 val;
  2390. dev_dbg(swrm->dev, "%s: state: %d\n", __func__, swrm->state);
  2391. swr_master_write(swrm, SWRM_INTERRUPT_EN, 0x1FDFD);
  2392. val = swr_master_read(swrm, SWRM_MCP_CFG);
  2393. val |= 0x02;
  2394. swr_master_write(swrm, SWRM_MCP_CFG, val);
  2395. return 0;
  2396. }
  2397. #ifdef CONFIG_PM
  2398. static int swrm_runtime_resume(struct device *dev)
  2399. {
  2400. struct platform_device *pdev = to_platform_device(dev);
  2401. struct swr_mstr_ctrl *swrm = platform_get_drvdata(pdev);
  2402. int ret = 0;
  2403. bool swrm_clk_req_err = false;
  2404. bool hw_core_err = false;
  2405. bool aud_core_err = false;
  2406. struct swr_master *mstr = &swrm->master;
  2407. struct swr_device *swr_dev;
  2408. u32 temp = 0;
  2409. dev_dbg(dev, "%s: pm_runtime: resume, state:%d\n",
  2410. __func__, swrm->state);
  2411. mutex_lock(&swrm->reslock);
  2412. if (swrm_request_hw_vote(swrm, LPASS_HW_CORE, true)) {
  2413. dev_err(dev, "%s:lpass core hw enable failed\n",
  2414. __func__);
  2415. hw_core_err = true;
  2416. }
  2417. if (swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, true)) {
  2418. dev_err(dev, "%s:lpass audio hw enable failed\n",
  2419. __func__);
  2420. aud_core_err = true;
  2421. }
  2422. if ((swrm->state == SWR_MSTR_DOWN) ||
  2423. (swrm->state == SWR_MSTR_SSR && swrm->dev_up)) {
  2424. if (swrm->clk_stop_mode0_supp) {
  2425. if (swrm->wake_irq > 0) {
  2426. if (unlikely(!irq_get_irq_data
  2427. (swrm->wake_irq))) {
  2428. pr_err("%s: irq data is NULL\n",
  2429. __func__);
  2430. mutex_unlock(&swrm->reslock);
  2431. return IRQ_NONE;
  2432. }
  2433. mutex_lock(&swrm->irq_lock);
  2434. if (!irqd_irq_disabled(
  2435. irq_get_irq_data(swrm->wake_irq)))
  2436. disable_irq_nosync(swrm->wake_irq);
  2437. mutex_unlock(&swrm->irq_lock);
  2438. }
  2439. if (swrm->ipc_wakeup)
  2440. msm_aud_evt_blocking_notifier_call_chain(
  2441. SWR_WAKE_IRQ_DEREGISTER, (void *)swrm);
  2442. }
  2443. if (swrm_clk_request(swrm, true)) {
  2444. /*
  2445. * Set autosuspend timer to 1 for
  2446. * master to enter into suspend.
  2447. */
  2448. swrm_clk_req_err = true;
  2449. goto exit;
  2450. }
  2451. if (!swrm->clk_stop_mode0_supp || swrm->state == SWR_MSTR_SSR) {
  2452. list_for_each_entry(swr_dev, &mstr->devices, dev_list) {
  2453. ret = swr_device_up(swr_dev);
  2454. if (ret == -ENODEV) {
  2455. dev_dbg(dev,
  2456. "%s slave device up not implemented\n",
  2457. __func__);
  2458. ret = 0;
  2459. } else if (ret) {
  2460. dev_err(dev,
  2461. "%s: failed to wakeup swr dev %d\n",
  2462. __func__, swr_dev->dev_num);
  2463. swrm_clk_request(swrm, false);
  2464. goto exit;
  2465. }
  2466. }
  2467. swr_master_write(swrm, SWRM_COMP_SW_RESET, 0x01);
  2468. swr_master_write(swrm, SWRM_COMP_SW_RESET, 0x01);
  2469. swr_master_write(swrm, SWRM_MCP_BUS_CTRL, 0x01);
  2470. swrm_master_init(swrm);
  2471. /* wait for hw enumeration to complete */
  2472. usleep_range(100, 105);
  2473. if (!swrm_check_link_status(swrm, 0x1))
  2474. dev_dbg(dev, "%s:failed in connecting, ssr?\n",
  2475. __func__);
  2476. swrm_cmd_fifo_wr_cmd(swrm, 0x4, 0xF, 0x0,
  2477. SWRS_SCP_INT_STATUS_MASK_1);
  2478. if (swrm->state == SWR_MSTR_SSR) {
  2479. mutex_unlock(&swrm->reslock);
  2480. enable_bank_switch(swrm, 0, SWR_ROW_50, SWR_MIN_COL);
  2481. mutex_lock(&swrm->reslock);
  2482. }
  2483. } else {
  2484. if (swrm->swrm_hctl_reg) {
  2485. temp = ioread32(swrm->swrm_hctl_reg);
  2486. temp &= 0xFFFFFFFD;
  2487. iowrite32(temp, swrm->swrm_hctl_reg);
  2488. }
  2489. /*wake up from clock stop*/
  2490. swr_master_write(swrm, SWRM_MCP_BUS_CTRL, 0x2);
  2491. /* clear and enable bus clash interrupt */
  2492. swr_master_write(swrm, SWRM_INTERRUPT_CLEAR, 0x08);
  2493. swrm->intr_mask |= 0x08;
  2494. swr_master_write(swrm, SWRM_INTERRUPT_EN,
  2495. swrm->intr_mask);
  2496. swr_master_write(swrm,
  2497. SWRM_CPU1_INTERRUPT_EN,
  2498. swrm->intr_mask);
  2499. usleep_range(100, 105);
  2500. if (!swrm_check_link_status(swrm, 0x1))
  2501. dev_dbg(dev, "%s:failed in connecting, ssr?\n",
  2502. __func__);
  2503. }
  2504. swrm->state = SWR_MSTR_UP;
  2505. }
  2506. exit:
  2507. if (!aud_core_err)
  2508. swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, false);
  2509. if (!hw_core_err)
  2510. swrm_request_hw_vote(swrm, LPASS_HW_CORE, false);
  2511. if (swrm_clk_req_err)
  2512. pm_runtime_set_autosuspend_delay(&pdev->dev,
  2513. ERR_AUTO_SUSPEND_TIMER_VAL);
  2514. else
  2515. pm_runtime_set_autosuspend_delay(&pdev->dev,
  2516. auto_suspend_timer);
  2517. mutex_unlock(&swrm->reslock);
  2518. return ret;
  2519. }
  2520. static int swrm_runtime_suspend(struct device *dev)
  2521. {
  2522. struct platform_device *pdev = to_platform_device(dev);
  2523. struct swr_mstr_ctrl *swrm = platform_get_drvdata(pdev);
  2524. int ret = 0;
  2525. bool hw_core_err = false;
  2526. bool aud_core_err = false;
  2527. struct swr_master *mstr = &swrm->master;
  2528. struct swr_device *swr_dev;
  2529. int current_state = 0;
  2530. dev_dbg(dev, "%s: pm_runtime: suspend state: %d\n",
  2531. __func__, swrm->state);
  2532. mutex_lock(&swrm->reslock);
  2533. mutex_lock(&swrm->force_down_lock);
  2534. current_state = swrm->state;
  2535. mutex_unlock(&swrm->force_down_lock);
  2536. if (swrm_request_hw_vote(swrm, LPASS_HW_CORE, true)) {
  2537. dev_err(dev, "%s:lpass core hw enable failed\n",
  2538. __func__);
  2539. hw_core_err = true;
  2540. }
  2541. if (swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, true)) {
  2542. dev_err(dev, "%s:lpass audio hw enable failed\n",
  2543. __func__);
  2544. aud_core_err = true;
  2545. }
  2546. if ((current_state == SWR_MSTR_UP) ||
  2547. (current_state == SWR_MSTR_SSR)) {
  2548. if ((current_state != SWR_MSTR_SSR) &&
  2549. swrm_is_port_en(&swrm->master)) {
  2550. dev_dbg(dev, "%s ports are enabled\n", __func__);
  2551. ret = -EBUSY;
  2552. goto exit;
  2553. }
  2554. if (!swrm->clk_stop_mode0_supp || swrm->state == SWR_MSTR_SSR) {
  2555. mutex_unlock(&swrm->reslock);
  2556. enable_bank_switch(swrm, 0, SWR_ROW_50, SWR_MIN_COL);
  2557. mutex_lock(&swrm->reslock);
  2558. swrm_clk_pause(swrm);
  2559. swr_master_write(swrm, SWRM_COMP_CFG, 0x00);
  2560. list_for_each_entry(swr_dev, &mstr->devices, dev_list) {
  2561. ret = swr_device_down(swr_dev);
  2562. if (ret == -ENODEV) {
  2563. dev_dbg_ratelimited(dev,
  2564. "%s slave device down not implemented\n",
  2565. __func__);
  2566. ret = 0;
  2567. } else if (ret) {
  2568. dev_err(dev,
  2569. "%s: failed to shutdown swr dev %d\n",
  2570. __func__, swr_dev->dev_num);
  2571. goto exit;
  2572. }
  2573. }
  2574. } else {
  2575. /* Mask bus clash interrupt */
  2576. swrm->intr_mask &= ~((u32)0x08);
  2577. swr_master_write(swrm, SWRM_INTERRUPT_EN,
  2578. swrm->intr_mask);
  2579. swr_master_write(swrm,
  2580. SWRM_CPU1_INTERRUPT_EN,
  2581. swrm->intr_mask);
  2582. mutex_unlock(&swrm->reslock);
  2583. /* clock stop sequence */
  2584. swrm_cmd_fifo_wr_cmd(swrm, 0x2, 0xF, 0xF,
  2585. SWRS_SCP_CONTROL);
  2586. mutex_lock(&swrm->reslock);
  2587. usleep_range(100, 105);
  2588. }
  2589. if (!swrm_check_link_status(swrm, 0x0))
  2590. dev_dbg(dev, "%s:failed in disconnecting, ssr?\n",
  2591. __func__);
  2592. ret = swrm_clk_request(swrm, false);
  2593. if (ret) {
  2594. dev_err(dev, "%s: swrmn clk failed\n", __func__);
  2595. ret = 0;
  2596. goto exit;
  2597. }
  2598. if (swrm->clk_stop_mode0_supp) {
  2599. if (swrm->wake_irq > 0) {
  2600. enable_irq(swrm->wake_irq);
  2601. } else if (swrm->ipc_wakeup) {
  2602. msm_aud_evt_blocking_notifier_call_chain(
  2603. SWR_WAKE_IRQ_REGISTER, (void *)swrm);
  2604. swrm->ipc_wakeup_triggered = false;
  2605. }
  2606. }
  2607. }
  2608. /* Retain SSR state until resume */
  2609. if (current_state != SWR_MSTR_SSR)
  2610. swrm->state = SWR_MSTR_DOWN;
  2611. exit:
  2612. if (!aud_core_err)
  2613. swrm_request_hw_vote(swrm, LPASS_AUDIO_CORE, false);
  2614. if (!hw_core_err)
  2615. swrm_request_hw_vote(swrm, LPASS_HW_CORE, false);
  2616. mutex_unlock(&swrm->reslock);
  2617. return ret;
  2618. }
  2619. #endif /* CONFIG_PM */
  2620. static int swrm_device_suspend(struct device *dev)
  2621. {
  2622. struct platform_device *pdev = to_platform_device(dev);
  2623. struct swr_mstr_ctrl *swrm = platform_get_drvdata(pdev);
  2624. int ret = 0;
  2625. dev_dbg(dev, "%s: swrm state: %d\n", __func__, swrm->state);
  2626. if (!pm_runtime_enabled(dev) || !pm_runtime_suspended(dev)) {
  2627. ret = swrm_runtime_suspend(dev);
  2628. if (!ret) {
  2629. pm_runtime_disable(dev);
  2630. pm_runtime_set_suspended(dev);
  2631. pm_runtime_enable(dev);
  2632. }
  2633. }
  2634. return 0;
  2635. }
  2636. static int swrm_device_down(struct device *dev)
  2637. {
  2638. struct platform_device *pdev = to_platform_device(dev);
  2639. struct swr_mstr_ctrl *swrm = platform_get_drvdata(pdev);
  2640. dev_dbg(dev, "%s: swrm state: %d\n", __func__, swrm->state);
  2641. mutex_lock(&swrm->force_down_lock);
  2642. swrm->state = SWR_MSTR_SSR;
  2643. mutex_unlock(&swrm->force_down_lock);
  2644. swrm_device_suspend(dev);
  2645. return 0;
  2646. }
  2647. int swrm_register_wake_irq(struct swr_mstr_ctrl *swrm)
  2648. {
  2649. int ret = 0;
  2650. int irq, dir_apps_irq;
  2651. if (!swrm->ipc_wakeup) {
  2652. irq = of_get_named_gpio(swrm->dev->of_node,
  2653. "qcom,swr-wakeup-irq", 0);
  2654. if (gpio_is_valid(irq)) {
  2655. swrm->wake_irq = gpio_to_irq(irq);
  2656. if (swrm->wake_irq < 0) {
  2657. dev_err(swrm->dev,
  2658. "Unable to configure irq\n");
  2659. return swrm->wake_irq;
  2660. }
  2661. } else {
  2662. dir_apps_irq = platform_get_irq_byname(swrm->pdev,
  2663. "swr_wake_irq");
  2664. if (dir_apps_irq < 0) {
  2665. dev_err(swrm->dev,
  2666. "TLMM connect gpio not found\n");
  2667. return -EINVAL;
  2668. }
  2669. swrm->wake_irq = dir_apps_irq;
  2670. }
  2671. ret = request_threaded_irq(swrm->wake_irq, NULL,
  2672. swrm_wakeup_interrupt,
  2673. IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
  2674. "swr_wake_irq", swrm);
  2675. if (ret) {
  2676. dev_err(swrm->dev, "%s: Failed to request irq %d\n",
  2677. __func__, ret);
  2678. return -EINVAL;
  2679. }
  2680. irq_set_irq_wake(swrm->wake_irq, 1);
  2681. }
  2682. return ret;
  2683. }
  2684. static int swrm_alloc_port_mem(struct device *dev, struct swr_mstr_ctrl *swrm,
  2685. u32 uc, u32 size)
  2686. {
  2687. if (!swrm->port_param) {
  2688. swrm->port_param = devm_kzalloc(dev,
  2689. sizeof(swrm->port_param) * SWR_UC_MAX,
  2690. GFP_KERNEL);
  2691. if (!swrm->port_param)
  2692. return -ENOMEM;
  2693. }
  2694. if (!swrm->port_param[uc]) {
  2695. swrm->port_param[uc] = devm_kcalloc(dev, size,
  2696. sizeof(struct port_params),
  2697. GFP_KERNEL);
  2698. if (!swrm->port_param[uc])
  2699. return -ENOMEM;
  2700. } else {
  2701. dev_err_ratelimited(swrm->dev, "%s: called more than once\n",
  2702. __func__);
  2703. }
  2704. return 0;
  2705. }
  2706. static int swrm_copy_port_config(struct swr_mstr_ctrl *swrm,
  2707. struct swrm_port_config *port_cfg,
  2708. u32 size)
  2709. {
  2710. int idx;
  2711. struct port_params *params;
  2712. int uc = port_cfg->uc;
  2713. int ret = 0;
  2714. for (idx = 0; idx < size; idx++) {
  2715. params = &((struct port_params *)port_cfg->params)[idx];
  2716. if (!params) {
  2717. dev_err(swrm->dev, "%s: Invalid params\n", __func__);
  2718. ret = -EINVAL;
  2719. break;
  2720. }
  2721. memcpy(&swrm->port_param[uc][idx], params,
  2722. sizeof(struct port_params));
  2723. }
  2724. return ret;
  2725. }
  2726. /**
  2727. * swrm_wcd_notify - parent device can notify to soundwire master through
  2728. * this function
  2729. * @pdev: pointer to platform device structure
  2730. * @id: command id from parent to the soundwire master
  2731. * @data: data from parent device to soundwire master
  2732. */
  2733. int swrm_wcd_notify(struct platform_device *pdev, u32 id, void *data)
  2734. {
  2735. struct swr_mstr_ctrl *swrm;
  2736. int ret = 0;
  2737. struct swr_master *mstr;
  2738. struct swr_device *swr_dev;
  2739. struct swrm_port_config *port_cfg;
  2740. if (!pdev) {
  2741. pr_err("%s: pdev is NULL\n", __func__);
  2742. return -EINVAL;
  2743. }
  2744. swrm = platform_get_drvdata(pdev);
  2745. if (!swrm) {
  2746. dev_err(&pdev->dev, "%s: swrm is NULL\n", __func__);
  2747. return -EINVAL;
  2748. }
  2749. mstr = &swrm->master;
  2750. switch (id) {
  2751. case SWR_REQ_CLK_SWITCH:
  2752. /* This will put soundwire in clock stop mode and disable the
  2753. * clocks, if there is no active usecase running, so that the
  2754. * next activity on soundwire will request clock from new clock
  2755. * source.
  2756. */
  2757. if (!data) {
  2758. dev_err(swrm->dev, "%s: data is NULL for id:%d\n",
  2759. __func__, id);
  2760. ret = -EINVAL;
  2761. break;
  2762. }
  2763. mutex_lock(&swrm->mlock);
  2764. if (swrm->clk_src != *(int *)data) {
  2765. if (swrm->state == SWR_MSTR_UP)
  2766. swrm_device_suspend(&pdev->dev);
  2767. swrm->clk_src = *(int *)data;
  2768. }
  2769. mutex_unlock(&swrm->mlock);
  2770. break;
  2771. case SWR_CLK_FREQ:
  2772. if (!data) {
  2773. dev_err(swrm->dev, "%s: data is NULL\n", __func__);
  2774. ret = -EINVAL;
  2775. } else {
  2776. mutex_lock(&swrm->mlock);
  2777. if (swrm->mclk_freq != *(int *)data) {
  2778. dev_dbg(swrm->dev, "%s: freq change: force mstr down\n", __func__);
  2779. if (swrm->state == SWR_MSTR_DOWN)
  2780. dev_dbg(swrm->dev, "%s:SWR master is already Down:%d\n",
  2781. __func__, swrm->state);
  2782. else {
  2783. swrm->mclk_freq = *(int *)data;
  2784. swrm->bus_clk = swrm->mclk_freq;
  2785. swrm_switch_frame_shape(swrm,
  2786. swrm->bus_clk);
  2787. swrm_device_suspend(&pdev->dev);
  2788. }
  2789. /*
  2790. * add delay to ensure clk release happen
  2791. * if interrupt triggered for clk stop,
  2792. * wait for it to exit
  2793. */
  2794. usleep_range(10000, 10500);
  2795. }
  2796. swrm->mclk_freq = *(int *)data;
  2797. swrm->bus_clk = swrm->mclk_freq;
  2798. mutex_unlock(&swrm->mlock);
  2799. }
  2800. break;
  2801. case SWR_DEVICE_SSR_DOWN:
  2802. mutex_lock(&swrm->devlock);
  2803. swrm->dev_up = false;
  2804. mutex_unlock(&swrm->devlock);
  2805. mutex_lock(&swrm->reslock);
  2806. swrm->state = SWR_MSTR_SSR;
  2807. mutex_unlock(&swrm->reslock);
  2808. break;
  2809. case SWR_DEVICE_SSR_UP:
  2810. /* wait for clk voting to be zero */
  2811. reinit_completion(&swrm->clk_off_complete);
  2812. if (swrm->clk_ref_count &&
  2813. !wait_for_completion_timeout(&swrm->clk_off_complete,
  2814. msecs_to_jiffies(500)))
  2815. dev_err(swrm->dev, "%s: clock voting not zero\n",
  2816. __func__);
  2817. mutex_lock(&swrm->devlock);
  2818. swrm->dev_up = true;
  2819. mutex_unlock(&swrm->devlock);
  2820. break;
  2821. case SWR_DEVICE_DOWN:
  2822. dev_dbg(swrm->dev, "%s: swr master down called\n", __func__);
  2823. mutex_lock(&swrm->mlock);
  2824. if (swrm->state == SWR_MSTR_DOWN)
  2825. dev_dbg(swrm->dev, "%s:SWR master is already Down:%d\n",
  2826. __func__, swrm->state);
  2827. else
  2828. swrm_device_down(&pdev->dev);
  2829. mutex_unlock(&swrm->mlock);
  2830. break;
  2831. case SWR_DEVICE_UP:
  2832. dev_dbg(swrm->dev, "%s: swr master up called\n", __func__);
  2833. mutex_lock(&swrm->devlock);
  2834. if (!swrm->dev_up) {
  2835. dev_dbg(swrm->dev, "SSR not complete yet\n");
  2836. mutex_unlock(&swrm->devlock);
  2837. return -EBUSY;
  2838. }
  2839. mutex_unlock(&swrm->devlock);
  2840. mutex_lock(&swrm->mlock);
  2841. pm_runtime_mark_last_busy(&pdev->dev);
  2842. pm_runtime_get_sync(&pdev->dev);
  2843. mutex_lock(&swrm->reslock);
  2844. list_for_each_entry(swr_dev, &mstr->devices, dev_list) {
  2845. ret = swr_reset_device(swr_dev);
  2846. if (ret == -ENODEV) {
  2847. dev_dbg_ratelimited(swrm->dev,
  2848. "%s slave reset not implemented\n",
  2849. __func__);
  2850. ret = 0;
  2851. } else if (ret) {
  2852. dev_err(swrm->dev,
  2853. "%s: failed to reset swr device %d\n",
  2854. __func__, swr_dev->dev_num);
  2855. swrm_clk_request(swrm, false);
  2856. }
  2857. }
  2858. pm_runtime_mark_last_busy(&pdev->dev);
  2859. pm_runtime_put_autosuspend(&pdev->dev);
  2860. mutex_unlock(&swrm->reslock);
  2861. mutex_unlock(&swrm->mlock);
  2862. break;
  2863. case SWR_SET_NUM_RX_CH:
  2864. if (!data) {
  2865. dev_err(swrm->dev, "%s: data is NULL\n", __func__);
  2866. ret = -EINVAL;
  2867. } else {
  2868. mutex_lock(&swrm->mlock);
  2869. swrm->num_rx_chs = *(int *)data;
  2870. if ((swrm->num_rx_chs > 1) && !swrm->num_cfg_devs) {
  2871. list_for_each_entry(swr_dev, &mstr->devices,
  2872. dev_list) {
  2873. ret = swr_set_device_group(swr_dev,
  2874. SWR_BROADCAST);
  2875. if (ret)
  2876. dev_err(swrm->dev,
  2877. "%s: set num ch failed\n",
  2878. __func__);
  2879. }
  2880. } else {
  2881. list_for_each_entry(swr_dev, &mstr->devices,
  2882. dev_list) {
  2883. ret = swr_set_device_group(swr_dev,
  2884. SWR_GROUP_NONE);
  2885. if (ret)
  2886. dev_err(swrm->dev,
  2887. "%s: set num ch failed\n",
  2888. __func__);
  2889. }
  2890. }
  2891. mutex_unlock(&swrm->mlock);
  2892. }
  2893. break;
  2894. case SWR_REGISTER_WAKE_IRQ:
  2895. if (!data) {
  2896. dev_err(swrm->dev, "%s: reg wake irq data is NULL\n",
  2897. __func__);
  2898. ret = -EINVAL;
  2899. } else {
  2900. mutex_lock(&swrm->mlock);
  2901. swrm->ipc_wakeup = *(u32 *)data;
  2902. ret = swrm_register_wake_irq(swrm);
  2903. if (ret)
  2904. dev_err(swrm->dev, "%s: register wake_irq failed\n",
  2905. __func__);
  2906. mutex_unlock(&swrm->mlock);
  2907. }
  2908. break;
  2909. case SWR_REGISTER_WAKEUP:
  2910. msm_aud_evt_blocking_notifier_call_chain(
  2911. SWR_WAKE_IRQ_REGISTER, (void *)swrm);
  2912. break;
  2913. case SWR_DEREGISTER_WAKEUP:
  2914. msm_aud_evt_blocking_notifier_call_chain(
  2915. SWR_WAKE_IRQ_DEREGISTER, (void *)swrm);
  2916. break;
  2917. case SWR_SET_PORT_MAP:
  2918. if (!data) {
  2919. dev_err(swrm->dev, "%s: data is NULL for id=%d\n",
  2920. __func__, id);
  2921. ret = -EINVAL;
  2922. } else {
  2923. mutex_lock(&swrm->mlock);
  2924. port_cfg = (struct swrm_port_config *)data;
  2925. if (!port_cfg->size) {
  2926. ret = -EINVAL;
  2927. goto done;
  2928. }
  2929. ret = swrm_alloc_port_mem(&pdev->dev, swrm,
  2930. port_cfg->uc, port_cfg->size);
  2931. if (!ret)
  2932. swrm_copy_port_config(swrm, port_cfg,
  2933. port_cfg->size);
  2934. done:
  2935. mutex_unlock(&swrm->mlock);
  2936. }
  2937. break;
  2938. default:
  2939. dev_err(swrm->dev, "%s: swr master unknown id %d\n",
  2940. __func__, id);
  2941. break;
  2942. }
  2943. return ret;
  2944. }
  2945. EXPORT_SYMBOL(swrm_wcd_notify);
  2946. /*
  2947. * swrm_pm_cmpxchg:
  2948. * Check old state and exchange with pm new state
  2949. * if old state matches with current state
  2950. *
  2951. * @swrm: pointer to wcd core resource
  2952. * @o: pm old state
  2953. * @n: pm new state
  2954. *
  2955. * Returns old state
  2956. */
  2957. static enum swrm_pm_state swrm_pm_cmpxchg(
  2958. struct swr_mstr_ctrl *swrm,
  2959. enum swrm_pm_state o,
  2960. enum swrm_pm_state n)
  2961. {
  2962. enum swrm_pm_state old;
  2963. if (!swrm)
  2964. return o;
  2965. mutex_lock(&swrm->pm_lock);
  2966. old = swrm->pm_state;
  2967. if (old == o)
  2968. swrm->pm_state = n;
  2969. mutex_unlock(&swrm->pm_lock);
  2970. return old;
  2971. }
  2972. static bool swrm_lock_sleep(struct swr_mstr_ctrl *swrm)
  2973. {
  2974. enum swrm_pm_state os;
  2975. /*
  2976. * swrm_{lock/unlock}_sleep will be called by swr irq handler
  2977. * and slave wake up requests..
  2978. *
  2979. * If system didn't resume, we can simply return false so
  2980. * IRQ handler can return without handling IRQ.
  2981. */
  2982. mutex_lock(&swrm->pm_lock);
  2983. if (swrm->wlock_holders++ == 0) {
  2984. dev_dbg(swrm->dev, "%s: holding wake lock\n", __func__);
  2985. pm_qos_update_request(&swrm->pm_qos_req,
  2986. msm_cpuidle_get_deep_idle_latency());
  2987. pm_stay_awake(swrm->dev);
  2988. }
  2989. mutex_unlock(&swrm->pm_lock);
  2990. if (!wait_event_timeout(swrm->pm_wq,
  2991. ((os = swrm_pm_cmpxchg(swrm,
  2992. SWRM_PM_SLEEPABLE,
  2993. SWRM_PM_AWAKE)) ==
  2994. SWRM_PM_SLEEPABLE ||
  2995. (os == SWRM_PM_AWAKE)),
  2996. msecs_to_jiffies(
  2997. SWRM_SYSTEM_RESUME_TIMEOUT_MS))) {
  2998. dev_err(swrm->dev, "%s: system didn't resume within %dms, s %d, w %d\n",
  2999. __func__, SWRM_SYSTEM_RESUME_TIMEOUT_MS, swrm->pm_state,
  3000. swrm->wlock_holders);
  3001. swrm_unlock_sleep(swrm);
  3002. return false;
  3003. }
  3004. wake_up_all(&swrm->pm_wq);
  3005. return true;
  3006. }
  3007. static void swrm_unlock_sleep(struct swr_mstr_ctrl *swrm)
  3008. {
  3009. mutex_lock(&swrm->pm_lock);
  3010. if (--swrm->wlock_holders == 0) {
  3011. dev_dbg(swrm->dev, "%s: releasing wake lock pm_state %d -> %d\n",
  3012. __func__, swrm->pm_state, SWRM_PM_SLEEPABLE);
  3013. /*
  3014. * if swrm_lock_sleep failed, pm_state would be still
  3015. * swrm_PM_ASLEEP, don't overwrite
  3016. */
  3017. if (likely(swrm->pm_state == SWRM_PM_AWAKE))
  3018. swrm->pm_state = SWRM_PM_SLEEPABLE;
  3019. pm_qos_update_request(&swrm->pm_qos_req,
  3020. PM_QOS_DEFAULT_VALUE);
  3021. pm_relax(swrm->dev);
  3022. }
  3023. mutex_unlock(&swrm->pm_lock);
  3024. wake_up_all(&swrm->pm_wq);
  3025. }
  3026. #ifdef CONFIG_PM_SLEEP
  3027. static int swrm_suspend(struct device *dev)
  3028. {
  3029. int ret = -EBUSY;
  3030. struct platform_device *pdev = to_platform_device(dev);
  3031. struct swr_mstr_ctrl *swrm = platform_get_drvdata(pdev);
  3032. dev_dbg(dev, "%s: system suspend, state: %d\n", __func__, swrm->state);
  3033. mutex_lock(&swrm->pm_lock);
  3034. if (swrm->pm_state == SWRM_PM_SLEEPABLE) {
  3035. dev_dbg(swrm->dev, "%s: suspending system, state %d, wlock %d\n",
  3036. __func__, swrm->pm_state,
  3037. swrm->wlock_holders);
  3038. swrm->pm_state = SWRM_PM_ASLEEP;
  3039. } else if (swrm->pm_state == SWRM_PM_AWAKE) {
  3040. /*
  3041. * unlock to wait for pm_state == SWRM_PM_SLEEPABLE
  3042. * then set to SWRM_PM_ASLEEP
  3043. */
  3044. dev_dbg(swrm->dev, "%s: waiting to suspend system, state %d, wlock %d\n",
  3045. __func__, swrm->pm_state,
  3046. swrm->wlock_holders);
  3047. mutex_unlock(&swrm->pm_lock);
  3048. if (!(wait_event_timeout(swrm->pm_wq, swrm_pm_cmpxchg(
  3049. swrm, SWRM_PM_SLEEPABLE,
  3050. SWRM_PM_ASLEEP) ==
  3051. SWRM_PM_SLEEPABLE,
  3052. msecs_to_jiffies(
  3053. SWRM_SYS_SUSPEND_WAIT)))) {
  3054. dev_dbg(swrm->dev, "%s: suspend failed state %d, wlock %d\n",
  3055. __func__, swrm->pm_state,
  3056. swrm->wlock_holders);
  3057. return -EBUSY;
  3058. } else {
  3059. dev_dbg(swrm->dev,
  3060. "%s: done, state %d, wlock %d\n",
  3061. __func__, swrm->pm_state,
  3062. swrm->wlock_holders);
  3063. }
  3064. mutex_lock(&swrm->pm_lock);
  3065. } else if (swrm->pm_state == SWRM_PM_ASLEEP) {
  3066. dev_dbg(swrm->dev, "%s: system is already suspended, state %d, wlock %d\n",
  3067. __func__, swrm->pm_state,
  3068. swrm->wlock_holders);
  3069. }
  3070. mutex_unlock(&swrm->pm_lock);
  3071. if ((!pm_runtime_enabled(dev) || !pm_runtime_suspended(dev))) {
  3072. ret = swrm_runtime_suspend(dev);
  3073. if (!ret) {
  3074. /*
  3075. * Synchronize runtime-pm and system-pm states:
  3076. * At this point, we are already suspended. If
  3077. * runtime-pm still thinks its active, then
  3078. * make sure its status is in sync with HW
  3079. * status. The three below calls let the
  3080. * runtime-pm know that we are suspended
  3081. * already without re-invoking the suspend
  3082. * callback
  3083. */
  3084. pm_runtime_disable(dev);
  3085. pm_runtime_set_suspended(dev);
  3086. pm_runtime_enable(dev);
  3087. }
  3088. }
  3089. if (ret == -EBUSY) {
  3090. /*
  3091. * There is a possibility that some audio stream is active
  3092. * during suspend. We dont want to return suspend failure in
  3093. * that case so that display and relevant components can still
  3094. * go to suspend.
  3095. * If there is some other error, then it should be passed-on
  3096. * to system level suspend
  3097. */
  3098. ret = 0;
  3099. }
  3100. return ret;
  3101. }
  3102. static int swrm_resume(struct device *dev)
  3103. {
  3104. int ret = 0;
  3105. struct platform_device *pdev = to_platform_device(dev);
  3106. struct swr_mstr_ctrl *swrm = platform_get_drvdata(pdev);
  3107. dev_dbg(dev, "%s: system resume, state: %d\n", __func__, swrm->state);
  3108. if (!pm_runtime_enabled(dev) || !pm_runtime_suspend(dev)) {
  3109. ret = swrm_runtime_resume(dev);
  3110. if (!ret) {
  3111. pm_runtime_mark_last_busy(dev);
  3112. pm_request_autosuspend(dev);
  3113. }
  3114. }
  3115. mutex_lock(&swrm->pm_lock);
  3116. if (swrm->pm_state == SWRM_PM_ASLEEP) {
  3117. dev_dbg(swrm->dev,
  3118. "%s: resuming system, state %d, wlock %d\n",
  3119. __func__, swrm->pm_state,
  3120. swrm->wlock_holders);
  3121. swrm->pm_state = SWRM_PM_SLEEPABLE;
  3122. } else {
  3123. dev_dbg(swrm->dev, "%s: system is already awake, state %d wlock %d\n",
  3124. __func__, swrm->pm_state,
  3125. swrm->wlock_holders);
  3126. }
  3127. mutex_unlock(&swrm->pm_lock);
  3128. wake_up_all(&swrm->pm_wq);
  3129. return ret;
  3130. }
  3131. #endif /* CONFIG_PM_SLEEP */
  3132. static const struct dev_pm_ops swrm_dev_pm_ops = {
  3133. SET_SYSTEM_SLEEP_PM_OPS(
  3134. swrm_suspend,
  3135. swrm_resume
  3136. )
  3137. SET_RUNTIME_PM_OPS(
  3138. swrm_runtime_suspend,
  3139. swrm_runtime_resume,
  3140. NULL
  3141. )
  3142. };
  3143. static const struct of_device_id swrm_dt_match[] = {
  3144. {
  3145. .compatible = "qcom,swr-mstr",
  3146. },
  3147. {}
  3148. };
  3149. static struct platform_driver swr_mstr_driver = {
  3150. .probe = swrm_probe,
  3151. .remove = swrm_remove,
  3152. .driver = {
  3153. .name = SWR_WCD_NAME,
  3154. .owner = THIS_MODULE,
  3155. .pm = &swrm_dev_pm_ops,
  3156. .of_match_table = swrm_dt_match,
  3157. .suppress_bind_attrs = true,
  3158. },
  3159. };
  3160. static int __init swrm_init(void)
  3161. {
  3162. return platform_driver_register(&swr_mstr_driver);
  3163. }
  3164. module_init(swrm_init);
  3165. static void __exit swrm_exit(void)
  3166. {
  3167. platform_driver_unregister(&swr_mstr_driver);
  3168. }
  3169. module_exit(swrm_exit);
  3170. MODULE_LICENSE("GPL v2");
  3171. MODULE_DESCRIPTION("SoundWire Master Controller");
  3172. MODULE_ALIAS("platform:swr-mstr");