swr-mstr-ctrl.c 95 KB

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