swr-mstr-ctrl.c 94 KB

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