swr-mstr-ctrl.c 94 KB

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