swr-mstr-ctrl.c 103 KB

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