swr-mstr-ctrl.c 95 KB

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