swr-mstr-ctrl.c 104 KB

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