dsi_ctrl.c 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2016-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/of_device.h>
  6. #include <linux/err.h>
  7. #include <linux/regulator/consumer.h>
  8. #include <linux/clk.h>
  9. #include <linux/of_irq.h>
  10. #include <video/mipi_display.h>
  11. #include "msm_drv.h"
  12. #include "msm_kms.h"
  13. #include "msm_mmu.h"
  14. #include "dsi_ctrl.h"
  15. #include "dsi_ctrl_hw.h"
  16. #include "dsi_clk.h"
  17. #include "dsi_pwr.h"
  18. #include "dsi_catalog.h"
  19. #include "dsi_panel.h"
  20. #include "sde_dbg.h"
  21. #define DSI_CTRL_DEFAULT_LABEL "MDSS DSI CTRL"
  22. #define DSI_CTRL_TX_TO_MS 200
  23. #define TO_ON_OFF(x) ((x) ? "ON" : "OFF")
  24. #define CEIL(x, y) (((x) + ((y)-1)) / (y))
  25. #define TICKS_IN_MICRO_SECOND 1000000
  26. #define DSI_CTRL_DEBUG(c, fmt, ...) DRM_DEV_DEBUG(NULL, "[msm-dsi-debug]: %s: "\
  27. fmt, c ? c->name : "inv", ##__VA_ARGS__)
  28. #define DSI_CTRL_ERR(c, fmt, ...) DRM_DEV_ERROR(NULL, "[msm-dsi-error]: %s: "\
  29. fmt, c ? c->name : "inv", ##__VA_ARGS__)
  30. #define DSI_CTRL_INFO(c, fmt, ...) DRM_DEV_INFO(NULL, "[msm-dsi-info]: %s: "\
  31. fmt, c->name, ##__VA_ARGS__)
  32. #define DSI_CTRL_WARN(c, fmt, ...) DRM_WARN("[msm-dsi-warn]: %s: " fmt,\
  33. c ? c->name : "inv", ##__VA_ARGS__)
  34. struct dsi_ctrl_list_item {
  35. struct dsi_ctrl *ctrl;
  36. struct list_head list;
  37. };
  38. static LIST_HEAD(dsi_ctrl_list);
  39. static DEFINE_MUTEX(dsi_ctrl_list_lock);
  40. static const enum dsi_ctrl_version dsi_ctrl_v1_4 = DSI_CTRL_VERSION_1_4;
  41. static const enum dsi_ctrl_version dsi_ctrl_v2_0 = DSI_CTRL_VERSION_2_0;
  42. static const enum dsi_ctrl_version dsi_ctrl_v2_2 = DSI_CTRL_VERSION_2_2;
  43. static const enum dsi_ctrl_version dsi_ctrl_v2_3 = DSI_CTRL_VERSION_2_3;
  44. static const enum dsi_ctrl_version dsi_ctrl_v2_4 = DSI_CTRL_VERSION_2_4;
  45. static const enum dsi_ctrl_version dsi_ctrl_v2_5 = DSI_CTRL_VERSION_2_5;
  46. static const struct of_device_id msm_dsi_of_match[] = {
  47. {
  48. .compatible = "qcom,dsi-ctrl-hw-v1.4",
  49. .data = &dsi_ctrl_v1_4,
  50. },
  51. {
  52. .compatible = "qcom,dsi-ctrl-hw-v2.0",
  53. .data = &dsi_ctrl_v2_0,
  54. },
  55. {
  56. .compatible = "qcom,dsi-ctrl-hw-v2.2",
  57. .data = &dsi_ctrl_v2_2,
  58. },
  59. {
  60. .compatible = "qcom,dsi-ctrl-hw-v2.3",
  61. .data = &dsi_ctrl_v2_3,
  62. },
  63. {
  64. .compatible = "qcom,dsi-ctrl-hw-v2.4",
  65. .data = &dsi_ctrl_v2_4,
  66. },
  67. {
  68. .compatible = "qcom,dsi-ctrl-hw-v2.5",
  69. .data = &dsi_ctrl_v2_5,
  70. },
  71. {}
  72. };
  73. #ifdef CONFIG_DEBUG_FS
  74. static ssize_t debugfs_state_info_read(struct file *file,
  75. char __user *buff,
  76. size_t count,
  77. loff_t *ppos)
  78. {
  79. struct dsi_ctrl *dsi_ctrl = file->private_data;
  80. char *buf;
  81. u32 len = 0;
  82. if (!dsi_ctrl)
  83. return -ENODEV;
  84. if (*ppos)
  85. return 0;
  86. buf = kzalloc(SZ_4K, GFP_KERNEL);
  87. if (!buf)
  88. return -ENOMEM;
  89. /* Dump current state */
  90. len += snprintf((buf + len), (SZ_4K - len), "Current State:\n");
  91. len += snprintf((buf + len), (SZ_4K - len),
  92. "\tCTRL_ENGINE = %s\n",
  93. TO_ON_OFF(dsi_ctrl->current_state.controller_state));
  94. len += snprintf((buf + len), (SZ_4K - len),
  95. "\tVIDEO_ENGINE = %s\n\tCOMMAND_ENGINE = %s\n",
  96. TO_ON_OFF(dsi_ctrl->current_state.vid_engine_state),
  97. TO_ON_OFF(dsi_ctrl->current_state.cmd_engine_state));
  98. /* Dump clock information */
  99. len += snprintf((buf + len), (SZ_4K - len), "\nClock Info:\n");
  100. len += snprintf((buf + len), (SZ_4K - len),
  101. "\tBYTE_CLK = %u, PIXEL_CLK = %u, ESC_CLK = %u\n",
  102. dsi_ctrl->clk_freq.byte_clk_rate,
  103. dsi_ctrl->clk_freq.pix_clk_rate,
  104. dsi_ctrl->clk_freq.esc_clk_rate);
  105. if (len > count)
  106. len = count;
  107. len = min_t(size_t, len, SZ_4K);
  108. if (copy_to_user(buff, buf, len)) {
  109. kfree(buf);
  110. return -EFAULT;
  111. }
  112. *ppos += len;
  113. kfree(buf);
  114. return len;
  115. }
  116. static ssize_t debugfs_reg_dump_read(struct file *file,
  117. char __user *buff,
  118. size_t count,
  119. loff_t *ppos)
  120. {
  121. struct dsi_ctrl *dsi_ctrl = file->private_data;
  122. char *buf;
  123. u32 len = 0;
  124. struct dsi_clk_ctrl_info clk_info;
  125. int rc = 0;
  126. if (!dsi_ctrl)
  127. return -ENODEV;
  128. if (*ppos)
  129. return 0;
  130. buf = kzalloc(SZ_4K, GFP_KERNEL);
  131. if (!buf)
  132. return -ENOMEM;
  133. clk_info.client = DSI_CLK_REQ_DSI_CLIENT;
  134. clk_info.clk_type = DSI_CORE_CLK;
  135. clk_info.clk_state = DSI_CLK_ON;
  136. rc = dsi_ctrl->clk_cb.dsi_clk_cb(dsi_ctrl->clk_cb.priv, clk_info);
  137. if (rc) {
  138. DSI_CTRL_ERR(dsi_ctrl, "failed to enable DSI core clocks\n");
  139. kfree(buf);
  140. return rc;
  141. }
  142. if (dsi_ctrl->hw.ops.reg_dump_to_buffer)
  143. len = dsi_ctrl->hw.ops.reg_dump_to_buffer(&dsi_ctrl->hw,
  144. buf, SZ_4K);
  145. clk_info.clk_state = DSI_CLK_OFF;
  146. rc = dsi_ctrl->clk_cb.dsi_clk_cb(dsi_ctrl->clk_cb.priv, clk_info);
  147. if (rc) {
  148. DSI_CTRL_ERR(dsi_ctrl, "failed to disable DSI core clocks\n");
  149. kfree(buf);
  150. return rc;
  151. }
  152. if (len > count)
  153. len = count;
  154. len = min_t(size_t, len, SZ_4K);
  155. if (copy_to_user(buff, buf, len)) {
  156. kfree(buf);
  157. return -EFAULT;
  158. }
  159. *ppos += len;
  160. kfree(buf);
  161. return len;
  162. }
  163. static ssize_t debugfs_line_count_read(struct file *file,
  164. char __user *user_buf,
  165. size_t user_len,
  166. loff_t *ppos)
  167. {
  168. struct dsi_ctrl *dsi_ctrl = file->private_data;
  169. char *buf;
  170. int rc = 0;
  171. u32 len = 0;
  172. size_t max_len = min_t(size_t, user_len, SZ_4K);
  173. if (!dsi_ctrl)
  174. return -ENODEV;
  175. if (*ppos)
  176. return 0;
  177. buf = kzalloc(max_len, GFP_KERNEL);
  178. if (ZERO_OR_NULL_PTR(buf))
  179. return -ENOMEM;
  180. mutex_lock(&dsi_ctrl->ctrl_lock);
  181. len += scnprintf(buf, max_len, "Command triggered at line: %04x\n",
  182. dsi_ctrl->cmd_trigger_line);
  183. len += scnprintf((buf + len), max_len - len,
  184. "Command triggered at frame: %04x\n",
  185. dsi_ctrl->cmd_trigger_frame);
  186. len += scnprintf((buf + len), max_len - len,
  187. "Command successful at line: %04x\n",
  188. dsi_ctrl->cmd_success_line);
  189. len += scnprintf((buf + len), max_len - len,
  190. "Command successful at frame: %04x\n",
  191. dsi_ctrl->cmd_success_frame);
  192. mutex_unlock(&dsi_ctrl->ctrl_lock);
  193. if (len > max_len)
  194. len = max_len;
  195. if (copy_to_user(user_buf, buf, len)) {
  196. rc = -EFAULT;
  197. goto error;
  198. }
  199. *ppos += len;
  200. error:
  201. kfree(buf);
  202. return len;
  203. }
  204. static const struct file_operations state_info_fops = {
  205. .open = simple_open,
  206. .read = debugfs_state_info_read,
  207. };
  208. static const struct file_operations reg_dump_fops = {
  209. .open = simple_open,
  210. .read = debugfs_reg_dump_read,
  211. };
  212. static const struct file_operations cmd_dma_stats_fops = {
  213. .open = simple_open,
  214. .read = debugfs_line_count_read,
  215. };
  216. static int dsi_ctrl_debugfs_init(struct dsi_ctrl *dsi_ctrl,
  217. struct dentry *parent)
  218. {
  219. int rc = 0;
  220. struct dentry *dir, *state_file, *reg_dump, *cmd_dma_logs;
  221. char dbg_name[DSI_DEBUG_NAME_LEN];
  222. if (!dsi_ctrl || !parent) {
  223. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  224. return -EINVAL;
  225. }
  226. dir = debugfs_create_dir(dsi_ctrl->name, parent);
  227. if (IS_ERR_OR_NULL(dir)) {
  228. rc = PTR_ERR(dir);
  229. DSI_CTRL_ERR(dsi_ctrl, "debugfs create dir failed, rc=%d\n",
  230. rc);
  231. goto error;
  232. }
  233. state_file = debugfs_create_file("state_info",
  234. 0444,
  235. dir,
  236. dsi_ctrl,
  237. &state_info_fops);
  238. if (IS_ERR_OR_NULL(state_file)) {
  239. rc = PTR_ERR(state_file);
  240. DSI_CTRL_ERR(dsi_ctrl, "state file failed, rc=%d\n", rc);
  241. goto error_remove_dir;
  242. }
  243. reg_dump = debugfs_create_file("reg_dump",
  244. 0444,
  245. dir,
  246. dsi_ctrl,
  247. &reg_dump_fops);
  248. if (IS_ERR_OR_NULL(reg_dump)) {
  249. rc = PTR_ERR(reg_dump);
  250. DSI_CTRL_ERR(dsi_ctrl, "reg dump file failed, rc=%d\n", rc);
  251. goto error_remove_dir;
  252. }
  253. cmd_dma_logs = debugfs_create_bool("enable_cmd_dma_stats",
  254. 0600,
  255. dir,
  256. &dsi_ctrl->enable_cmd_dma_stats);
  257. if (IS_ERR_OR_NULL(cmd_dma_logs)) {
  258. rc = PTR_ERR(cmd_dma_logs);
  259. DSI_CTRL_ERR(dsi_ctrl,
  260. "enable cmd dma stats failed, rc=%d\n",
  261. rc);
  262. goto error_remove_dir;
  263. }
  264. cmd_dma_logs = debugfs_create_file("cmd_dma_stats",
  265. 0444,
  266. dir,
  267. dsi_ctrl,
  268. &cmd_dma_stats_fops);
  269. if (IS_ERR_OR_NULL(cmd_dma_logs)) {
  270. rc = PTR_ERR(cmd_dma_logs);
  271. DSI_CTRL_ERR(dsi_ctrl, "Line count file failed, rc=%d\n",
  272. rc);
  273. goto error_remove_dir;
  274. }
  275. dsi_ctrl->debugfs_root = dir;
  276. snprintf(dbg_name, DSI_DEBUG_NAME_LEN, "dsi%d_ctrl",
  277. dsi_ctrl->cell_index);
  278. sde_dbg_reg_register_base(dbg_name, dsi_ctrl->hw.base,
  279. msm_iomap_size(dsi_ctrl->pdev, "dsi_ctrl"));
  280. error_remove_dir:
  281. debugfs_remove(dir);
  282. error:
  283. return rc;
  284. }
  285. static int dsi_ctrl_debugfs_deinit(struct dsi_ctrl *dsi_ctrl)
  286. {
  287. debugfs_remove(dsi_ctrl->debugfs_root);
  288. return 0;
  289. }
  290. #else
  291. static int dsi_ctrl_debugfs_init(struct dsi_ctrl *dsi_ctrl,
  292. struct dentry *parent)
  293. {
  294. return 0;
  295. }
  296. static int dsi_ctrl_debugfs_deinit(struct dsi_ctrl *dsi_ctrl)
  297. {
  298. return 0;
  299. }
  300. #endif /* CONFIG_DEBUG_FS */
  301. static inline struct msm_gem_address_space*
  302. dsi_ctrl_get_aspace(struct dsi_ctrl *dsi_ctrl,
  303. int domain)
  304. {
  305. if (!dsi_ctrl || !dsi_ctrl->drm_dev)
  306. return NULL;
  307. return msm_gem_smmu_address_space_get(dsi_ctrl->drm_dev, domain);
  308. }
  309. static void dsi_ctrl_flush_cmd_dma_queue(struct dsi_ctrl *dsi_ctrl)
  310. {
  311. /*
  312. * If a command is triggered right after another command,
  313. * check if the previous command transfer is completed. If
  314. * transfer is done, cancel any work that has been
  315. * queued. Otherwise wait till the work is scheduled and
  316. * completed before triggering the next command by
  317. * flushing the workqueue.
  318. */
  319. if (atomic_read(&dsi_ctrl->dma_irq_trig)) {
  320. cancel_work_sync(&dsi_ctrl->dma_cmd_wait);
  321. } else {
  322. flush_workqueue(dsi_ctrl->dma_cmd_workq);
  323. SDE_EVT32(SDE_EVTLOG_FUNC_CASE2);
  324. }
  325. }
  326. static void dsi_ctrl_dma_cmd_wait_for_done(struct work_struct *work)
  327. {
  328. int ret = 0;
  329. struct dsi_ctrl *dsi_ctrl = NULL;
  330. u32 status;
  331. u32 mask = DSI_CMD_MODE_DMA_DONE;
  332. struct dsi_ctrl_hw_ops dsi_hw_ops;
  333. dsi_ctrl = container_of(work, struct dsi_ctrl, dma_cmd_wait);
  334. dsi_hw_ops = dsi_ctrl->hw.ops;
  335. SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_ENTRY);
  336. /*
  337. * This atomic state will be set if ISR has been triggered,
  338. * so the wait is not needed.
  339. */
  340. if (atomic_read(&dsi_ctrl->dma_irq_trig))
  341. goto done;
  342. ret = wait_for_completion_timeout(
  343. &dsi_ctrl->irq_info.cmd_dma_done,
  344. msecs_to_jiffies(DSI_CTRL_TX_TO_MS));
  345. if (ret == 0 && !atomic_read(&dsi_ctrl->dma_irq_trig)) {
  346. status = dsi_hw_ops.get_interrupt_status(&dsi_ctrl->hw);
  347. if (status & mask) {
  348. status |= (DSI_CMD_MODE_DMA_DONE | DSI_BTA_DONE);
  349. dsi_hw_ops.clear_interrupt_status(&dsi_ctrl->hw,
  350. status);
  351. DSI_CTRL_WARN(dsi_ctrl,
  352. "dma_tx done but irq not triggered\n");
  353. } else {
  354. DSI_CTRL_ERR(dsi_ctrl,
  355. "Command transfer failed\n");
  356. }
  357. dsi_ctrl_disable_status_interrupt(dsi_ctrl,
  358. DSI_SINT_CMD_MODE_DMA_DONE);
  359. }
  360. done:
  361. dsi_ctrl->dma_wait_queued = false;
  362. }
  363. static int dsi_ctrl_check_state(struct dsi_ctrl *dsi_ctrl,
  364. enum dsi_ctrl_driver_ops op,
  365. u32 op_state)
  366. {
  367. int rc = 0;
  368. struct dsi_ctrl_state_info *state = &dsi_ctrl->current_state;
  369. SDE_EVT32(dsi_ctrl->cell_index, op, op_state);
  370. switch (op) {
  371. case DSI_CTRL_OP_POWER_STATE_CHANGE:
  372. if (state->power_state == op_state) {
  373. DSI_CTRL_ERR(dsi_ctrl, "No change in state, pwr_state=%d\n",
  374. op_state);
  375. rc = -EINVAL;
  376. } else if (state->power_state == DSI_CTRL_POWER_VREG_ON) {
  377. if (state->vid_engine_state == DSI_CTRL_ENGINE_ON) {
  378. DSI_CTRL_ERR(dsi_ctrl, "State error: op=%d: %d\n",
  379. op_state,
  380. state->vid_engine_state);
  381. rc = -EINVAL;
  382. }
  383. }
  384. break;
  385. case DSI_CTRL_OP_CMD_ENGINE:
  386. if (state->cmd_engine_state == op_state) {
  387. DSI_CTRL_ERR(dsi_ctrl, "No change in state, cmd_state=%d\n",
  388. op_state);
  389. rc = -EINVAL;
  390. } else if ((state->power_state != DSI_CTRL_POWER_VREG_ON) ||
  391. (state->controller_state != DSI_CTRL_ENGINE_ON)) {
  392. DSI_CTRL_ERR(dsi_ctrl, "State error: op=%d: %d, %d\n",
  393. op,
  394. state->power_state,
  395. state->controller_state);
  396. rc = -EINVAL;
  397. }
  398. break;
  399. case DSI_CTRL_OP_VID_ENGINE:
  400. if (state->vid_engine_state == op_state) {
  401. DSI_CTRL_ERR(dsi_ctrl, "No change in state, cmd_state=%d\n",
  402. op_state);
  403. rc = -EINVAL;
  404. } else if ((state->power_state != DSI_CTRL_POWER_VREG_ON) ||
  405. (state->controller_state != DSI_CTRL_ENGINE_ON)) {
  406. DSI_CTRL_ERR(dsi_ctrl, "State error: op=%d: %d, %d\n",
  407. op,
  408. state->power_state,
  409. state->controller_state);
  410. rc = -EINVAL;
  411. }
  412. break;
  413. case DSI_CTRL_OP_HOST_ENGINE:
  414. if (state->controller_state == op_state) {
  415. DSI_CTRL_ERR(dsi_ctrl, "No change in state, ctrl_state=%d\n",
  416. op_state);
  417. rc = -EINVAL;
  418. } else if (state->power_state != DSI_CTRL_POWER_VREG_ON) {
  419. DSI_CTRL_ERR(dsi_ctrl, "State error (link is off): op=%d:, %d\n",
  420. op_state,
  421. state->power_state);
  422. rc = -EINVAL;
  423. } else if ((op_state == DSI_CTRL_ENGINE_OFF) &&
  424. ((state->cmd_engine_state != DSI_CTRL_ENGINE_OFF) ||
  425. (state->vid_engine_state != DSI_CTRL_ENGINE_OFF))) {
  426. DSI_CTRL_ERR(dsi_ctrl, "State error (eng on): op=%d: %d, %d\n",
  427. op_state,
  428. state->cmd_engine_state,
  429. state->vid_engine_state);
  430. rc = -EINVAL;
  431. }
  432. break;
  433. case DSI_CTRL_OP_CMD_TX:
  434. if ((state->power_state != DSI_CTRL_POWER_VREG_ON) ||
  435. (!state->host_initialized) ||
  436. (state->cmd_engine_state != DSI_CTRL_ENGINE_ON)) {
  437. DSI_CTRL_ERR(dsi_ctrl, "State error: op=%d: %d, %d, %d\n",
  438. op,
  439. state->power_state,
  440. state->host_initialized,
  441. state->cmd_engine_state);
  442. rc = -EINVAL;
  443. }
  444. break;
  445. case DSI_CTRL_OP_HOST_INIT:
  446. if (state->host_initialized == op_state) {
  447. DSI_CTRL_ERR(dsi_ctrl, "No change in state, host_init=%d\n",
  448. op_state);
  449. rc = -EINVAL;
  450. } else if (state->power_state != DSI_CTRL_POWER_VREG_ON) {
  451. DSI_CTRL_ERR(dsi_ctrl, "State error: op=%d: %d\n",
  452. op, state->power_state);
  453. rc = -EINVAL;
  454. }
  455. break;
  456. case DSI_CTRL_OP_TPG:
  457. if (state->tpg_enabled == op_state) {
  458. DSI_CTRL_ERR(dsi_ctrl, "No change in state, tpg_enabled=%d\n",
  459. op_state);
  460. rc = -EINVAL;
  461. } else if ((state->power_state != DSI_CTRL_POWER_VREG_ON) ||
  462. (state->controller_state != DSI_CTRL_ENGINE_ON)) {
  463. DSI_CTRL_ERR(dsi_ctrl, "State error: op=%d: %d, %d\n",
  464. op,
  465. state->power_state,
  466. state->controller_state);
  467. rc = -EINVAL;
  468. }
  469. break;
  470. case DSI_CTRL_OP_PHY_SW_RESET:
  471. if (state->power_state != DSI_CTRL_POWER_VREG_ON) {
  472. DSI_CTRL_ERR(dsi_ctrl, "State error: op=%d: %d\n",
  473. op, state->power_state);
  474. rc = -EINVAL;
  475. }
  476. break;
  477. case DSI_CTRL_OP_ASYNC_TIMING:
  478. if (state->vid_engine_state != op_state) {
  479. DSI_CTRL_ERR(dsi_ctrl, "Unexpected engine state vid_state=%d\n",
  480. op_state);
  481. rc = -EINVAL;
  482. }
  483. break;
  484. default:
  485. rc = -ENOTSUPP;
  486. break;
  487. }
  488. return rc;
  489. }
  490. bool dsi_ctrl_validate_host_state(struct dsi_ctrl *dsi_ctrl)
  491. {
  492. struct dsi_ctrl_state_info *state = &dsi_ctrl->current_state;
  493. if (!state) {
  494. DSI_CTRL_ERR(dsi_ctrl, "Invalid host state for DSI controller\n");
  495. return -EINVAL;
  496. }
  497. if (!state->host_initialized)
  498. return false;
  499. return true;
  500. }
  501. static void dsi_ctrl_update_state(struct dsi_ctrl *dsi_ctrl,
  502. enum dsi_ctrl_driver_ops op,
  503. u32 op_state)
  504. {
  505. struct dsi_ctrl_state_info *state = &dsi_ctrl->current_state;
  506. switch (op) {
  507. case DSI_CTRL_OP_POWER_STATE_CHANGE:
  508. state->power_state = op_state;
  509. break;
  510. case DSI_CTRL_OP_CMD_ENGINE:
  511. state->cmd_engine_state = op_state;
  512. break;
  513. case DSI_CTRL_OP_VID_ENGINE:
  514. state->vid_engine_state = op_state;
  515. break;
  516. case DSI_CTRL_OP_HOST_ENGINE:
  517. state->controller_state = op_state;
  518. break;
  519. case DSI_CTRL_OP_HOST_INIT:
  520. state->host_initialized = (op_state == 1) ? true : false;
  521. break;
  522. case DSI_CTRL_OP_TPG:
  523. state->tpg_enabled = (op_state == 1) ? true : false;
  524. break;
  525. case DSI_CTRL_OP_CMD_TX:
  526. case DSI_CTRL_OP_PHY_SW_RESET:
  527. default:
  528. break;
  529. }
  530. }
  531. static int dsi_ctrl_init_regmap(struct platform_device *pdev,
  532. struct dsi_ctrl *ctrl)
  533. {
  534. int rc = 0;
  535. void __iomem *ptr;
  536. ptr = msm_ioremap(pdev, "dsi_ctrl", ctrl->name);
  537. if (IS_ERR(ptr)) {
  538. rc = PTR_ERR(ptr);
  539. return rc;
  540. }
  541. ctrl->hw.base = ptr;
  542. DSI_CTRL_DEBUG(ctrl, "map dsi_ctrl registers to %pK\n", ctrl->hw.base);
  543. switch (ctrl->version) {
  544. case DSI_CTRL_VERSION_1_4:
  545. case DSI_CTRL_VERSION_2_0:
  546. ptr = msm_ioremap(pdev, "mmss_misc", ctrl->name);
  547. if (IS_ERR(ptr)) {
  548. DSI_CTRL_ERR(ctrl, "mmss_misc base address not found\n");
  549. rc = PTR_ERR(ptr);
  550. return rc;
  551. }
  552. ctrl->hw.mmss_misc_base = ptr;
  553. ctrl->hw.disp_cc_base = NULL;
  554. ctrl->hw.mdp_intf_base = NULL;
  555. break;
  556. case DSI_CTRL_VERSION_2_2:
  557. case DSI_CTRL_VERSION_2_3:
  558. case DSI_CTRL_VERSION_2_4:
  559. case DSI_CTRL_VERSION_2_5:
  560. ptr = msm_ioremap(pdev, "disp_cc_base", ctrl->name);
  561. if (IS_ERR(ptr)) {
  562. DSI_CTRL_ERR(ctrl, "disp_cc base address not found for\n");
  563. rc = PTR_ERR(ptr);
  564. return rc;
  565. }
  566. ctrl->hw.disp_cc_base = ptr;
  567. ctrl->hw.mmss_misc_base = NULL;
  568. ptr = msm_ioremap(pdev, "mdp_intf_base", ctrl->name);
  569. if (!IS_ERR(ptr))
  570. ctrl->hw.mdp_intf_base = ptr;
  571. break;
  572. default:
  573. break;
  574. }
  575. return rc;
  576. }
  577. static int dsi_ctrl_clocks_deinit(struct dsi_ctrl *ctrl)
  578. {
  579. struct dsi_core_clk_info *core = &ctrl->clk_info.core_clks;
  580. struct dsi_link_lp_clk_info *lp_link = &ctrl->clk_info.lp_link_clks;
  581. struct dsi_link_hs_clk_info *hs_link = &ctrl->clk_info.hs_link_clks;
  582. struct dsi_clk_link_set *rcg = &ctrl->clk_info.rcg_clks;
  583. if (core->mdp_core_clk)
  584. devm_clk_put(&ctrl->pdev->dev, core->mdp_core_clk);
  585. if (core->iface_clk)
  586. devm_clk_put(&ctrl->pdev->dev, core->iface_clk);
  587. if (core->core_mmss_clk)
  588. devm_clk_put(&ctrl->pdev->dev, core->core_mmss_clk);
  589. if (core->bus_clk)
  590. devm_clk_put(&ctrl->pdev->dev, core->bus_clk);
  591. if (core->mnoc_clk)
  592. devm_clk_put(&ctrl->pdev->dev, core->mnoc_clk);
  593. memset(core, 0x0, sizeof(*core));
  594. if (hs_link->byte_clk)
  595. devm_clk_put(&ctrl->pdev->dev, hs_link->byte_clk);
  596. if (hs_link->pixel_clk)
  597. devm_clk_put(&ctrl->pdev->dev, hs_link->pixel_clk);
  598. if (lp_link->esc_clk)
  599. devm_clk_put(&ctrl->pdev->dev, lp_link->esc_clk);
  600. if (hs_link->byte_intf_clk)
  601. devm_clk_put(&ctrl->pdev->dev, hs_link->byte_intf_clk);
  602. memset(hs_link, 0x0, sizeof(*hs_link));
  603. memset(lp_link, 0x0, sizeof(*lp_link));
  604. if (rcg->byte_clk)
  605. devm_clk_put(&ctrl->pdev->dev, rcg->byte_clk);
  606. if (rcg->pixel_clk)
  607. devm_clk_put(&ctrl->pdev->dev, rcg->pixel_clk);
  608. memset(rcg, 0x0, sizeof(*rcg));
  609. return 0;
  610. }
  611. static int dsi_ctrl_clocks_init(struct platform_device *pdev,
  612. struct dsi_ctrl *ctrl)
  613. {
  614. int rc = 0;
  615. struct dsi_core_clk_info *core = &ctrl->clk_info.core_clks;
  616. struct dsi_link_lp_clk_info *lp_link = &ctrl->clk_info.lp_link_clks;
  617. struct dsi_link_hs_clk_info *hs_link = &ctrl->clk_info.hs_link_clks;
  618. struct dsi_clk_link_set *rcg = &ctrl->clk_info.rcg_clks;
  619. core->mdp_core_clk = devm_clk_get(&pdev->dev, "mdp_core_clk");
  620. if (IS_ERR(core->mdp_core_clk)) {
  621. core->mdp_core_clk = NULL;
  622. DSI_CTRL_DEBUG(ctrl, "failed to get mdp_core_clk, rc=%d\n", rc);
  623. }
  624. core->iface_clk = devm_clk_get(&pdev->dev, "iface_clk");
  625. if (IS_ERR(core->iface_clk)) {
  626. core->iface_clk = NULL;
  627. DSI_CTRL_DEBUG(ctrl, "failed to get iface_clk, rc=%d\n", rc);
  628. }
  629. core->core_mmss_clk = devm_clk_get(&pdev->dev, "core_mmss_clk");
  630. if (IS_ERR(core->core_mmss_clk)) {
  631. core->core_mmss_clk = NULL;
  632. DSI_CTRL_DEBUG(ctrl, "failed to get core_mmss_clk, rc=%d\n",
  633. rc);
  634. }
  635. core->bus_clk = devm_clk_get(&pdev->dev, "bus_clk");
  636. if (IS_ERR(core->bus_clk)) {
  637. core->bus_clk = NULL;
  638. DSI_CTRL_DEBUG(ctrl, "failed to get bus_clk, rc=%d\n", rc);
  639. }
  640. core->mnoc_clk = devm_clk_get(&pdev->dev, "mnoc_clk");
  641. if (IS_ERR(core->mnoc_clk)) {
  642. core->mnoc_clk = NULL;
  643. DSI_CTRL_DEBUG(ctrl, "can't get mnoc clock, rc=%d\n", rc);
  644. }
  645. hs_link->byte_clk = devm_clk_get(&pdev->dev, "byte_clk");
  646. if (IS_ERR(hs_link->byte_clk)) {
  647. rc = PTR_ERR(hs_link->byte_clk);
  648. DSI_CTRL_ERR(ctrl, "failed to get byte_clk, rc=%d\n", rc);
  649. goto fail;
  650. }
  651. hs_link->pixel_clk = devm_clk_get(&pdev->dev, "pixel_clk");
  652. if (IS_ERR(hs_link->pixel_clk)) {
  653. rc = PTR_ERR(hs_link->pixel_clk);
  654. DSI_CTRL_ERR(ctrl, "failed to get pixel_clk, rc=%d\n", rc);
  655. goto fail;
  656. }
  657. lp_link->esc_clk = devm_clk_get(&pdev->dev, "esc_clk");
  658. if (IS_ERR(lp_link->esc_clk)) {
  659. rc = PTR_ERR(lp_link->esc_clk);
  660. DSI_CTRL_ERR(ctrl, "failed to get esc_clk, rc=%d\n", rc);
  661. goto fail;
  662. }
  663. hs_link->byte_intf_clk = devm_clk_get(&pdev->dev, "byte_intf_clk");
  664. if (IS_ERR(hs_link->byte_intf_clk)) {
  665. hs_link->byte_intf_clk = NULL;
  666. DSI_CTRL_DEBUG(ctrl, "can't find byte intf clk, rc=%d\n", rc);
  667. }
  668. rcg->byte_clk = devm_clk_get(&pdev->dev, "byte_clk_rcg");
  669. if (IS_ERR(rcg->byte_clk)) {
  670. rc = PTR_ERR(rcg->byte_clk);
  671. DSI_CTRL_ERR(ctrl, "failed to get byte_clk_rcg, rc=%d\n", rc);
  672. goto fail;
  673. }
  674. rcg->pixel_clk = devm_clk_get(&pdev->dev, "pixel_clk_rcg");
  675. if (IS_ERR(rcg->pixel_clk)) {
  676. rc = PTR_ERR(rcg->pixel_clk);
  677. DSI_CTRL_ERR(ctrl, "failed to get pixel_clk_rcg, rc=%d\n", rc);
  678. goto fail;
  679. }
  680. return 0;
  681. fail:
  682. dsi_ctrl_clocks_deinit(ctrl);
  683. return rc;
  684. }
  685. static int dsi_ctrl_supplies_deinit(struct dsi_ctrl *ctrl)
  686. {
  687. int i = 0;
  688. int rc = 0;
  689. struct dsi_regulator_info *regs;
  690. regs = &ctrl->pwr_info.digital;
  691. for (i = 0; i < regs->count; i++) {
  692. if (!regs->vregs[i].vreg)
  693. DSI_CTRL_ERR(ctrl,
  694. "vreg is NULL, should not reach here\n");
  695. else
  696. devm_regulator_put(regs->vregs[i].vreg);
  697. }
  698. regs = &ctrl->pwr_info.host_pwr;
  699. for (i = 0; i < regs->count; i++) {
  700. if (!regs->vregs[i].vreg)
  701. DSI_CTRL_ERR(ctrl,
  702. "vreg is NULL, should not reach here\n");
  703. else
  704. devm_regulator_put(regs->vregs[i].vreg);
  705. }
  706. if (!ctrl->pwr_info.host_pwr.vregs) {
  707. devm_kfree(&ctrl->pdev->dev, ctrl->pwr_info.host_pwr.vregs);
  708. ctrl->pwr_info.host_pwr.vregs = NULL;
  709. ctrl->pwr_info.host_pwr.count = 0;
  710. }
  711. if (!ctrl->pwr_info.digital.vregs) {
  712. devm_kfree(&ctrl->pdev->dev, ctrl->pwr_info.digital.vregs);
  713. ctrl->pwr_info.digital.vregs = NULL;
  714. ctrl->pwr_info.digital.count = 0;
  715. }
  716. return rc;
  717. }
  718. static int dsi_ctrl_supplies_init(struct platform_device *pdev,
  719. struct dsi_ctrl *ctrl)
  720. {
  721. int rc = 0;
  722. int i = 0;
  723. struct dsi_regulator_info *regs;
  724. struct regulator *vreg = NULL;
  725. rc = dsi_pwr_get_dt_vreg_data(&pdev->dev,
  726. &ctrl->pwr_info.digital,
  727. "qcom,core-supply-entries");
  728. if (rc)
  729. DSI_CTRL_DEBUG(ctrl,
  730. "failed to get digital supply, rc = %d\n", rc);
  731. rc = dsi_pwr_get_dt_vreg_data(&pdev->dev,
  732. &ctrl->pwr_info.host_pwr,
  733. "qcom,ctrl-supply-entries");
  734. if (rc) {
  735. DSI_CTRL_ERR(ctrl,
  736. "failed to get host power supplies, rc = %d\n", rc);
  737. goto error_digital;
  738. }
  739. regs = &ctrl->pwr_info.digital;
  740. for (i = 0; i < regs->count; i++) {
  741. vreg = devm_regulator_get(&pdev->dev, regs->vregs[i].vreg_name);
  742. if (IS_ERR(vreg)) {
  743. DSI_CTRL_ERR(ctrl, "failed to get %s regulator\n",
  744. regs->vregs[i].vreg_name);
  745. rc = PTR_ERR(vreg);
  746. goto error_host_pwr;
  747. }
  748. regs->vregs[i].vreg = vreg;
  749. }
  750. regs = &ctrl->pwr_info.host_pwr;
  751. for (i = 0; i < regs->count; i++) {
  752. vreg = devm_regulator_get(&pdev->dev, regs->vregs[i].vreg_name);
  753. if (IS_ERR(vreg)) {
  754. DSI_CTRL_ERR(ctrl, "failed to get %s regulator\n",
  755. regs->vregs[i].vreg_name);
  756. for (--i; i >= 0; i--)
  757. devm_regulator_put(regs->vregs[i].vreg);
  758. rc = PTR_ERR(vreg);
  759. goto error_digital_put;
  760. }
  761. regs->vregs[i].vreg = vreg;
  762. }
  763. return rc;
  764. error_digital_put:
  765. regs = &ctrl->pwr_info.digital;
  766. for (i = 0; i < regs->count; i++)
  767. devm_regulator_put(regs->vregs[i].vreg);
  768. error_host_pwr:
  769. devm_kfree(&pdev->dev, ctrl->pwr_info.host_pwr.vregs);
  770. ctrl->pwr_info.host_pwr.vregs = NULL;
  771. ctrl->pwr_info.host_pwr.count = 0;
  772. error_digital:
  773. if (ctrl->pwr_info.digital.vregs)
  774. devm_kfree(&pdev->dev, ctrl->pwr_info.digital.vregs);
  775. ctrl->pwr_info.digital.vregs = NULL;
  776. ctrl->pwr_info.digital.count = 0;
  777. return rc;
  778. }
  779. static int dsi_ctrl_validate_panel_info(struct dsi_ctrl *dsi_ctrl,
  780. struct dsi_host_config *config)
  781. {
  782. int rc = 0;
  783. struct dsi_host_common_cfg *host_cfg = &config->common_config;
  784. if (config->panel_mode >= DSI_OP_MODE_MAX) {
  785. DSI_CTRL_ERR(dsi_ctrl, "Invalid dsi operation mode (%d)\n",
  786. config->panel_mode);
  787. rc = -EINVAL;
  788. goto err;
  789. }
  790. if ((host_cfg->data_lanes & (DSI_CLOCK_LANE - 1)) == 0) {
  791. DSI_CTRL_ERR(dsi_ctrl, "No data lanes are enabled\n");
  792. rc = -EINVAL;
  793. goto err;
  794. }
  795. err:
  796. return rc;
  797. }
  798. /* Function returns number of bits per pxl */
  799. int dsi_ctrl_pixel_format_to_bpp(enum dsi_pixel_format dst_format)
  800. {
  801. u32 bpp = 0;
  802. switch (dst_format) {
  803. case DSI_PIXEL_FORMAT_RGB111:
  804. bpp = 3;
  805. break;
  806. case DSI_PIXEL_FORMAT_RGB332:
  807. bpp = 8;
  808. break;
  809. case DSI_PIXEL_FORMAT_RGB444:
  810. bpp = 12;
  811. break;
  812. case DSI_PIXEL_FORMAT_RGB565:
  813. bpp = 16;
  814. break;
  815. case DSI_PIXEL_FORMAT_RGB666:
  816. case DSI_PIXEL_FORMAT_RGB666_LOOSE:
  817. bpp = 18;
  818. break;
  819. case DSI_PIXEL_FORMAT_RGB888:
  820. bpp = 24;
  821. break;
  822. default:
  823. bpp = 24;
  824. break;
  825. }
  826. return bpp;
  827. }
  828. static int dsi_ctrl_update_link_freqs(struct dsi_ctrl *dsi_ctrl,
  829. struct dsi_host_config *config, void *clk_handle,
  830. struct dsi_display_mode *mode)
  831. {
  832. int rc = 0;
  833. u32 num_of_lanes = 0;
  834. u32 bits_per_symbol = 16, num_of_symbols = 7; /* For Cphy */
  835. u32 bpp, frame_time_us, byte_intf_clk_div;
  836. u64 h_period, v_period, bit_rate, pclk_rate, bit_rate_per_lane,
  837. byte_clk_rate, byte_intf_clk_rate;
  838. struct dsi_host_common_cfg *host_cfg = &config->common_config;
  839. struct dsi_split_link_config *split_link = &host_cfg->split_link;
  840. struct dsi_mode_info *timing = &config->video_timing;
  841. u64 dsi_transfer_time_us = mode->priv_info->dsi_transfer_time_us;
  842. u64 min_dsi_clk_hz = mode->priv_info->min_dsi_clk_hz;
  843. /* Get bits per pxl in destination format */
  844. bpp = dsi_ctrl_pixel_format_to_bpp(host_cfg->dst_format);
  845. frame_time_us = mult_frac(1000, 1000, (timing->refresh_rate));
  846. if (host_cfg->data_lanes & DSI_DATA_LANE_0)
  847. num_of_lanes++;
  848. if (host_cfg->data_lanes & DSI_DATA_LANE_1)
  849. num_of_lanes++;
  850. if (host_cfg->data_lanes & DSI_DATA_LANE_2)
  851. num_of_lanes++;
  852. if (host_cfg->data_lanes & DSI_DATA_LANE_3)
  853. num_of_lanes++;
  854. if (split_link->split_link_enabled)
  855. num_of_lanes = split_link->lanes_per_sublink;
  856. config->common_config.num_data_lanes = num_of_lanes;
  857. config->common_config.bpp = bpp;
  858. if (config->bit_clk_rate_hz_override != 0) {
  859. bit_rate = config->bit_clk_rate_hz_override * num_of_lanes;
  860. if (host_cfg->phy_type == DSI_PHY_TYPE_CPHY) {
  861. bit_rate *= bits_per_symbol;
  862. do_div(bit_rate, num_of_symbols);
  863. }
  864. } else if (config->panel_mode == DSI_OP_CMD_MODE) {
  865. /* Calculate the bit rate needed to match dsi transfer time */
  866. bit_rate = min_dsi_clk_hz * frame_time_us;
  867. do_div(bit_rate, dsi_transfer_time_us);
  868. bit_rate = bit_rate * num_of_lanes;
  869. } else {
  870. h_period = dsi_h_total_dce(timing);
  871. v_period = DSI_V_TOTAL(timing);
  872. bit_rate = h_period * v_period * timing->refresh_rate * bpp;
  873. }
  874. pclk_rate = bit_rate;
  875. do_div(pclk_rate, bpp);
  876. if (host_cfg->phy_type == DSI_PHY_TYPE_DPHY) {
  877. bit_rate_per_lane = bit_rate;
  878. do_div(bit_rate_per_lane, num_of_lanes);
  879. byte_clk_rate = bit_rate_per_lane;
  880. do_div(byte_clk_rate, 8);
  881. byte_intf_clk_rate = byte_clk_rate;
  882. byte_intf_clk_div = host_cfg->byte_intf_clk_div;
  883. do_div(byte_intf_clk_rate, byte_intf_clk_div);
  884. config->bit_clk_rate_hz = byte_clk_rate * 8;
  885. } else {
  886. do_div(bit_rate, bits_per_symbol);
  887. bit_rate *= num_of_symbols;
  888. bit_rate_per_lane = bit_rate;
  889. do_div(bit_rate_per_lane, num_of_lanes);
  890. byte_clk_rate = bit_rate_per_lane;
  891. do_div(byte_clk_rate, 7);
  892. /* For CPHY, byte_intf_clk is same as byte_clk */
  893. byte_intf_clk_rate = byte_clk_rate;
  894. config->bit_clk_rate_hz = byte_clk_rate * 7;
  895. }
  896. DSI_CTRL_DEBUG(dsi_ctrl, "bit_clk_rate = %llu, bit_clk_rate_per_lane = %llu\n",
  897. bit_rate, bit_rate_per_lane);
  898. DSI_CTRL_DEBUG(dsi_ctrl, "byte_clk_rate = %llu, byte_intf_clk = %llu\n",
  899. byte_clk_rate, byte_intf_clk_rate);
  900. DSI_CTRL_DEBUG(dsi_ctrl, "pclk_rate = %llu\n", pclk_rate);
  901. SDE_EVT32(dsi_ctrl->cell_index, bit_rate, byte_clk_rate, pclk_rate);
  902. dsi_ctrl->clk_freq.byte_clk_rate = byte_clk_rate;
  903. dsi_ctrl->clk_freq.byte_intf_clk_rate = byte_intf_clk_rate;
  904. dsi_ctrl->clk_freq.pix_clk_rate = pclk_rate;
  905. dsi_ctrl->clk_freq.esc_clk_rate = config->esc_clk_rate_hz;
  906. rc = dsi_clk_set_link_frequencies(clk_handle, dsi_ctrl->clk_freq,
  907. dsi_ctrl->cell_index);
  908. if (rc)
  909. DSI_CTRL_ERR(dsi_ctrl, "Failed to update link frequencies\n");
  910. return rc;
  911. }
  912. static int dsi_ctrl_enable_supplies(struct dsi_ctrl *dsi_ctrl, bool enable)
  913. {
  914. int rc = 0;
  915. if (enable) {
  916. rc = pm_runtime_get_sync(dsi_ctrl->drm_dev->dev);
  917. if (rc < 0) {
  918. DSI_CTRL_ERR(dsi_ctrl,
  919. "Power resource enable failed, rc=%d\n", rc);
  920. goto error;
  921. }
  922. if (!dsi_ctrl->current_state.host_initialized) {
  923. rc = dsi_pwr_enable_regulator(
  924. &dsi_ctrl->pwr_info.host_pwr, true);
  925. if (rc) {
  926. DSI_CTRL_ERR(dsi_ctrl, "failed to enable host power regs\n");
  927. goto error_get_sync;
  928. }
  929. }
  930. rc = dsi_pwr_enable_regulator(&dsi_ctrl->pwr_info.digital,
  931. true);
  932. if (rc) {
  933. DSI_CTRL_ERR(dsi_ctrl, "failed to enable gdsc, rc=%d\n",
  934. rc);
  935. (void)dsi_pwr_enable_regulator(
  936. &dsi_ctrl->pwr_info.host_pwr,
  937. false
  938. );
  939. goto error_get_sync;
  940. }
  941. return rc;
  942. } else {
  943. rc = dsi_pwr_enable_regulator(&dsi_ctrl->pwr_info.digital,
  944. false);
  945. if (rc) {
  946. DSI_CTRL_ERR(dsi_ctrl, "failed to disable gdsc, rc=%d\n",
  947. rc);
  948. goto error;
  949. }
  950. if (!dsi_ctrl->current_state.host_initialized) {
  951. rc = dsi_pwr_enable_regulator(
  952. &dsi_ctrl->pwr_info.host_pwr, false);
  953. if (rc) {
  954. DSI_CTRL_ERR(dsi_ctrl, "failed to disable host power regs\n");
  955. goto error;
  956. }
  957. }
  958. pm_runtime_put_sync(dsi_ctrl->drm_dev->dev);
  959. return rc;
  960. }
  961. error_get_sync:
  962. pm_runtime_put_sync(dsi_ctrl->drm_dev->dev);
  963. error:
  964. return rc;
  965. }
  966. static int dsi_ctrl_copy_and_pad_cmd(struct dsi_ctrl *dsi_ctrl,
  967. const struct mipi_dsi_packet *packet,
  968. u8 **buffer,
  969. u32 *size)
  970. {
  971. int rc = 0;
  972. u8 *buf = NULL;
  973. u32 len, i;
  974. u8 cmd_type = 0;
  975. len = packet->size;
  976. len += 0x3; len &= ~0x03; /* Align to 32 bits */
  977. buf = devm_kzalloc(&dsi_ctrl->pdev->dev, len * sizeof(u8), GFP_KERNEL);
  978. if (!buf)
  979. return -ENOMEM;
  980. for (i = 0; i < len; i++) {
  981. if (i >= packet->size)
  982. buf[i] = 0xFF;
  983. else if (i < sizeof(packet->header))
  984. buf[i] = packet->header[i];
  985. else
  986. buf[i] = packet->payload[i - sizeof(packet->header)];
  987. }
  988. if (packet->payload_length > 0)
  989. buf[3] |= BIT(6);
  990. /* Swap BYTE order in the command buffer for MSM */
  991. buf[0] = packet->header[1];
  992. buf[1] = packet->header[2];
  993. buf[2] = packet->header[0];
  994. /* send embedded BTA for read commands */
  995. cmd_type = buf[2] & 0x3f;
  996. if ((cmd_type == MIPI_DSI_DCS_READ) ||
  997. (cmd_type == MIPI_DSI_GENERIC_READ_REQUEST_0_PARAM) ||
  998. (cmd_type == MIPI_DSI_GENERIC_READ_REQUEST_1_PARAM) ||
  999. (cmd_type == MIPI_DSI_GENERIC_READ_REQUEST_2_PARAM))
  1000. buf[3] |= BIT(5);
  1001. *buffer = buf;
  1002. *size = len;
  1003. return rc;
  1004. }
  1005. int dsi_ctrl_wait_for_cmd_mode_mdp_idle(struct dsi_ctrl *dsi_ctrl)
  1006. {
  1007. int rc = 0;
  1008. if (!dsi_ctrl) {
  1009. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  1010. return -EINVAL;
  1011. }
  1012. if (dsi_ctrl->host_config.panel_mode != DSI_OP_CMD_MODE)
  1013. return -EINVAL;
  1014. mutex_lock(&dsi_ctrl->ctrl_lock);
  1015. rc = dsi_ctrl->hw.ops.wait_for_cmd_mode_mdp_idle(&dsi_ctrl->hw);
  1016. mutex_unlock(&dsi_ctrl->ctrl_lock);
  1017. return rc;
  1018. }
  1019. static void dsi_ctrl_wait_for_video_done(struct dsi_ctrl *dsi_ctrl)
  1020. {
  1021. u32 v_total = 0, v_blank = 0, sleep_ms = 0, fps = 0, ret;
  1022. struct dsi_mode_info *timing;
  1023. /**
  1024. * No need to wait if the panel is not video mode or
  1025. * if DSI controller supports command DMA scheduling or
  1026. * if we are sending init commands.
  1027. */
  1028. if ((dsi_ctrl->host_config.panel_mode != DSI_OP_VIDEO_MODE) ||
  1029. (dsi_ctrl->version >= DSI_CTRL_VERSION_2_2) ||
  1030. (dsi_ctrl->current_state.vid_engine_state !=
  1031. DSI_CTRL_ENGINE_ON))
  1032. return;
  1033. dsi_ctrl->hw.ops.clear_interrupt_status(&dsi_ctrl->hw,
  1034. DSI_VIDEO_MODE_FRAME_DONE);
  1035. dsi_ctrl_enable_status_interrupt(dsi_ctrl,
  1036. DSI_SINT_VIDEO_MODE_FRAME_DONE, NULL);
  1037. reinit_completion(&dsi_ctrl->irq_info.vid_frame_done);
  1038. ret = wait_for_completion_timeout(
  1039. &dsi_ctrl->irq_info.vid_frame_done,
  1040. msecs_to_jiffies(DSI_CTRL_TX_TO_MS));
  1041. if (ret <= 0)
  1042. DSI_CTRL_DEBUG(dsi_ctrl, "wait for video done failed\n");
  1043. dsi_ctrl_disable_status_interrupt(dsi_ctrl,
  1044. DSI_SINT_VIDEO_MODE_FRAME_DONE);
  1045. timing = &(dsi_ctrl->host_config.video_timing);
  1046. v_total = timing->v_sync_width + timing->v_back_porch +
  1047. timing->v_front_porch + timing->v_active;
  1048. v_blank = timing->v_sync_width + timing->v_back_porch;
  1049. fps = timing->refresh_rate;
  1050. sleep_ms = CEIL((v_blank * 1000), (v_total * fps)) + 1;
  1051. udelay(sleep_ms * 1000);
  1052. }
  1053. void dsi_message_setup_tx_mode(struct dsi_ctrl *dsi_ctrl,
  1054. u32 cmd_len,
  1055. u32 *flags)
  1056. {
  1057. /**
  1058. * Setup the mode of transmission
  1059. * override cmd fetch mode during secure session
  1060. */
  1061. if (dsi_ctrl->secure_mode) {
  1062. SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_CASE1);
  1063. *flags &= ~DSI_CTRL_CMD_FETCH_MEMORY;
  1064. *flags |= DSI_CTRL_CMD_FIFO_STORE;
  1065. DSI_CTRL_DEBUG(dsi_ctrl,
  1066. "override to TPG during secure session\n");
  1067. return;
  1068. }
  1069. /* Check to see if cmd len plus header is greater than fifo size */
  1070. if ((cmd_len + 4) > DSI_EMBEDDED_MODE_DMA_MAX_SIZE_BYTES) {
  1071. *flags |= DSI_CTRL_CMD_NON_EMBEDDED_MODE;
  1072. DSI_CTRL_DEBUG(dsi_ctrl, "override to non-embedded mode,cmd len =%d\n",
  1073. cmd_len);
  1074. return;
  1075. }
  1076. }
  1077. int dsi_message_validate_tx_mode(struct dsi_ctrl *dsi_ctrl,
  1078. u32 cmd_len,
  1079. u32 *flags)
  1080. {
  1081. int rc = 0;
  1082. if (*flags & DSI_CTRL_CMD_FIFO_STORE) {
  1083. /* if command size plus header is greater than fifo size */
  1084. if ((cmd_len + 4) > DSI_CTRL_MAX_CMD_FIFO_STORE_SIZE) {
  1085. DSI_CTRL_ERR(dsi_ctrl, "Cannot transfer Cmd in FIFO config\n");
  1086. return -ENOTSUPP;
  1087. }
  1088. if (!dsi_ctrl->hw.ops.kickoff_fifo_command) {
  1089. DSI_CTRL_ERR(dsi_ctrl, "Cannot transfer command,ops not defined\n");
  1090. return -ENOTSUPP;
  1091. }
  1092. }
  1093. if (*flags & DSI_CTRL_CMD_NON_EMBEDDED_MODE) {
  1094. if (*flags & DSI_CTRL_CMD_BROADCAST) {
  1095. DSI_CTRL_ERR(dsi_ctrl, "Non embedded not supported with broadcast\n");
  1096. return -ENOTSUPP;
  1097. }
  1098. if (!dsi_ctrl->hw.ops.kickoff_command_non_embedded_mode) {
  1099. DSI_CTRL_ERR(dsi_ctrl, " Cannot transfer command,ops not defined\n");
  1100. return -ENOTSUPP;
  1101. }
  1102. if ((cmd_len + 4) > SZ_4K) {
  1103. DSI_CTRL_ERR(dsi_ctrl, "Cannot transfer,size is greater than 4096\n");
  1104. return -ENOTSUPP;
  1105. }
  1106. }
  1107. if (*flags & DSI_CTRL_CMD_FETCH_MEMORY) {
  1108. if ((dsi_ctrl->cmd_len + cmd_len + 4) > SZ_4K) {
  1109. DSI_CTRL_ERR(dsi_ctrl, "Cannot transfer,size is greater than 4096\n");
  1110. return -ENOTSUPP;
  1111. }
  1112. }
  1113. return rc;
  1114. }
  1115. static void dsi_configure_command_scheduling(struct dsi_ctrl *dsi_ctrl,
  1116. struct dsi_ctrl_cmd_dma_info *cmd_mem)
  1117. {
  1118. u32 line_no = 0, window = 0, sched_line_no = 0;
  1119. struct dsi_ctrl_hw_ops dsi_hw_ops = dsi_ctrl->hw.ops;
  1120. struct dsi_mode_info *timing = &(dsi_ctrl->host_config.video_timing);
  1121. line_no = dsi_ctrl->host_config.common_config.dma_sched_line;
  1122. window = dsi_ctrl->host_config.common_config.dma_sched_window;
  1123. SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_ENTRY, line_no, window);
  1124. /*
  1125. * In case of command scheduling in video mode, the line at which
  1126. * the command is scheduled can revert to the default value i.e. 1
  1127. * for the following cases:
  1128. * 1) No schedule line defined by the panel.
  1129. * 2) schedule line defined is greater than VFP.
  1130. */
  1131. if ((dsi_ctrl->host_config.panel_mode == DSI_OP_VIDEO_MODE) &&
  1132. dsi_hw_ops.schedule_dma_cmd &&
  1133. (dsi_ctrl->current_state.vid_engine_state ==
  1134. DSI_CTRL_ENGINE_ON)) {
  1135. sched_line_no = (line_no == 0) ? 1 : line_no;
  1136. if (timing) {
  1137. if (sched_line_no >= timing->v_front_porch)
  1138. sched_line_no = 1;
  1139. sched_line_no += timing->v_back_porch +
  1140. timing->v_sync_width + timing->v_active;
  1141. }
  1142. dsi_hw_ops.schedule_dma_cmd(&dsi_ctrl->hw, sched_line_no);
  1143. }
  1144. /*
  1145. * In case of command scheduling in command mode, the window size
  1146. * is reset to zero, if the total scheduling window is greater
  1147. * than the panel height.
  1148. */
  1149. if ((dsi_ctrl->host_config.panel_mode == DSI_OP_CMD_MODE) &&
  1150. dsi_hw_ops.configure_cmddma_window) {
  1151. sched_line_no = line_no;
  1152. if ((sched_line_no + window) > timing->v_active)
  1153. window = 0;
  1154. sched_line_no += timing->v_active;
  1155. dsi_hw_ops.configure_cmddma_window(&dsi_ctrl->hw, cmd_mem,
  1156. sched_line_no, window);
  1157. }
  1158. SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_EXIT,
  1159. sched_line_no, window);
  1160. }
  1161. static void dsi_kickoff_msg_tx(struct dsi_ctrl *dsi_ctrl,
  1162. const struct mipi_dsi_msg *msg,
  1163. struct dsi_ctrl_cmd_dma_fifo_info *cmd,
  1164. struct dsi_ctrl_cmd_dma_info *cmd_mem,
  1165. u32 flags)
  1166. {
  1167. u32 hw_flags = 0;
  1168. struct dsi_ctrl_hw_ops dsi_hw_ops = dsi_ctrl->hw.ops;
  1169. SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_ENTRY, flags,
  1170. msg->flags);
  1171. if (dsi_ctrl->hw.reset_trig_ctrl)
  1172. dsi_hw_ops.reset_trig_ctrl(&dsi_ctrl->hw,
  1173. &dsi_ctrl->host_config.common_config);
  1174. /* check if custom dma scheduling line needed */
  1175. if (flags & DSI_CTRL_CMD_CUSTOM_DMA_SCHED)
  1176. dsi_configure_command_scheduling(dsi_ctrl, cmd_mem);
  1177. dsi_ctrl->cmd_mode = (dsi_ctrl->host_config.panel_mode ==
  1178. DSI_OP_CMD_MODE);
  1179. hw_flags |= (flags & DSI_CTRL_CMD_DEFER_TRIGGER) ?
  1180. DSI_CTRL_HW_CMD_WAIT_FOR_TRIGGER : 0;
  1181. if ((msg->flags & MIPI_DSI_MSG_LASTCOMMAND) ||
  1182. (flags & DSI_CTRL_CMD_LAST_COMMAND))
  1183. hw_flags |= DSI_CTRL_CMD_LAST_COMMAND;
  1184. if (flags & DSI_CTRL_CMD_DEFER_TRIGGER) {
  1185. if (flags & DSI_CTRL_CMD_FETCH_MEMORY) {
  1186. if (flags & DSI_CTRL_CMD_NON_EMBEDDED_MODE) {
  1187. dsi_hw_ops.kickoff_command_non_embedded_mode(
  1188. &dsi_ctrl->hw,
  1189. cmd_mem,
  1190. hw_flags);
  1191. } else {
  1192. dsi_hw_ops.kickoff_command(
  1193. &dsi_ctrl->hw,
  1194. cmd_mem,
  1195. hw_flags);
  1196. }
  1197. } else if (flags & DSI_CTRL_CMD_FIFO_STORE) {
  1198. dsi_hw_ops.kickoff_fifo_command(&dsi_ctrl->hw,
  1199. cmd,
  1200. hw_flags);
  1201. }
  1202. }
  1203. if (!(flags & DSI_CTRL_CMD_DEFER_TRIGGER)) {
  1204. dsi_ctrl_wait_for_video_done(dsi_ctrl);
  1205. dsi_ctrl_mask_overflow(dsi_ctrl, true);
  1206. atomic_set(&dsi_ctrl->dma_irq_trig, 0);
  1207. dsi_ctrl_enable_status_interrupt(dsi_ctrl,
  1208. DSI_SINT_CMD_MODE_DMA_DONE, NULL);
  1209. reinit_completion(&dsi_ctrl->irq_info.cmd_dma_done);
  1210. if (flags & DSI_CTRL_CMD_FETCH_MEMORY) {
  1211. if (flags & DSI_CTRL_CMD_NON_EMBEDDED_MODE) {
  1212. dsi_hw_ops.kickoff_command_non_embedded_mode(
  1213. &dsi_ctrl->hw,
  1214. cmd_mem,
  1215. hw_flags);
  1216. } else {
  1217. dsi_hw_ops.kickoff_command(
  1218. &dsi_ctrl->hw,
  1219. cmd_mem,
  1220. hw_flags);
  1221. }
  1222. } else if (flags & DSI_CTRL_CMD_FIFO_STORE) {
  1223. dsi_hw_ops.kickoff_fifo_command(&dsi_ctrl->hw,
  1224. cmd,
  1225. hw_flags);
  1226. }
  1227. if (dsi_ctrl->enable_cmd_dma_stats) {
  1228. u32 reg = dsi_hw_ops.log_line_count(&dsi_ctrl->hw,
  1229. dsi_ctrl->cmd_mode);
  1230. dsi_ctrl->cmd_trigger_line = (reg & 0xFFFF);
  1231. dsi_ctrl->cmd_trigger_frame = ((reg >> 16) & 0xFFFF);
  1232. SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_CASE1,
  1233. dsi_ctrl->cmd_trigger_line,
  1234. dsi_ctrl->cmd_trigger_frame);
  1235. }
  1236. if (flags & DSI_CTRL_CMD_ASYNC_WAIT) {
  1237. dsi_ctrl->dma_wait_queued = true;
  1238. queue_work(dsi_ctrl->dma_cmd_workq,
  1239. &dsi_ctrl->dma_cmd_wait);
  1240. } else {
  1241. dsi_ctrl->dma_wait_queued = false;
  1242. dsi_ctrl_dma_cmd_wait_for_done(&dsi_ctrl->dma_cmd_wait);
  1243. }
  1244. dsi_ctrl_mask_overflow(dsi_ctrl, false);
  1245. dsi_hw_ops.reset_cmd_fifo(&dsi_ctrl->hw);
  1246. /*
  1247. * DSI 2.2 needs a soft reset whenever we send non-embedded
  1248. * mode command followed by embedded mode. Otherwise it will
  1249. * result in smmu write faults with DSI as client.
  1250. */
  1251. if (flags & DSI_CTRL_CMD_NON_EMBEDDED_MODE) {
  1252. if (dsi_ctrl->version < DSI_CTRL_VERSION_2_4)
  1253. dsi_hw_ops.soft_reset(&dsi_ctrl->hw);
  1254. dsi_ctrl->cmd_len = 0;
  1255. }
  1256. }
  1257. }
  1258. static void dsi_ctrl_validate_msg_flags(struct dsi_ctrl *dsi_ctrl,
  1259. const struct mipi_dsi_msg *msg,
  1260. u32 *flags)
  1261. {
  1262. /*
  1263. * ASYNC command wait mode is not supported for
  1264. * - commands sent using DSI FIFO memory
  1265. * - DSI read commands
  1266. * - DCS commands sent in non-embedded mode
  1267. * - whenever an explicit wait time is specificed for the command
  1268. * since the wait time cannot be guaranteed in async mode
  1269. * - video mode panels
  1270. * If async override is set, skip async flag reset
  1271. */
  1272. if (((*flags & DSI_CTRL_CMD_FIFO_STORE) ||
  1273. *flags & DSI_CTRL_CMD_READ ||
  1274. *flags & DSI_CTRL_CMD_NON_EMBEDDED_MODE ||
  1275. msg->wait_ms ||
  1276. (dsi_ctrl->host_config.panel_mode == DSI_OP_VIDEO_MODE)) &&
  1277. !(msg->flags & MIPI_DSI_MSG_ASYNC_OVERRIDE))
  1278. *flags &= ~DSI_CTRL_CMD_ASYNC_WAIT;
  1279. }
  1280. static int dsi_message_tx(struct dsi_ctrl *dsi_ctrl,
  1281. const struct mipi_dsi_msg *msg,
  1282. u32 *flags)
  1283. {
  1284. int rc = 0;
  1285. struct mipi_dsi_packet packet;
  1286. struct dsi_ctrl_cmd_dma_fifo_info cmd;
  1287. struct dsi_ctrl_cmd_dma_info cmd_mem;
  1288. u32 length = 0;
  1289. u8 *buffer = NULL;
  1290. u32 cnt = 0;
  1291. u8 *cmdbuf;
  1292. /* Select the tx mode to transfer the command */
  1293. dsi_message_setup_tx_mode(dsi_ctrl, msg->tx_len, flags);
  1294. /* Validate the mode before sending the command */
  1295. rc = dsi_message_validate_tx_mode(dsi_ctrl, msg->tx_len, flags);
  1296. if (rc) {
  1297. DSI_CTRL_ERR(dsi_ctrl,
  1298. "Cmd tx validation failed, cannot transfer cmd\n");
  1299. rc = -ENOTSUPP;
  1300. goto error;
  1301. }
  1302. dsi_ctrl_validate_msg_flags(dsi_ctrl, msg, flags);
  1303. SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_ENTRY, flags);
  1304. if (dsi_ctrl->dma_wait_queued)
  1305. dsi_ctrl_flush_cmd_dma_queue(dsi_ctrl);
  1306. if (*flags & DSI_CTRL_CMD_NON_EMBEDDED_MODE) {
  1307. cmd_mem.offset = dsi_ctrl->cmd_buffer_iova;
  1308. cmd_mem.en_broadcast = (*flags & DSI_CTRL_CMD_BROADCAST) ?
  1309. true : false;
  1310. cmd_mem.is_master = (*flags & DSI_CTRL_CMD_BROADCAST_MASTER) ?
  1311. true : false;
  1312. cmd_mem.use_lpm = (msg->flags & MIPI_DSI_MSG_USE_LPM) ?
  1313. true : false;
  1314. cmd_mem.datatype = msg->type;
  1315. cmd_mem.length = msg->tx_len;
  1316. dsi_ctrl->cmd_len = msg->tx_len;
  1317. memcpy(dsi_ctrl->vaddr, msg->tx_buf, msg->tx_len);
  1318. DSI_CTRL_DEBUG(dsi_ctrl,
  1319. "non-embedded mode , size of command =%zd\n",
  1320. msg->tx_len);
  1321. goto kickoff;
  1322. }
  1323. rc = mipi_dsi_create_packet(&packet, msg);
  1324. if (rc) {
  1325. DSI_CTRL_ERR(dsi_ctrl, "Failed to create message packet, rc=%d\n",
  1326. rc);
  1327. goto error;
  1328. }
  1329. rc = dsi_ctrl_copy_and_pad_cmd(dsi_ctrl,
  1330. &packet,
  1331. &buffer,
  1332. &length);
  1333. if (rc) {
  1334. DSI_CTRL_ERR(dsi_ctrl, "failed to copy message, rc=%d\n", rc);
  1335. goto error;
  1336. }
  1337. /*
  1338. * In case of broadcast CMD length cannot be greater than 512 bytes
  1339. * as specified by HW limitations. Need to overwrite the flags to
  1340. * set the LAST_COMMAND flag to ensure no command transfer failures.
  1341. */
  1342. if ((*flags & DSI_CTRL_CMD_FETCH_MEMORY) &&
  1343. (*flags & DSI_CTRL_CMD_BROADCAST)) {
  1344. if ((dsi_ctrl->cmd_len + length) > 240) {
  1345. dsi_ctrl_mask_overflow(dsi_ctrl, true);
  1346. *flags |= DSI_CTRL_CMD_LAST_COMMAND;
  1347. SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_CASE1,
  1348. flags);
  1349. }
  1350. }
  1351. if ((msg->flags & MIPI_DSI_MSG_LASTCOMMAND) ||
  1352. (*flags & DSI_CTRL_CMD_LAST_COMMAND))
  1353. buffer[3] |= BIT(7);//set the last cmd bit in header.
  1354. if (*flags & DSI_CTRL_CMD_FETCH_MEMORY) {
  1355. /* Embedded mode config is selected */
  1356. cmd_mem.offset = dsi_ctrl->cmd_buffer_iova;
  1357. cmd_mem.en_broadcast = (*flags & DSI_CTRL_CMD_BROADCAST) ?
  1358. true : false;
  1359. cmd_mem.is_master = (*flags & DSI_CTRL_CMD_BROADCAST_MASTER) ?
  1360. true : false;
  1361. cmd_mem.use_lpm = (msg->flags & MIPI_DSI_MSG_USE_LPM) ?
  1362. true : false;
  1363. cmdbuf = (u8 *)(dsi_ctrl->vaddr);
  1364. msm_gem_sync(dsi_ctrl->tx_cmd_buf);
  1365. for (cnt = 0; cnt < length; cnt++)
  1366. cmdbuf[dsi_ctrl->cmd_len + cnt] = buffer[cnt];
  1367. dsi_ctrl->cmd_len += length;
  1368. if (!(msg->flags & MIPI_DSI_MSG_LASTCOMMAND) &&
  1369. !(*flags & DSI_CTRL_CMD_LAST_COMMAND)) {
  1370. goto error;
  1371. } else {
  1372. cmd_mem.length = dsi_ctrl->cmd_len;
  1373. dsi_ctrl->cmd_len = 0;
  1374. }
  1375. } else if (*flags & DSI_CTRL_CMD_FIFO_STORE) {
  1376. cmd.command = (u32 *)buffer;
  1377. cmd.size = length;
  1378. cmd.en_broadcast = (*flags & DSI_CTRL_CMD_BROADCAST) ?
  1379. true : false;
  1380. cmd.is_master = (*flags & DSI_CTRL_CMD_BROADCAST_MASTER) ?
  1381. true : false;
  1382. cmd.use_lpm = (msg->flags & MIPI_DSI_MSG_USE_LPM) ?
  1383. true : false;
  1384. }
  1385. kickoff:
  1386. dsi_kickoff_msg_tx(dsi_ctrl, msg, &cmd, &cmd_mem, *flags);
  1387. error:
  1388. if (buffer)
  1389. devm_kfree(&dsi_ctrl->pdev->dev, buffer);
  1390. return rc;
  1391. }
  1392. static int dsi_set_max_return_size(struct dsi_ctrl *dsi_ctrl,
  1393. const struct mipi_dsi_msg *rx_msg,
  1394. u32 size)
  1395. {
  1396. int rc = 0;
  1397. u8 tx[2] = { (u8)(size & 0xFF), (u8)(size >> 8) };
  1398. u32 flags = DSI_CTRL_CMD_FETCH_MEMORY;
  1399. u16 dflags = rx_msg->flags;
  1400. struct mipi_dsi_msg msg = {
  1401. .channel = rx_msg->channel,
  1402. .type = MIPI_DSI_SET_MAXIMUM_RETURN_PACKET_SIZE,
  1403. .tx_len = 2,
  1404. .tx_buf = tx,
  1405. .flags = rx_msg->flags,
  1406. };
  1407. /* remove last message flag to batch max packet cmd to read command */
  1408. dflags &= ~BIT(3);
  1409. msg.flags = dflags;
  1410. rc = dsi_message_tx(dsi_ctrl, &msg, &flags);
  1411. if (rc)
  1412. DSI_CTRL_ERR(dsi_ctrl, "failed to send max return size packet, rc=%d\n",
  1413. rc);
  1414. return rc;
  1415. }
  1416. /* Helper functions to support DCS read operation */
  1417. static int dsi_parse_short_read1_resp(const struct mipi_dsi_msg *msg,
  1418. unsigned char *buff)
  1419. {
  1420. u8 *data = msg->rx_buf;
  1421. int read_len = 1;
  1422. if (!data)
  1423. return 0;
  1424. /* remove dcs type */
  1425. if (msg->rx_len >= 1)
  1426. data[0] = buff[1];
  1427. else
  1428. read_len = 0;
  1429. return read_len;
  1430. }
  1431. static int dsi_parse_short_read2_resp(const struct mipi_dsi_msg *msg,
  1432. unsigned char *buff)
  1433. {
  1434. u8 *data = msg->rx_buf;
  1435. int read_len = 2;
  1436. if (!data)
  1437. return 0;
  1438. /* remove dcs type */
  1439. if (msg->rx_len >= 2) {
  1440. data[0] = buff[1];
  1441. data[1] = buff[2];
  1442. } else {
  1443. read_len = 0;
  1444. }
  1445. return read_len;
  1446. }
  1447. static int dsi_parse_long_read_resp(const struct mipi_dsi_msg *msg,
  1448. unsigned char *buff)
  1449. {
  1450. if (!msg->rx_buf)
  1451. return 0;
  1452. /* remove dcs type */
  1453. if (msg->rx_buf && msg->rx_len)
  1454. memcpy(msg->rx_buf, buff + 4, msg->rx_len);
  1455. return msg->rx_len;
  1456. }
  1457. static int dsi_message_rx(struct dsi_ctrl *dsi_ctrl,
  1458. const struct mipi_dsi_msg *msg,
  1459. u32 *flags)
  1460. {
  1461. int rc = 0;
  1462. u32 rd_pkt_size, total_read_len, hw_read_cnt;
  1463. u32 current_read_len = 0, total_bytes_read = 0;
  1464. bool short_resp = false;
  1465. bool read_done = false;
  1466. u32 dlen, diff, rlen;
  1467. unsigned char *buff;
  1468. char cmd;
  1469. if (!msg) {
  1470. DSI_CTRL_ERR(dsi_ctrl, "Invalid msg\n");
  1471. rc = -EINVAL;
  1472. goto error;
  1473. }
  1474. rlen = msg->rx_len;
  1475. if (msg->rx_len <= 2) {
  1476. short_resp = true;
  1477. rd_pkt_size = msg->rx_len;
  1478. total_read_len = 4;
  1479. } else {
  1480. short_resp = false;
  1481. current_read_len = 10;
  1482. if (msg->rx_len < current_read_len)
  1483. rd_pkt_size = msg->rx_len;
  1484. else
  1485. rd_pkt_size = current_read_len;
  1486. total_read_len = current_read_len + 6;
  1487. }
  1488. buff = msg->rx_buf;
  1489. while (!read_done) {
  1490. rc = dsi_set_max_return_size(dsi_ctrl, msg, rd_pkt_size);
  1491. if (rc) {
  1492. DSI_CTRL_ERR(dsi_ctrl, "Failed to set max return packet size, rc=%d\n",
  1493. rc);
  1494. goto error;
  1495. }
  1496. /* clear RDBK_DATA registers before proceeding */
  1497. dsi_ctrl->hw.ops.clear_rdbk_register(&dsi_ctrl->hw);
  1498. rc = dsi_message_tx(dsi_ctrl, msg, flags);
  1499. if (rc) {
  1500. DSI_CTRL_ERR(dsi_ctrl, "Message transmission failed, rc=%d\n",
  1501. rc);
  1502. goto error;
  1503. }
  1504. /*
  1505. * wait before reading rdbk_data register, if any delay is
  1506. * required after sending the read command.
  1507. */
  1508. if (msg->wait_ms)
  1509. usleep_range(msg->wait_ms * 1000,
  1510. ((msg->wait_ms * 1000) + 10));
  1511. dlen = dsi_ctrl->hw.ops.get_cmd_read_data(&dsi_ctrl->hw,
  1512. buff, total_bytes_read,
  1513. total_read_len, rd_pkt_size,
  1514. &hw_read_cnt);
  1515. if (!dlen)
  1516. goto error;
  1517. if (short_resp)
  1518. break;
  1519. if (rlen <= current_read_len) {
  1520. diff = current_read_len - rlen;
  1521. read_done = true;
  1522. } else {
  1523. diff = 0;
  1524. rlen -= current_read_len;
  1525. }
  1526. dlen -= 2; /* 2 bytes of CRC */
  1527. dlen -= diff;
  1528. buff += dlen;
  1529. total_bytes_read += dlen;
  1530. if (!read_done) {
  1531. current_read_len = 14; /* Not first read */
  1532. if (rlen < current_read_len)
  1533. rd_pkt_size += rlen;
  1534. else
  1535. rd_pkt_size += current_read_len;
  1536. }
  1537. }
  1538. if (hw_read_cnt < 16 && !short_resp)
  1539. buff = msg->rx_buf + (16 - hw_read_cnt);
  1540. else
  1541. buff = msg->rx_buf;
  1542. /* parse the data read from panel */
  1543. cmd = buff[0];
  1544. switch (cmd) {
  1545. case MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT:
  1546. DSI_CTRL_ERR(dsi_ctrl, "Rx ACK_ERROR 0x%x\n", cmd);
  1547. rc = 0;
  1548. break;
  1549. case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_1BYTE:
  1550. case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE:
  1551. rc = dsi_parse_short_read1_resp(msg, buff);
  1552. break;
  1553. case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_2BYTE:
  1554. case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE:
  1555. rc = dsi_parse_short_read2_resp(msg, buff);
  1556. break;
  1557. case MIPI_DSI_RX_GENERIC_LONG_READ_RESPONSE:
  1558. case MIPI_DSI_RX_DCS_LONG_READ_RESPONSE:
  1559. rc = dsi_parse_long_read_resp(msg, buff);
  1560. break;
  1561. default:
  1562. DSI_CTRL_WARN(dsi_ctrl, "Invalid response: 0x%x\n", cmd);
  1563. rc = 0;
  1564. }
  1565. error:
  1566. return rc;
  1567. }
  1568. static int dsi_enable_ulps(struct dsi_ctrl *dsi_ctrl)
  1569. {
  1570. int rc = 0;
  1571. u32 lanes = 0;
  1572. u32 ulps_lanes;
  1573. lanes = dsi_ctrl->host_config.common_config.data_lanes;
  1574. rc = dsi_ctrl->hw.ops.wait_for_lane_idle(&dsi_ctrl->hw, lanes);
  1575. if (rc) {
  1576. DSI_CTRL_ERR(dsi_ctrl, "lanes not entering idle, skip ULPS\n");
  1577. return rc;
  1578. }
  1579. if (!dsi_ctrl->hw.ops.ulps_ops.ulps_request ||
  1580. !dsi_ctrl->hw.ops.ulps_ops.ulps_exit) {
  1581. DSI_CTRL_DEBUG(dsi_ctrl, "DSI controller ULPS ops not present\n");
  1582. return 0;
  1583. }
  1584. lanes |= DSI_CLOCK_LANE;
  1585. dsi_ctrl->hw.ops.ulps_ops.ulps_request(&dsi_ctrl->hw, lanes);
  1586. ulps_lanes = dsi_ctrl->hw.ops.ulps_ops.get_lanes_in_ulps(&dsi_ctrl->hw);
  1587. if ((lanes & ulps_lanes) != lanes) {
  1588. DSI_CTRL_ERR(dsi_ctrl, "Failed to enter ULPS, request=0x%x, actual=0x%x\n",
  1589. lanes, ulps_lanes);
  1590. rc = -EIO;
  1591. }
  1592. return rc;
  1593. }
  1594. static int dsi_disable_ulps(struct dsi_ctrl *dsi_ctrl)
  1595. {
  1596. int rc = 0;
  1597. u32 ulps_lanes, lanes = 0;
  1598. dsi_ctrl->hw.ops.clear_phy0_ln_err(&dsi_ctrl->hw);
  1599. if (!dsi_ctrl->hw.ops.ulps_ops.ulps_request ||
  1600. !dsi_ctrl->hw.ops.ulps_ops.ulps_exit) {
  1601. DSI_CTRL_DEBUG(dsi_ctrl, "DSI controller ULPS ops not present\n");
  1602. return 0;
  1603. }
  1604. lanes = dsi_ctrl->host_config.common_config.data_lanes;
  1605. lanes |= DSI_CLOCK_LANE;
  1606. ulps_lanes = dsi_ctrl->hw.ops.ulps_ops.get_lanes_in_ulps(&dsi_ctrl->hw);
  1607. if ((lanes & ulps_lanes) != lanes)
  1608. DSI_CTRL_ERR(dsi_ctrl, "Mismatch between lanes in ULPS\n");
  1609. lanes &= ulps_lanes;
  1610. dsi_ctrl->hw.ops.ulps_ops.ulps_exit(&dsi_ctrl->hw, lanes);
  1611. ulps_lanes = dsi_ctrl->hw.ops.ulps_ops.get_lanes_in_ulps(&dsi_ctrl->hw);
  1612. if (ulps_lanes & lanes) {
  1613. DSI_CTRL_ERR(dsi_ctrl, "Lanes (0x%x) stuck in ULPS\n",
  1614. ulps_lanes);
  1615. rc = -EIO;
  1616. }
  1617. return rc;
  1618. }
  1619. static void dsi_ctrl_enable_error_interrupts(struct dsi_ctrl *dsi_ctrl)
  1620. {
  1621. if (dsi_ctrl->host_config.panel_mode == DSI_OP_VIDEO_MODE &&
  1622. !dsi_ctrl->host_config.u.video_engine.bllp_lp11_en &&
  1623. !dsi_ctrl->host_config.u.video_engine.eof_bllp_lp11_en)
  1624. dsi_ctrl->hw.ops.enable_error_interrupts(&dsi_ctrl->hw,
  1625. 0xFF00A0);
  1626. else
  1627. dsi_ctrl->hw.ops.enable_error_interrupts(&dsi_ctrl->hw,
  1628. 0xFF00E0);
  1629. }
  1630. static int dsi_ctrl_drv_state_init(struct dsi_ctrl *dsi_ctrl)
  1631. {
  1632. int rc = 0;
  1633. bool splash_enabled = false;
  1634. struct dsi_ctrl_state_info *state = &dsi_ctrl->current_state;
  1635. if (!splash_enabled) {
  1636. state->power_state = DSI_CTRL_POWER_VREG_OFF;
  1637. state->cmd_engine_state = DSI_CTRL_ENGINE_OFF;
  1638. state->vid_engine_state = DSI_CTRL_ENGINE_OFF;
  1639. }
  1640. return rc;
  1641. }
  1642. static int dsi_ctrl_buffer_deinit(struct dsi_ctrl *dsi_ctrl)
  1643. {
  1644. struct msm_gem_address_space *aspace = NULL;
  1645. if (dsi_ctrl->tx_cmd_buf) {
  1646. aspace = dsi_ctrl_get_aspace(dsi_ctrl,
  1647. MSM_SMMU_DOMAIN_UNSECURE);
  1648. if (!aspace) {
  1649. DSI_CTRL_ERR(dsi_ctrl, "failed to get address space\n");
  1650. return -ENOMEM;
  1651. }
  1652. msm_gem_put_iova(dsi_ctrl->tx_cmd_buf, aspace);
  1653. mutex_lock(&dsi_ctrl->drm_dev->struct_mutex);
  1654. msm_gem_free_object(dsi_ctrl->tx_cmd_buf);
  1655. mutex_unlock(&dsi_ctrl->drm_dev->struct_mutex);
  1656. dsi_ctrl->tx_cmd_buf = NULL;
  1657. }
  1658. return 0;
  1659. }
  1660. int dsi_ctrl_buffer_init(struct dsi_ctrl *dsi_ctrl)
  1661. {
  1662. int rc = 0;
  1663. u64 iova = 0;
  1664. struct msm_gem_address_space *aspace = NULL;
  1665. aspace = dsi_ctrl_get_aspace(dsi_ctrl, MSM_SMMU_DOMAIN_UNSECURE);
  1666. if (!aspace) {
  1667. DSI_CTRL_ERR(dsi_ctrl, "failed to get address space\n");
  1668. return -ENOMEM;
  1669. }
  1670. dsi_ctrl->tx_cmd_buf = msm_gem_new(dsi_ctrl->drm_dev,
  1671. SZ_4K,
  1672. MSM_BO_UNCACHED);
  1673. if (IS_ERR(dsi_ctrl->tx_cmd_buf)) {
  1674. rc = PTR_ERR(dsi_ctrl->tx_cmd_buf);
  1675. DSI_CTRL_ERR(dsi_ctrl, "failed to allocate gem, rc=%d\n", rc);
  1676. dsi_ctrl->tx_cmd_buf = NULL;
  1677. goto error;
  1678. }
  1679. dsi_ctrl->cmd_buffer_size = SZ_4K;
  1680. rc = msm_gem_get_iova(dsi_ctrl->tx_cmd_buf, aspace, &iova);
  1681. if (rc) {
  1682. DSI_CTRL_ERR(dsi_ctrl, "failed to get iova, rc=%d\n", rc);
  1683. (void)dsi_ctrl_buffer_deinit(dsi_ctrl);
  1684. goto error;
  1685. }
  1686. if (iova & 0x07) {
  1687. DSI_CTRL_ERR(dsi_ctrl, "Tx command buffer is not 8 byte aligned\n");
  1688. rc = -ENOTSUPP;
  1689. (void)dsi_ctrl_buffer_deinit(dsi_ctrl);
  1690. goto error;
  1691. }
  1692. error:
  1693. return rc;
  1694. }
  1695. static int dsi_enable_io_clamp(struct dsi_ctrl *dsi_ctrl,
  1696. bool enable, bool ulps_enabled)
  1697. {
  1698. u32 lanes = 0;
  1699. if (dsi_ctrl->host_config.panel_mode == DSI_OP_CMD_MODE)
  1700. lanes = dsi_ctrl->host_config.common_config.data_lanes;
  1701. lanes |= DSI_CLOCK_LANE;
  1702. if (enable)
  1703. dsi_ctrl->hw.ops.clamp_enable(&dsi_ctrl->hw,
  1704. lanes, ulps_enabled);
  1705. else
  1706. dsi_ctrl->hw.ops.clamp_disable(&dsi_ctrl->hw,
  1707. lanes, ulps_enabled);
  1708. return 0;
  1709. }
  1710. static int dsi_ctrl_dts_parse(struct dsi_ctrl *dsi_ctrl,
  1711. struct device_node *of_node)
  1712. {
  1713. u32 index = 0, frame_threshold_time_us = 0;
  1714. int rc = 0;
  1715. if (!dsi_ctrl || !of_node) {
  1716. DSI_CTRL_ERR(dsi_ctrl, "invalid dsi_ctrl:%d or of_node:%d\n",
  1717. dsi_ctrl != NULL, of_node != NULL);
  1718. return -EINVAL;
  1719. }
  1720. rc = of_property_read_u32(of_node, "cell-index", &index);
  1721. if (rc) {
  1722. DSI_CTRL_DEBUG(dsi_ctrl, "cell index not set, default to 0\n");
  1723. index = 0;
  1724. }
  1725. dsi_ctrl->cell_index = index;
  1726. dsi_ctrl->name = of_get_property(of_node, "label", NULL);
  1727. if (!dsi_ctrl->name)
  1728. dsi_ctrl->name = DSI_CTRL_DEFAULT_LABEL;
  1729. dsi_ctrl->phy_isolation_enabled = of_property_read_bool(of_node,
  1730. "qcom,dsi-phy-isolation-enabled");
  1731. dsi_ctrl->null_insertion_enabled = of_property_read_bool(of_node,
  1732. "qcom,null-insertion-enabled");
  1733. dsi_ctrl->split_link_supported = of_property_read_bool(of_node,
  1734. "qcom,split-link-supported");
  1735. rc = of_property_read_u32(of_node, "frame-threshold-time-us",
  1736. &frame_threshold_time_us);
  1737. if (rc) {
  1738. DSI_CTRL_DEBUG(dsi_ctrl,
  1739. "frame-threshold-time not specified, defaulting\n");
  1740. frame_threshold_time_us = 2666;
  1741. }
  1742. dsi_ctrl->frame_threshold_time_us = frame_threshold_time_us;
  1743. return 0;
  1744. }
  1745. static int dsi_ctrl_dev_probe(struct platform_device *pdev)
  1746. {
  1747. struct dsi_ctrl *dsi_ctrl;
  1748. struct dsi_ctrl_list_item *item;
  1749. const struct of_device_id *id;
  1750. enum dsi_ctrl_version version;
  1751. int rc = 0;
  1752. id = of_match_node(msm_dsi_of_match, pdev->dev.of_node);
  1753. if (!id)
  1754. return -ENODEV;
  1755. version = *(enum dsi_ctrl_version *)id->data;
  1756. item = devm_kzalloc(&pdev->dev, sizeof(*item), GFP_KERNEL);
  1757. if (!item)
  1758. return -ENOMEM;
  1759. dsi_ctrl = devm_kzalloc(&pdev->dev, sizeof(*dsi_ctrl), GFP_KERNEL);
  1760. if (!dsi_ctrl)
  1761. return -ENOMEM;
  1762. dsi_ctrl->version = version;
  1763. dsi_ctrl->irq_info.irq_num = -1;
  1764. dsi_ctrl->irq_info.irq_stat_mask = 0x0;
  1765. INIT_WORK(&dsi_ctrl->dma_cmd_wait, dsi_ctrl_dma_cmd_wait_for_done);
  1766. atomic_set(&dsi_ctrl->dma_irq_trig, 0);
  1767. spin_lock_init(&dsi_ctrl->irq_info.irq_lock);
  1768. rc = dsi_ctrl_dts_parse(dsi_ctrl, pdev->dev.of_node);
  1769. if (rc) {
  1770. DSI_CTRL_ERR(dsi_ctrl, "dts parse failed, rc = %d\n", rc);
  1771. goto fail;
  1772. }
  1773. rc = dsi_ctrl_init_regmap(pdev, dsi_ctrl);
  1774. if (rc) {
  1775. DSI_CTRL_ERR(dsi_ctrl, "Failed to parse register information, rc = %d\n",
  1776. rc);
  1777. goto fail;
  1778. }
  1779. rc = dsi_ctrl_supplies_init(pdev, dsi_ctrl);
  1780. if (rc) {
  1781. DSI_CTRL_ERR(dsi_ctrl, "Failed to parse voltage supplies, rc = %d\n",
  1782. rc);
  1783. goto fail;
  1784. }
  1785. rc = dsi_ctrl_clocks_init(pdev, dsi_ctrl);
  1786. if (rc) {
  1787. DSI_CTRL_ERR(dsi_ctrl, "Failed to parse clock information, rc = %d\n",
  1788. rc);
  1789. goto fail_supplies;
  1790. }
  1791. rc = dsi_catalog_ctrl_setup(&dsi_ctrl->hw, dsi_ctrl->version,
  1792. dsi_ctrl->cell_index, dsi_ctrl->phy_isolation_enabled,
  1793. dsi_ctrl->null_insertion_enabled);
  1794. if (rc) {
  1795. DSI_CTRL_ERR(dsi_ctrl, "Catalog does not support version (%d)\n",
  1796. dsi_ctrl->version);
  1797. goto fail_clks;
  1798. }
  1799. item->ctrl = dsi_ctrl;
  1800. sde_dbg_dsi_ctrl_register(dsi_ctrl->hw.base, dsi_ctrl->name);
  1801. mutex_lock(&dsi_ctrl_list_lock);
  1802. list_add(&item->list, &dsi_ctrl_list);
  1803. mutex_unlock(&dsi_ctrl_list_lock);
  1804. mutex_init(&dsi_ctrl->ctrl_lock);
  1805. dsi_ctrl->secure_mode = false;
  1806. dsi_ctrl->pdev = pdev;
  1807. platform_set_drvdata(pdev, dsi_ctrl);
  1808. DSI_CTRL_INFO(dsi_ctrl, "Probe successful\n");
  1809. return 0;
  1810. fail_clks:
  1811. (void)dsi_ctrl_clocks_deinit(dsi_ctrl);
  1812. fail_supplies:
  1813. (void)dsi_ctrl_supplies_deinit(dsi_ctrl);
  1814. fail:
  1815. return rc;
  1816. }
  1817. static int dsi_ctrl_dev_remove(struct platform_device *pdev)
  1818. {
  1819. int rc = 0;
  1820. struct dsi_ctrl *dsi_ctrl;
  1821. struct list_head *pos, *tmp;
  1822. dsi_ctrl = platform_get_drvdata(pdev);
  1823. mutex_lock(&dsi_ctrl_list_lock);
  1824. list_for_each_safe(pos, tmp, &dsi_ctrl_list) {
  1825. struct dsi_ctrl_list_item *n = list_entry(pos,
  1826. struct dsi_ctrl_list_item,
  1827. list);
  1828. if (n->ctrl == dsi_ctrl) {
  1829. list_del(&n->list);
  1830. break;
  1831. }
  1832. }
  1833. mutex_unlock(&dsi_ctrl_list_lock);
  1834. mutex_lock(&dsi_ctrl->ctrl_lock);
  1835. dsi_ctrl_isr_configure(dsi_ctrl, false);
  1836. rc = dsi_ctrl_supplies_deinit(dsi_ctrl);
  1837. if (rc)
  1838. DSI_CTRL_ERR(dsi_ctrl,
  1839. "failed to deinitialize voltage supplies, rc=%d\n",
  1840. rc);
  1841. rc = dsi_ctrl_clocks_deinit(dsi_ctrl);
  1842. if (rc)
  1843. DSI_CTRL_ERR(dsi_ctrl,
  1844. "failed to deinitialize clocks, rc=%d\n", rc);
  1845. atomic_set(&dsi_ctrl->dma_irq_trig, 0);
  1846. mutex_unlock(&dsi_ctrl->ctrl_lock);
  1847. mutex_destroy(&dsi_ctrl->ctrl_lock);
  1848. devm_kfree(&pdev->dev, dsi_ctrl);
  1849. platform_set_drvdata(pdev, NULL);
  1850. return 0;
  1851. }
  1852. static struct platform_driver dsi_ctrl_driver = {
  1853. .probe = dsi_ctrl_dev_probe,
  1854. .remove = dsi_ctrl_dev_remove,
  1855. .driver = {
  1856. .name = "drm_dsi_ctrl",
  1857. .of_match_table = msm_dsi_of_match,
  1858. .suppress_bind_attrs = true,
  1859. },
  1860. };
  1861. int dsi_ctrl_get_io_resources(struct msm_io_res *io_res)
  1862. {
  1863. int rc = 0;
  1864. struct dsi_ctrl_list_item *dsi_ctrl;
  1865. mutex_lock(&dsi_ctrl_list_lock);
  1866. list_for_each_entry(dsi_ctrl, &dsi_ctrl_list, list) {
  1867. rc = msm_dss_get_io_mem(dsi_ctrl->ctrl->pdev, &io_res->mem);
  1868. if (rc) {
  1869. DSI_CTRL_ERR(dsi_ctrl->ctrl,
  1870. "failed to get io mem, rc = %d\n", rc);
  1871. return rc;
  1872. }
  1873. }
  1874. mutex_unlock(&dsi_ctrl_list_lock);
  1875. return rc;
  1876. }
  1877. /**
  1878. * dsi_ctrl_get() - get a dsi_ctrl handle from an of_node
  1879. * @of_node: of_node of the DSI controller.
  1880. *
  1881. * Gets the DSI controller handle for the corresponding of_node. The ref count
  1882. * is incremented to one and all subsequent gets will fail until the original
  1883. * clients calls a put.
  1884. *
  1885. * Return: DSI Controller handle.
  1886. */
  1887. struct dsi_ctrl *dsi_ctrl_get(struct device_node *of_node)
  1888. {
  1889. struct list_head *pos, *tmp;
  1890. struct dsi_ctrl *ctrl = NULL;
  1891. mutex_lock(&dsi_ctrl_list_lock);
  1892. list_for_each_safe(pos, tmp, &dsi_ctrl_list) {
  1893. struct dsi_ctrl_list_item *n;
  1894. n = list_entry(pos, struct dsi_ctrl_list_item, list);
  1895. if (n->ctrl->pdev->dev.of_node == of_node) {
  1896. ctrl = n->ctrl;
  1897. break;
  1898. }
  1899. }
  1900. mutex_unlock(&dsi_ctrl_list_lock);
  1901. if (!ctrl) {
  1902. DSI_CTRL_ERR(ctrl, "Device with of node not found rc=%d\n",
  1903. -EPROBE_DEFER);
  1904. ctrl = ERR_PTR(-EPROBE_DEFER);
  1905. return ctrl;
  1906. }
  1907. mutex_lock(&ctrl->ctrl_lock);
  1908. if (ctrl->refcount == 1) {
  1909. DSI_CTRL_ERR(ctrl, "Device in use\n");
  1910. mutex_unlock(&ctrl->ctrl_lock);
  1911. ctrl = ERR_PTR(-EBUSY);
  1912. return ctrl;
  1913. }
  1914. ctrl->refcount++;
  1915. mutex_unlock(&ctrl->ctrl_lock);
  1916. return ctrl;
  1917. }
  1918. /**
  1919. * dsi_ctrl_put() - releases a dsi controller handle.
  1920. * @dsi_ctrl: DSI controller handle.
  1921. *
  1922. * Releases the DSI controller. Driver will clean up all resources and puts back
  1923. * the DSI controller into reset state.
  1924. */
  1925. void dsi_ctrl_put(struct dsi_ctrl *dsi_ctrl)
  1926. {
  1927. mutex_lock(&dsi_ctrl->ctrl_lock);
  1928. if (dsi_ctrl->refcount == 0)
  1929. DSI_CTRL_ERR(dsi_ctrl, "Unbalanced %s call\n", __func__);
  1930. else
  1931. dsi_ctrl->refcount--;
  1932. mutex_unlock(&dsi_ctrl->ctrl_lock);
  1933. }
  1934. /**
  1935. * dsi_ctrl_drv_init() - initialize dsi controller driver.
  1936. * @dsi_ctrl: DSI controller handle.
  1937. * @parent: Parent directory for debug fs.
  1938. *
  1939. * Initializes DSI controller driver. Driver should be initialized after
  1940. * dsi_ctrl_get() succeeds.
  1941. *
  1942. * Return: error code.
  1943. */
  1944. int dsi_ctrl_drv_init(struct dsi_ctrl *dsi_ctrl, struct dentry *parent)
  1945. {
  1946. int rc = 0;
  1947. if (!dsi_ctrl) {
  1948. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  1949. return -EINVAL;
  1950. }
  1951. mutex_lock(&dsi_ctrl->ctrl_lock);
  1952. rc = dsi_ctrl_drv_state_init(dsi_ctrl);
  1953. if (rc) {
  1954. DSI_CTRL_ERR(dsi_ctrl, "Failed to initialize driver state, rc=%d\n",
  1955. rc);
  1956. goto error;
  1957. }
  1958. rc = dsi_ctrl_debugfs_init(dsi_ctrl, parent);
  1959. if (rc) {
  1960. DSI_CTRL_ERR(dsi_ctrl, "failed to init debug fs, rc=%d\n", rc);
  1961. goto error;
  1962. }
  1963. error:
  1964. mutex_unlock(&dsi_ctrl->ctrl_lock);
  1965. return rc;
  1966. }
  1967. /**
  1968. * dsi_ctrl_drv_deinit() - de-initializes dsi controller driver
  1969. * @dsi_ctrl: DSI controller handle.
  1970. *
  1971. * Releases all resources acquired by dsi_ctrl_drv_init().
  1972. *
  1973. * Return: error code.
  1974. */
  1975. int dsi_ctrl_drv_deinit(struct dsi_ctrl *dsi_ctrl)
  1976. {
  1977. int rc = 0;
  1978. if (!dsi_ctrl) {
  1979. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  1980. return -EINVAL;
  1981. }
  1982. mutex_lock(&dsi_ctrl->ctrl_lock);
  1983. rc = dsi_ctrl_debugfs_deinit(dsi_ctrl);
  1984. if (rc)
  1985. DSI_CTRL_ERR(dsi_ctrl, "failed to release debugfs root, rc=%d\n",
  1986. rc);
  1987. rc = dsi_ctrl_buffer_deinit(dsi_ctrl);
  1988. if (rc)
  1989. DSI_CTRL_ERR(dsi_ctrl, "Failed to free cmd buffers, rc=%d\n",
  1990. rc);
  1991. mutex_unlock(&dsi_ctrl->ctrl_lock);
  1992. return rc;
  1993. }
  1994. int dsi_ctrl_clk_cb_register(struct dsi_ctrl *dsi_ctrl,
  1995. struct clk_ctrl_cb *clk_cb)
  1996. {
  1997. if (!dsi_ctrl || !clk_cb) {
  1998. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  1999. return -EINVAL;
  2000. }
  2001. dsi_ctrl->clk_cb.priv = clk_cb->priv;
  2002. dsi_ctrl->clk_cb.dsi_clk_cb = clk_cb->dsi_clk_cb;
  2003. return 0;
  2004. }
  2005. /**
  2006. * dsi_ctrl_phy_sw_reset() - perform a PHY software reset
  2007. * @dsi_ctrl: DSI controller handle.
  2008. *
  2009. * Performs a PHY software reset on the DSI controller. Reset should be done
  2010. * when the controller power state is DSI_CTRL_POWER_CORE_CLK_ON and the PHY is
  2011. * not enabled.
  2012. *
  2013. * This function will fail if driver is in any other state.
  2014. *
  2015. * Return: error code.
  2016. */
  2017. int dsi_ctrl_phy_sw_reset(struct dsi_ctrl *dsi_ctrl)
  2018. {
  2019. int rc = 0;
  2020. if (!dsi_ctrl) {
  2021. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  2022. return -EINVAL;
  2023. }
  2024. mutex_lock(&dsi_ctrl->ctrl_lock);
  2025. rc = dsi_ctrl_check_state(dsi_ctrl, DSI_CTRL_OP_PHY_SW_RESET, 0x0);
  2026. if (rc) {
  2027. DSI_CTRL_ERR(dsi_ctrl, "Controller state check failed, rc=%d\n",
  2028. rc);
  2029. goto error;
  2030. }
  2031. dsi_ctrl->hw.ops.phy_sw_reset(&dsi_ctrl->hw);
  2032. DSI_CTRL_DEBUG(dsi_ctrl, "PHY soft reset done\n");
  2033. dsi_ctrl_update_state(dsi_ctrl, DSI_CTRL_OP_PHY_SW_RESET, 0x0);
  2034. error:
  2035. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2036. return rc;
  2037. }
  2038. /**
  2039. * dsi_ctrl_seamless_timing_update() - update only controller timing
  2040. * @dsi_ctrl: DSI controller handle.
  2041. * @timing: New DSI timing info
  2042. *
  2043. * Updates host timing values to conduct a seamless transition to new timing
  2044. * For example, to update the porch values in a dynamic fps switch.
  2045. *
  2046. * Return: error code.
  2047. */
  2048. int dsi_ctrl_async_timing_update(struct dsi_ctrl *dsi_ctrl,
  2049. struct dsi_mode_info *timing)
  2050. {
  2051. struct dsi_mode_info *host_mode;
  2052. int rc = 0;
  2053. if (!dsi_ctrl || !timing) {
  2054. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  2055. return -EINVAL;
  2056. }
  2057. mutex_lock(&dsi_ctrl->ctrl_lock);
  2058. rc = dsi_ctrl_check_state(dsi_ctrl, DSI_CTRL_OP_ASYNC_TIMING,
  2059. DSI_CTRL_ENGINE_ON);
  2060. if (rc) {
  2061. DSI_CTRL_ERR(dsi_ctrl, "Controller state check failed, rc=%d\n",
  2062. rc);
  2063. goto exit;
  2064. }
  2065. host_mode = &dsi_ctrl->host_config.video_timing;
  2066. memcpy(host_mode, timing, sizeof(*host_mode));
  2067. dsi_ctrl->hw.ops.set_timing_db(&dsi_ctrl->hw, true);
  2068. dsi_ctrl->hw.ops.set_video_timing(&dsi_ctrl->hw, host_mode);
  2069. exit:
  2070. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2071. return rc;
  2072. }
  2073. /**
  2074. * dsi_ctrl_timing_db_update() - update only controller Timing DB
  2075. * @dsi_ctrl: DSI controller handle.
  2076. * @enable: Enable/disable Timing DB register
  2077. *
  2078. * Update timing db register value during dfps usecases
  2079. *
  2080. * Return: error code.
  2081. */
  2082. int dsi_ctrl_timing_db_update(struct dsi_ctrl *dsi_ctrl,
  2083. bool enable)
  2084. {
  2085. int rc = 0;
  2086. if (!dsi_ctrl) {
  2087. DSI_CTRL_ERR(dsi_ctrl, "Invalid dsi_ctrl\n");
  2088. return -EINVAL;
  2089. }
  2090. mutex_lock(&dsi_ctrl->ctrl_lock);
  2091. rc = dsi_ctrl_check_state(dsi_ctrl, DSI_CTRL_OP_ASYNC_TIMING,
  2092. DSI_CTRL_ENGINE_ON);
  2093. if (rc) {
  2094. DSI_CTRL_ERR(dsi_ctrl, "Controller state check failed, rc=%d\n",
  2095. rc);
  2096. goto exit;
  2097. }
  2098. /*
  2099. * Add HW recommended delay for dfps feature.
  2100. * When prefetch is enabled, MDSS HW works on 2 vsync
  2101. * boundaries i.e. mdp_vsync and panel_vsync.
  2102. * In the current implementation we are only waiting
  2103. * for mdp_vsync. We need to make sure that interface
  2104. * flush is after panel_vsync. So, added the recommended
  2105. * delays after dfps update.
  2106. */
  2107. usleep_range(2000, 2010);
  2108. dsi_ctrl->hw.ops.set_timing_db(&dsi_ctrl->hw, enable);
  2109. exit:
  2110. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2111. return rc;
  2112. }
  2113. int dsi_ctrl_timing_setup(struct dsi_ctrl *dsi_ctrl)
  2114. {
  2115. int rc = 0;
  2116. if (!dsi_ctrl) {
  2117. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  2118. return -EINVAL;
  2119. }
  2120. mutex_lock(&dsi_ctrl->ctrl_lock);
  2121. if (dsi_ctrl->host_config.panel_mode == DSI_OP_CMD_MODE) {
  2122. dsi_ctrl->hw.ops.cmd_engine_setup(&dsi_ctrl->hw,
  2123. &dsi_ctrl->host_config.common_config,
  2124. &dsi_ctrl->host_config.u.cmd_engine);
  2125. dsi_ctrl->hw.ops.setup_cmd_stream(&dsi_ctrl->hw,
  2126. &dsi_ctrl->host_config.video_timing,
  2127. &dsi_ctrl->host_config.common_config,
  2128. 0x0,
  2129. &dsi_ctrl->roi);
  2130. dsi_ctrl->hw.ops.cmd_engine_en(&dsi_ctrl->hw, true);
  2131. } else {
  2132. dsi_ctrl->hw.ops.video_engine_setup(&dsi_ctrl->hw,
  2133. &dsi_ctrl->host_config.common_config,
  2134. &dsi_ctrl->host_config.u.video_engine);
  2135. dsi_ctrl->hw.ops.set_video_timing(&dsi_ctrl->hw,
  2136. &dsi_ctrl->host_config.video_timing);
  2137. dsi_ctrl->hw.ops.video_engine_en(&dsi_ctrl->hw, true);
  2138. }
  2139. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2140. return rc;
  2141. }
  2142. int dsi_ctrl_setup(struct dsi_ctrl *dsi_ctrl)
  2143. {
  2144. int rc = 0;
  2145. rc = dsi_ctrl_timing_setup(dsi_ctrl);
  2146. if (rc)
  2147. return -EINVAL;
  2148. mutex_lock(&dsi_ctrl->ctrl_lock);
  2149. dsi_ctrl->hw.ops.setup_lane_map(&dsi_ctrl->hw,
  2150. &dsi_ctrl->host_config.lane_map);
  2151. dsi_ctrl->hw.ops.host_setup(&dsi_ctrl->hw,
  2152. &dsi_ctrl->host_config.common_config);
  2153. dsi_ctrl->hw.ops.enable_status_interrupts(&dsi_ctrl->hw, 0x0);
  2154. dsi_ctrl_enable_error_interrupts(dsi_ctrl);
  2155. dsi_ctrl->hw.ops.ctrl_en(&dsi_ctrl->hw, true);
  2156. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2157. return rc;
  2158. }
  2159. int dsi_ctrl_set_roi(struct dsi_ctrl *dsi_ctrl, struct dsi_rect *roi,
  2160. bool *changed)
  2161. {
  2162. int rc = 0;
  2163. if (!dsi_ctrl || !roi || !changed) {
  2164. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  2165. return -EINVAL;
  2166. }
  2167. mutex_lock(&dsi_ctrl->ctrl_lock);
  2168. if ((!dsi_rect_is_equal(&dsi_ctrl->roi, roi)) ||
  2169. dsi_ctrl->modeupdated) {
  2170. *changed = true;
  2171. memcpy(&dsi_ctrl->roi, roi, sizeof(dsi_ctrl->roi));
  2172. dsi_ctrl->modeupdated = false;
  2173. } else
  2174. *changed = false;
  2175. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2176. return rc;
  2177. }
  2178. /**
  2179. * dsi_ctrl_config_clk_gating() - Enable/disable DSI PHY clk gating.
  2180. * @dsi_ctrl: DSI controller handle.
  2181. * @enable: Enable/disable DSI PHY clk gating
  2182. * @clk_selection: clock to enable/disable clock gating
  2183. *
  2184. * Return: error code.
  2185. */
  2186. int dsi_ctrl_config_clk_gating(struct dsi_ctrl *dsi_ctrl, bool enable,
  2187. enum dsi_clk_gate_type clk_selection)
  2188. {
  2189. if (!dsi_ctrl) {
  2190. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  2191. return -EINVAL;
  2192. }
  2193. if (dsi_ctrl->hw.ops.config_clk_gating)
  2194. dsi_ctrl->hw.ops.config_clk_gating(&dsi_ctrl->hw, enable,
  2195. clk_selection);
  2196. return 0;
  2197. }
  2198. /**
  2199. * dsi_ctrl_phy_reset_config() - Mask/unmask propagation of ahb reset signal
  2200. * to DSI PHY hardware.
  2201. * @dsi_ctrl: DSI controller handle.
  2202. * @enable: Mask/unmask the PHY reset signal.
  2203. *
  2204. * Return: error code.
  2205. */
  2206. int dsi_ctrl_phy_reset_config(struct dsi_ctrl *dsi_ctrl, bool enable)
  2207. {
  2208. if (!dsi_ctrl) {
  2209. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  2210. return -EINVAL;
  2211. }
  2212. if (dsi_ctrl->hw.ops.phy_reset_config)
  2213. dsi_ctrl->hw.ops.phy_reset_config(&dsi_ctrl->hw, enable);
  2214. return 0;
  2215. }
  2216. static bool dsi_ctrl_check_for_spurious_error_interrupts(
  2217. struct dsi_ctrl *dsi_ctrl)
  2218. {
  2219. const unsigned long intr_check_interval = msecs_to_jiffies(1000);
  2220. const unsigned int interrupt_threshold = 15;
  2221. unsigned long jiffies_now = jiffies;
  2222. if (!dsi_ctrl) {
  2223. DSI_CTRL_ERR(dsi_ctrl, "Invalid DSI controller structure\n");
  2224. return false;
  2225. }
  2226. if (dsi_ctrl->jiffies_start == 0)
  2227. dsi_ctrl->jiffies_start = jiffies;
  2228. dsi_ctrl->error_interrupt_count++;
  2229. if ((jiffies_now - dsi_ctrl->jiffies_start) < intr_check_interval) {
  2230. if (dsi_ctrl->error_interrupt_count > interrupt_threshold) {
  2231. SDE_EVT32_IRQ(dsi_ctrl->cell_index,
  2232. dsi_ctrl->error_interrupt_count,
  2233. interrupt_threshold);
  2234. return true;
  2235. }
  2236. } else {
  2237. dsi_ctrl->jiffies_start = jiffies;
  2238. dsi_ctrl->error_interrupt_count = 1;
  2239. }
  2240. return false;
  2241. }
  2242. static void dsi_ctrl_handle_error_status(struct dsi_ctrl *dsi_ctrl,
  2243. unsigned long error)
  2244. {
  2245. struct dsi_event_cb_info cb_info;
  2246. cb_info = dsi_ctrl->irq_info.irq_err_cb;
  2247. /* disable error interrupts */
  2248. if (dsi_ctrl->hw.ops.error_intr_ctrl)
  2249. dsi_ctrl->hw.ops.error_intr_ctrl(&dsi_ctrl->hw, false);
  2250. /* clear error interrupts first */
  2251. if (dsi_ctrl->hw.ops.clear_error_status)
  2252. dsi_ctrl->hw.ops.clear_error_status(&dsi_ctrl->hw,
  2253. error);
  2254. /* DTLN PHY error */
  2255. if (error & 0x3000E00)
  2256. DSI_CTRL_ERR(dsi_ctrl, "dsi PHY contention error: 0x%lx\n",
  2257. error);
  2258. /* ignore TX timeout if blpp_lp11 is disabled */
  2259. if (dsi_ctrl->host_config.panel_mode == DSI_OP_VIDEO_MODE &&
  2260. !dsi_ctrl->host_config.u.video_engine.bllp_lp11_en &&
  2261. !dsi_ctrl->host_config.u.video_engine.eof_bllp_lp11_en)
  2262. error &= ~DSI_HS_TX_TIMEOUT;
  2263. /* TX timeout error */
  2264. if (error & 0xE0) {
  2265. if (error & 0xA0) {
  2266. if (cb_info.event_cb) {
  2267. cb_info.event_idx = DSI_LP_Rx_TIMEOUT;
  2268. (void)cb_info.event_cb(cb_info.event_usr_ptr,
  2269. cb_info.event_idx,
  2270. dsi_ctrl->cell_index,
  2271. 0, 0, 0, 0);
  2272. }
  2273. }
  2274. }
  2275. /* DSI FIFO OVERFLOW error */
  2276. if (error & 0xF0000) {
  2277. u32 mask = 0;
  2278. if (dsi_ctrl->hw.ops.get_error_mask)
  2279. mask = dsi_ctrl->hw.ops.get_error_mask(&dsi_ctrl->hw);
  2280. /* no need to report FIFO overflow if already masked */
  2281. if (cb_info.event_cb && !(mask & 0xf0000)) {
  2282. cb_info.event_idx = DSI_FIFO_OVERFLOW;
  2283. (void)cb_info.event_cb(cb_info.event_usr_ptr,
  2284. cb_info.event_idx,
  2285. dsi_ctrl->cell_index,
  2286. 0, 0, 0, 0);
  2287. }
  2288. }
  2289. /* DSI FIFO UNDERFLOW error */
  2290. if (error & 0xF00000) {
  2291. if (cb_info.event_cb) {
  2292. cb_info.event_idx = DSI_FIFO_UNDERFLOW;
  2293. (void)cb_info.event_cb(cb_info.event_usr_ptr,
  2294. cb_info.event_idx,
  2295. dsi_ctrl->cell_index,
  2296. 0, 0, 0, 0);
  2297. }
  2298. }
  2299. /* DSI PLL UNLOCK error */
  2300. if (error & BIT(8))
  2301. DSI_CTRL_ERR(dsi_ctrl, "dsi PLL unlock error: 0x%lx\n", error);
  2302. /* ACK error */
  2303. if (error & 0xF)
  2304. DSI_CTRL_ERR(dsi_ctrl, "ack error: 0x%lx\n", error);
  2305. /*
  2306. * DSI Phy can go into bad state during ESD influence. This can
  2307. * manifest as various types of spurious error interrupts on
  2308. * DSI controller. This check will allow us to handle afore mentioned
  2309. * case and prevent us from re enabling interrupts until a full ESD
  2310. * recovery is completed.
  2311. */
  2312. if (dsi_ctrl_check_for_spurious_error_interrupts(dsi_ctrl) &&
  2313. dsi_ctrl->esd_check_underway) {
  2314. dsi_ctrl->hw.ops.soft_reset(&dsi_ctrl->hw);
  2315. return;
  2316. }
  2317. /* enable back DSI interrupts */
  2318. if (dsi_ctrl->hw.ops.error_intr_ctrl)
  2319. dsi_ctrl->hw.ops.error_intr_ctrl(&dsi_ctrl->hw, true);
  2320. }
  2321. /**
  2322. * dsi_ctrl_isr - interrupt service routine for DSI CTRL component
  2323. * @irq: Incoming IRQ number
  2324. * @ptr: Pointer to user data structure (struct dsi_ctrl)
  2325. * Returns: IRQ_HANDLED if no further action required
  2326. */
  2327. static irqreturn_t dsi_ctrl_isr(int irq, void *ptr)
  2328. {
  2329. struct dsi_ctrl *dsi_ctrl;
  2330. struct dsi_event_cb_info cb_info;
  2331. unsigned long flags;
  2332. uint32_t status = 0x0, i;
  2333. uint64_t errors = 0x0;
  2334. if (!ptr)
  2335. return IRQ_NONE;
  2336. dsi_ctrl = ptr;
  2337. /* check status interrupts */
  2338. if (dsi_ctrl->hw.ops.get_interrupt_status)
  2339. status = dsi_ctrl->hw.ops.get_interrupt_status(&dsi_ctrl->hw);
  2340. /* check error interrupts */
  2341. if (dsi_ctrl->hw.ops.get_error_status)
  2342. errors = dsi_ctrl->hw.ops.get_error_status(&dsi_ctrl->hw);
  2343. /* clear interrupts */
  2344. if (dsi_ctrl->hw.ops.clear_interrupt_status)
  2345. dsi_ctrl->hw.ops.clear_interrupt_status(&dsi_ctrl->hw, 0x0);
  2346. SDE_EVT32_IRQ(dsi_ctrl->cell_index, status, errors);
  2347. /* handle DSI error recovery */
  2348. if (status & DSI_ERROR)
  2349. dsi_ctrl_handle_error_status(dsi_ctrl, errors);
  2350. if (status & DSI_CMD_MODE_DMA_DONE) {
  2351. if (dsi_ctrl->enable_cmd_dma_stats) {
  2352. u32 reg = dsi_ctrl->hw.ops.log_line_count(&dsi_ctrl->hw,
  2353. dsi_ctrl->cmd_mode);
  2354. dsi_ctrl->cmd_success_line = (reg & 0xFFFF);
  2355. dsi_ctrl->cmd_success_frame = ((reg >> 16) & 0xFFFF);
  2356. SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_CASE1,
  2357. dsi_ctrl->cmd_success_line,
  2358. dsi_ctrl->cmd_success_frame);
  2359. }
  2360. atomic_set(&dsi_ctrl->dma_irq_trig, 1);
  2361. dsi_ctrl_disable_status_interrupt(dsi_ctrl,
  2362. DSI_SINT_CMD_MODE_DMA_DONE);
  2363. complete_all(&dsi_ctrl->irq_info.cmd_dma_done);
  2364. }
  2365. if (status & DSI_CMD_FRAME_DONE) {
  2366. dsi_ctrl_disable_status_interrupt(dsi_ctrl,
  2367. DSI_SINT_CMD_FRAME_DONE);
  2368. complete_all(&dsi_ctrl->irq_info.cmd_frame_done);
  2369. }
  2370. if (status & DSI_VIDEO_MODE_FRAME_DONE) {
  2371. dsi_ctrl_disable_status_interrupt(dsi_ctrl,
  2372. DSI_SINT_VIDEO_MODE_FRAME_DONE);
  2373. complete_all(&dsi_ctrl->irq_info.vid_frame_done);
  2374. }
  2375. if (status & DSI_BTA_DONE) {
  2376. u32 fifo_overflow_mask = (DSI_DLN0_HS_FIFO_OVERFLOW |
  2377. DSI_DLN1_HS_FIFO_OVERFLOW |
  2378. DSI_DLN2_HS_FIFO_OVERFLOW |
  2379. DSI_DLN3_HS_FIFO_OVERFLOW);
  2380. dsi_ctrl_disable_status_interrupt(dsi_ctrl,
  2381. DSI_SINT_BTA_DONE);
  2382. complete_all(&dsi_ctrl->irq_info.bta_done);
  2383. if (dsi_ctrl->hw.ops.clear_error_status)
  2384. dsi_ctrl->hw.ops.clear_error_status(&dsi_ctrl->hw,
  2385. fifo_overflow_mask);
  2386. }
  2387. for (i = 0; status && i < DSI_STATUS_INTERRUPT_COUNT; ++i) {
  2388. if (status & 0x1) {
  2389. spin_lock_irqsave(&dsi_ctrl->irq_info.irq_lock, flags);
  2390. cb_info = dsi_ctrl->irq_info.irq_stat_cb[i];
  2391. spin_unlock_irqrestore(
  2392. &dsi_ctrl->irq_info.irq_lock, flags);
  2393. if (cb_info.event_cb)
  2394. (void)cb_info.event_cb(cb_info.event_usr_ptr,
  2395. cb_info.event_idx,
  2396. dsi_ctrl->cell_index,
  2397. irq, 0, 0, 0);
  2398. }
  2399. status >>= 1;
  2400. }
  2401. return IRQ_HANDLED;
  2402. }
  2403. /**
  2404. * _dsi_ctrl_setup_isr - register ISR handler
  2405. * @dsi_ctrl: Pointer to associated dsi_ctrl structure
  2406. * Returns: Zero on success
  2407. */
  2408. static int _dsi_ctrl_setup_isr(struct dsi_ctrl *dsi_ctrl)
  2409. {
  2410. int irq_num, rc;
  2411. if (!dsi_ctrl)
  2412. return -EINVAL;
  2413. if (dsi_ctrl->irq_info.irq_num != -1)
  2414. return 0;
  2415. init_completion(&dsi_ctrl->irq_info.cmd_dma_done);
  2416. init_completion(&dsi_ctrl->irq_info.vid_frame_done);
  2417. init_completion(&dsi_ctrl->irq_info.cmd_frame_done);
  2418. init_completion(&dsi_ctrl->irq_info.bta_done);
  2419. irq_num = platform_get_irq(dsi_ctrl->pdev, 0);
  2420. if (irq_num < 0) {
  2421. DSI_CTRL_ERR(dsi_ctrl, "Failed to get IRQ number, %d\n",
  2422. irq_num);
  2423. rc = irq_num;
  2424. } else {
  2425. rc = devm_request_threaded_irq(&dsi_ctrl->pdev->dev, irq_num,
  2426. dsi_ctrl_isr, NULL, 0, "dsi_ctrl", dsi_ctrl);
  2427. if (rc) {
  2428. DSI_CTRL_ERR(dsi_ctrl, "Failed to request IRQ, %d\n",
  2429. rc);
  2430. } else {
  2431. dsi_ctrl->irq_info.irq_num = irq_num;
  2432. disable_irq_nosync(irq_num);
  2433. DSI_CTRL_INFO(dsi_ctrl, "IRQ %d registered\n", irq_num);
  2434. }
  2435. }
  2436. return rc;
  2437. }
  2438. /**
  2439. * _dsi_ctrl_destroy_isr - unregister ISR handler
  2440. * @dsi_ctrl: Pointer to associated dsi_ctrl structure
  2441. */
  2442. static void _dsi_ctrl_destroy_isr(struct dsi_ctrl *dsi_ctrl)
  2443. {
  2444. if (!dsi_ctrl || !dsi_ctrl->pdev || dsi_ctrl->irq_info.irq_num < 0)
  2445. return;
  2446. if (dsi_ctrl->irq_info.irq_num != -1) {
  2447. devm_free_irq(&dsi_ctrl->pdev->dev,
  2448. dsi_ctrl->irq_info.irq_num, dsi_ctrl);
  2449. dsi_ctrl->irq_info.irq_num = -1;
  2450. }
  2451. }
  2452. void dsi_ctrl_enable_status_interrupt(struct dsi_ctrl *dsi_ctrl,
  2453. uint32_t intr_idx, struct dsi_event_cb_info *event_info)
  2454. {
  2455. unsigned long flags;
  2456. if (!dsi_ctrl || dsi_ctrl->irq_info.irq_num == -1 ||
  2457. intr_idx >= DSI_STATUS_INTERRUPT_COUNT)
  2458. return;
  2459. SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_ENTRY, intr_idx);
  2460. spin_lock_irqsave(&dsi_ctrl->irq_info.irq_lock, flags);
  2461. if (dsi_ctrl->irq_info.irq_stat_refcount[intr_idx] == 0) {
  2462. /* enable irq on first request */
  2463. if (dsi_ctrl->irq_info.irq_stat_mask == 0)
  2464. enable_irq(dsi_ctrl->irq_info.irq_num);
  2465. /* update hardware mask */
  2466. dsi_ctrl->irq_info.irq_stat_mask |= BIT(intr_idx);
  2467. dsi_ctrl->hw.ops.enable_status_interrupts(&dsi_ctrl->hw,
  2468. dsi_ctrl->irq_info.irq_stat_mask);
  2469. }
  2470. if (intr_idx == DSI_SINT_CMD_MODE_DMA_DONE)
  2471. dsi_ctrl->hw.ops.enable_status_interrupts(&dsi_ctrl->hw,
  2472. dsi_ctrl->irq_info.irq_stat_mask);
  2473. ++(dsi_ctrl->irq_info.irq_stat_refcount[intr_idx]);
  2474. if (event_info)
  2475. dsi_ctrl->irq_info.irq_stat_cb[intr_idx] = *event_info;
  2476. spin_unlock_irqrestore(&dsi_ctrl->irq_info.irq_lock, flags);
  2477. }
  2478. void dsi_ctrl_disable_status_interrupt(struct dsi_ctrl *dsi_ctrl,
  2479. uint32_t intr_idx)
  2480. {
  2481. unsigned long flags;
  2482. if (!dsi_ctrl || intr_idx >= DSI_STATUS_INTERRUPT_COUNT)
  2483. return;
  2484. SDE_EVT32_IRQ(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_ENTRY, intr_idx);
  2485. spin_lock_irqsave(&dsi_ctrl->irq_info.irq_lock, flags);
  2486. if (dsi_ctrl->irq_info.irq_stat_refcount[intr_idx])
  2487. if (--(dsi_ctrl->irq_info.irq_stat_refcount[intr_idx]) == 0) {
  2488. dsi_ctrl->irq_info.irq_stat_mask &= ~BIT(intr_idx);
  2489. dsi_ctrl->hw.ops.enable_status_interrupts(&dsi_ctrl->hw,
  2490. dsi_ctrl->irq_info.irq_stat_mask);
  2491. /* don't need irq if no lines are enabled */
  2492. if (dsi_ctrl->irq_info.irq_stat_mask == 0 &&
  2493. dsi_ctrl->irq_info.irq_num != -1)
  2494. disable_irq_nosync(dsi_ctrl->irq_info.irq_num);
  2495. }
  2496. spin_unlock_irqrestore(&dsi_ctrl->irq_info.irq_lock, flags);
  2497. }
  2498. int dsi_ctrl_host_timing_update(struct dsi_ctrl *dsi_ctrl)
  2499. {
  2500. if (!dsi_ctrl) {
  2501. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  2502. return -EINVAL;
  2503. }
  2504. if (dsi_ctrl->hw.ops.host_setup)
  2505. dsi_ctrl->hw.ops.host_setup(&dsi_ctrl->hw,
  2506. &dsi_ctrl->host_config.common_config);
  2507. if (dsi_ctrl->host_config.panel_mode == DSI_OP_CMD_MODE) {
  2508. if (dsi_ctrl->hw.ops.cmd_engine_setup)
  2509. dsi_ctrl->hw.ops.cmd_engine_setup(&dsi_ctrl->hw,
  2510. &dsi_ctrl->host_config.common_config,
  2511. &dsi_ctrl->host_config.u.cmd_engine);
  2512. if (dsi_ctrl->hw.ops.setup_cmd_stream)
  2513. dsi_ctrl->hw.ops.setup_cmd_stream(&dsi_ctrl->hw,
  2514. &dsi_ctrl->host_config.video_timing,
  2515. &dsi_ctrl->host_config.common_config,
  2516. 0x0, NULL);
  2517. } else {
  2518. DSI_CTRL_ERR(dsi_ctrl, "invalid panel mode for resolution switch\n");
  2519. return -EINVAL;
  2520. }
  2521. return 0;
  2522. }
  2523. /**
  2524. * dsi_ctrl_update_host_state() - Update the host initialization state.
  2525. * @dsi_ctrl: DSI controller handle.
  2526. * @op: ctrl driver ops
  2527. * @enable: boolean signifying host state.
  2528. *
  2529. * Update the host status only while exiting from ulps during suspend state.
  2530. *
  2531. * Return: error code.
  2532. */
  2533. int dsi_ctrl_update_host_state(struct dsi_ctrl *dsi_ctrl,
  2534. enum dsi_ctrl_driver_ops op, bool enable)
  2535. {
  2536. int rc = 0;
  2537. u32 state = enable ? 0x1 : 0x0;
  2538. if (!dsi_ctrl)
  2539. return rc;
  2540. mutex_lock(&dsi_ctrl->ctrl_lock);
  2541. rc = dsi_ctrl_check_state(dsi_ctrl, op, state);
  2542. if (rc) {
  2543. DSI_CTRL_ERR(dsi_ctrl, "Controller state check failed, rc=%d\n",
  2544. rc);
  2545. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2546. return rc;
  2547. }
  2548. dsi_ctrl_update_state(dsi_ctrl, op, state);
  2549. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2550. return rc;
  2551. }
  2552. /**
  2553. * dsi_ctrl_host_init() - Initialize DSI host hardware.
  2554. * @dsi_ctrl: DSI controller handle.
  2555. * @skip_op: Boolean to indicate few operations can be skipped.
  2556. * Set during the cont-splash or trusted-vm enable case.
  2557. *
  2558. * Initializes DSI controller hardware with host configuration provided by
  2559. * dsi_ctrl_update_host_config(). Initialization can be performed only during
  2560. * DSI_CTRL_POWER_CORE_CLK_ON state and after the PHY SW reset has been
  2561. * performed.
  2562. *
  2563. * Return: error code.
  2564. */
  2565. int dsi_ctrl_host_init(struct dsi_ctrl *dsi_ctrl, bool skip_op)
  2566. {
  2567. int rc = 0;
  2568. if (!dsi_ctrl) {
  2569. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  2570. return -EINVAL;
  2571. }
  2572. mutex_lock(&dsi_ctrl->ctrl_lock);
  2573. rc = dsi_ctrl_check_state(dsi_ctrl, DSI_CTRL_OP_HOST_INIT, 0x1);
  2574. if (rc) {
  2575. DSI_CTRL_ERR(dsi_ctrl, "Controller state check failed, rc=%d\n",
  2576. rc);
  2577. goto error;
  2578. }
  2579. /*
  2580. * For continuous splash/trusted vm usecases we omit hw operations
  2581. * as bootloader/primary vm takes care of them respectively
  2582. */
  2583. if (!skip_op) {
  2584. dsi_ctrl->hw.ops.setup_lane_map(&dsi_ctrl->hw,
  2585. &dsi_ctrl->host_config.lane_map);
  2586. dsi_ctrl->hw.ops.host_setup(&dsi_ctrl->hw,
  2587. &dsi_ctrl->host_config.common_config);
  2588. if (dsi_ctrl->host_config.panel_mode == DSI_OP_CMD_MODE) {
  2589. dsi_ctrl->hw.ops.cmd_engine_setup(&dsi_ctrl->hw,
  2590. &dsi_ctrl->host_config.common_config,
  2591. &dsi_ctrl->host_config.u.cmd_engine);
  2592. dsi_ctrl->hw.ops.setup_cmd_stream(&dsi_ctrl->hw,
  2593. &dsi_ctrl->host_config.video_timing,
  2594. &dsi_ctrl->host_config.common_config,
  2595. 0x0,
  2596. NULL);
  2597. } else {
  2598. dsi_ctrl->hw.ops.video_engine_setup(&dsi_ctrl->hw,
  2599. &dsi_ctrl->host_config.common_config,
  2600. &dsi_ctrl->host_config.u.video_engine);
  2601. dsi_ctrl->hw.ops.set_video_timing(&dsi_ctrl->hw,
  2602. &dsi_ctrl->host_config.video_timing);
  2603. }
  2604. }
  2605. dsi_ctrl->hw.ops.enable_status_interrupts(&dsi_ctrl->hw, 0x0);
  2606. dsi_ctrl_enable_error_interrupts(dsi_ctrl);
  2607. DSI_CTRL_DEBUG(dsi_ctrl, "Host initialization complete, skip op: %d\n",
  2608. skip_op);
  2609. dsi_ctrl_update_state(dsi_ctrl, DSI_CTRL_OP_HOST_INIT, 0x1);
  2610. error:
  2611. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2612. return rc;
  2613. }
  2614. /**
  2615. * dsi_ctrl_isr_configure() - API to register/deregister dsi isr
  2616. * @dsi_ctrl: DSI controller handle.
  2617. * @enable: variable to control register/deregister isr
  2618. */
  2619. void dsi_ctrl_isr_configure(struct dsi_ctrl *dsi_ctrl, bool enable)
  2620. {
  2621. if (!dsi_ctrl)
  2622. return;
  2623. mutex_lock(&dsi_ctrl->ctrl_lock);
  2624. if (enable)
  2625. _dsi_ctrl_setup_isr(dsi_ctrl);
  2626. else
  2627. _dsi_ctrl_destroy_isr(dsi_ctrl);
  2628. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2629. }
  2630. void dsi_ctrl_hs_req_sel(struct dsi_ctrl *dsi_ctrl, bool sel_phy)
  2631. {
  2632. if (!dsi_ctrl)
  2633. return;
  2634. mutex_lock(&dsi_ctrl->ctrl_lock);
  2635. dsi_ctrl->hw.ops.hs_req_sel(&dsi_ctrl->hw, sel_phy);
  2636. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2637. }
  2638. void dsi_ctrl_set_continuous_clk(struct dsi_ctrl *dsi_ctrl, bool enable)
  2639. {
  2640. if (!dsi_ctrl)
  2641. return;
  2642. mutex_lock(&dsi_ctrl->ctrl_lock);
  2643. dsi_ctrl->hw.ops.set_continuous_clk(&dsi_ctrl->hw, enable);
  2644. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2645. }
  2646. int dsi_ctrl_soft_reset(struct dsi_ctrl *dsi_ctrl)
  2647. {
  2648. if (!dsi_ctrl)
  2649. return -EINVAL;
  2650. mutex_lock(&dsi_ctrl->ctrl_lock);
  2651. dsi_ctrl->hw.ops.soft_reset(&dsi_ctrl->hw);
  2652. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2653. DSI_CTRL_DEBUG(dsi_ctrl, "Soft reset complete\n");
  2654. return 0;
  2655. }
  2656. int dsi_ctrl_reset(struct dsi_ctrl *dsi_ctrl, int mask)
  2657. {
  2658. int rc = 0;
  2659. if (!dsi_ctrl)
  2660. return -EINVAL;
  2661. mutex_lock(&dsi_ctrl->ctrl_lock);
  2662. rc = dsi_ctrl->hw.ops.ctrl_reset(&dsi_ctrl->hw, mask);
  2663. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2664. return rc;
  2665. }
  2666. int dsi_ctrl_get_hw_version(struct dsi_ctrl *dsi_ctrl)
  2667. {
  2668. int rc = 0;
  2669. if (!dsi_ctrl)
  2670. return -EINVAL;
  2671. mutex_lock(&dsi_ctrl->ctrl_lock);
  2672. rc = dsi_ctrl->hw.ops.get_hw_version(&dsi_ctrl->hw);
  2673. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2674. return rc;
  2675. }
  2676. int dsi_ctrl_vid_engine_en(struct dsi_ctrl *dsi_ctrl, bool on)
  2677. {
  2678. int rc = 0;
  2679. if (!dsi_ctrl)
  2680. return -EINVAL;
  2681. mutex_lock(&dsi_ctrl->ctrl_lock);
  2682. dsi_ctrl->hw.ops.video_engine_en(&dsi_ctrl->hw, on);
  2683. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2684. return rc;
  2685. }
  2686. int dsi_ctrl_setup_avr(struct dsi_ctrl *dsi_ctrl, bool enable)
  2687. {
  2688. if (!dsi_ctrl)
  2689. return -EINVAL;
  2690. if (dsi_ctrl->host_config.panel_mode == DSI_OP_VIDEO_MODE) {
  2691. mutex_lock(&dsi_ctrl->ctrl_lock);
  2692. dsi_ctrl->hw.ops.setup_avr(&dsi_ctrl->hw, enable);
  2693. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2694. }
  2695. return 0;
  2696. }
  2697. /**
  2698. * dsi_ctrl_host_deinit() - De-Initialize DSI host hardware.
  2699. * @dsi_ctrl: DSI controller handle.
  2700. *
  2701. * De-initializes DSI controller hardware. It can be performed only during
  2702. * DSI_CTRL_POWER_CORE_CLK_ON state after LINK clocks have been turned off.
  2703. *
  2704. * Return: error code.
  2705. */
  2706. int dsi_ctrl_host_deinit(struct dsi_ctrl *dsi_ctrl)
  2707. {
  2708. int rc = 0;
  2709. if (!dsi_ctrl) {
  2710. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  2711. return -EINVAL;
  2712. }
  2713. mutex_lock(&dsi_ctrl->ctrl_lock);
  2714. rc = dsi_ctrl_check_state(dsi_ctrl, DSI_CTRL_OP_HOST_INIT, 0x0);
  2715. if (rc) {
  2716. DSI_CTRL_ERR(dsi_ctrl, "Controller state check failed, rc=%d\n",
  2717. rc);
  2718. DSI_CTRL_ERR(dsi_ctrl, "driver state check failed, rc=%d\n",
  2719. rc);
  2720. goto error;
  2721. }
  2722. DSI_CTRL_DEBUG(dsi_ctrl, "Host deinitization complete\n");
  2723. dsi_ctrl_update_state(dsi_ctrl, DSI_CTRL_OP_HOST_INIT, 0x0);
  2724. error:
  2725. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2726. return rc;
  2727. }
  2728. /**
  2729. * dsi_ctrl_update_host_config() - update dsi host configuration
  2730. * @dsi_ctrl: DSI controller handle.
  2731. * @config: DSI host configuration.
  2732. * @flags: dsi_mode_flags modifying the behavior
  2733. *
  2734. * Updates driver with new Host configuration to use for host initialization.
  2735. * This function call will only update the software context. The stored
  2736. * configuration information will be used when the host is initialized.
  2737. *
  2738. * Return: error code.
  2739. */
  2740. int dsi_ctrl_update_host_config(struct dsi_ctrl *ctrl,
  2741. struct dsi_host_config *config,
  2742. struct dsi_display_mode *mode, int flags,
  2743. void *clk_handle)
  2744. {
  2745. int rc = 0;
  2746. if (!ctrl || !config) {
  2747. DSI_CTRL_ERR(ctrl, "Invalid params\n");
  2748. return -EINVAL;
  2749. }
  2750. mutex_lock(&ctrl->ctrl_lock);
  2751. rc = dsi_ctrl_validate_panel_info(ctrl, config);
  2752. if (rc) {
  2753. DSI_CTRL_ERR(ctrl, "panel validation failed, rc=%d\n", rc);
  2754. goto error;
  2755. }
  2756. if (!(flags & (DSI_MODE_FLAG_SEAMLESS | DSI_MODE_FLAG_VRR |
  2757. DSI_MODE_FLAG_DYN_CLK))) {
  2758. /*
  2759. * for dynamic clk switch case link frequence would
  2760. * be updated dsi_display_dynamic_clk_switch().
  2761. */
  2762. rc = dsi_ctrl_update_link_freqs(ctrl, config, clk_handle,
  2763. mode);
  2764. if (rc) {
  2765. DSI_CTRL_ERR(ctrl, "failed to update link frequency, rc=%d\n",
  2766. rc);
  2767. goto error;
  2768. }
  2769. }
  2770. DSI_CTRL_DEBUG(ctrl, "Host config updated\n");
  2771. memcpy(&ctrl->host_config, config, sizeof(ctrl->host_config));
  2772. ctrl->mode_bounds.x = ctrl->host_config.video_timing.h_active *
  2773. ctrl->horiz_index;
  2774. ctrl->mode_bounds.y = 0;
  2775. ctrl->mode_bounds.w = ctrl->host_config.video_timing.h_active;
  2776. ctrl->mode_bounds.h = ctrl->host_config.video_timing.v_active;
  2777. memcpy(&ctrl->roi, &ctrl->mode_bounds, sizeof(ctrl->mode_bounds));
  2778. ctrl->modeupdated = true;
  2779. ctrl->roi.x = 0;
  2780. error:
  2781. mutex_unlock(&ctrl->ctrl_lock);
  2782. return rc;
  2783. }
  2784. /**
  2785. * dsi_ctrl_validate_timing() - validate a video timing configuration
  2786. * @dsi_ctrl: DSI controller handle.
  2787. * @timing: Pointer to timing data.
  2788. *
  2789. * Driver will validate if the timing configuration is supported on the
  2790. * controller hardware.
  2791. *
  2792. * Return: error code if timing is not supported.
  2793. */
  2794. int dsi_ctrl_validate_timing(struct dsi_ctrl *dsi_ctrl,
  2795. struct dsi_mode_info *mode)
  2796. {
  2797. int rc = 0;
  2798. if (!dsi_ctrl || !mode) {
  2799. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  2800. return -EINVAL;
  2801. }
  2802. return rc;
  2803. }
  2804. /**
  2805. * dsi_ctrl_cmd_transfer() - Transfer commands on DSI link
  2806. * @dsi_ctrl: DSI controller handle.
  2807. * @msg: Message to transfer on DSI link.
  2808. * @flags: Modifiers for message transfer.
  2809. *
  2810. * Command transfer can be done only when command engine is enabled. The
  2811. * transfer API will block until either the command transfer finishes or
  2812. * the timeout value is reached. If the trigger is deferred, it will return
  2813. * without triggering the transfer. Command parameters are programmed to
  2814. * hardware.
  2815. *
  2816. * Return: error code.
  2817. */
  2818. int dsi_ctrl_cmd_transfer(struct dsi_ctrl *dsi_ctrl,
  2819. const struct mipi_dsi_msg *msg,
  2820. u32 *flags)
  2821. {
  2822. int rc = 0;
  2823. if (!dsi_ctrl || !msg) {
  2824. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  2825. return -EINVAL;
  2826. }
  2827. mutex_lock(&dsi_ctrl->ctrl_lock);
  2828. rc = dsi_ctrl_check_state(dsi_ctrl, DSI_CTRL_OP_CMD_TX, 0x0);
  2829. if (rc) {
  2830. DSI_CTRL_ERR(dsi_ctrl, "Controller state check failed, rc=%d\n",
  2831. rc);
  2832. goto error;
  2833. }
  2834. if (*flags & DSI_CTRL_CMD_READ) {
  2835. rc = dsi_message_rx(dsi_ctrl, msg, flags);
  2836. if (rc <= 0)
  2837. DSI_CTRL_ERR(dsi_ctrl, "read message failed read length, rc=%d\n",
  2838. rc);
  2839. } else {
  2840. rc = dsi_message_tx(dsi_ctrl, msg, flags);
  2841. if (rc)
  2842. DSI_CTRL_ERR(dsi_ctrl, "command msg transfer failed, rc = %d\n",
  2843. rc);
  2844. }
  2845. dsi_ctrl_update_state(dsi_ctrl, DSI_CTRL_OP_CMD_TX, 0x0);
  2846. error:
  2847. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2848. return rc;
  2849. }
  2850. /**
  2851. * dsi_ctrl_mask_overflow() - API to mask/unmask overflow error.
  2852. * @dsi_ctrl: DSI controller handle.
  2853. * @enable: variable to control masking/unmasking.
  2854. */
  2855. void dsi_ctrl_mask_overflow(struct dsi_ctrl *dsi_ctrl, bool enable)
  2856. {
  2857. struct dsi_ctrl_hw_ops dsi_hw_ops;
  2858. dsi_hw_ops = dsi_ctrl->hw.ops;
  2859. if (enable) {
  2860. if (dsi_hw_ops.mask_error_intr)
  2861. dsi_hw_ops.mask_error_intr(&dsi_ctrl->hw,
  2862. BIT(DSI_FIFO_OVERFLOW), true);
  2863. } else {
  2864. if (dsi_hw_ops.mask_error_intr && !dsi_ctrl->esd_check_underway)
  2865. dsi_hw_ops.mask_error_intr(&dsi_ctrl->hw,
  2866. BIT(DSI_FIFO_OVERFLOW), false);
  2867. }
  2868. }
  2869. /**
  2870. * dsi_ctrl_cmd_tx_trigger() - Trigger a deferred command.
  2871. * @dsi_ctrl: DSI controller handle.
  2872. * @flags: Modifiers.
  2873. *
  2874. * Return: error code.
  2875. */
  2876. int dsi_ctrl_cmd_tx_trigger(struct dsi_ctrl *dsi_ctrl, u32 flags)
  2877. {
  2878. int rc = 0;
  2879. struct dsi_ctrl_hw_ops dsi_hw_ops;
  2880. if (!dsi_ctrl) {
  2881. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  2882. return -EINVAL;
  2883. }
  2884. dsi_hw_ops = dsi_ctrl->hw.ops;
  2885. SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_ENTRY, flags);
  2886. /* Dont trigger the command if this is not the last ocmmand */
  2887. if (!(flags & DSI_CTRL_CMD_LAST_COMMAND))
  2888. return rc;
  2889. mutex_lock(&dsi_ctrl->ctrl_lock);
  2890. if (!(flags & DSI_CTRL_CMD_BROADCAST_MASTER)) {
  2891. dsi_hw_ops.trigger_command_dma(&dsi_ctrl->hw);
  2892. if (dsi_ctrl->enable_cmd_dma_stats) {
  2893. u32 reg = dsi_hw_ops.log_line_count(&dsi_ctrl->hw,
  2894. dsi_ctrl->cmd_mode);
  2895. dsi_ctrl->cmd_trigger_line = (reg & 0xFFFF);
  2896. dsi_ctrl->cmd_trigger_frame = ((reg >> 16) & 0xFFFF);
  2897. SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_CASE1,
  2898. dsi_ctrl->cmd_trigger_line,
  2899. dsi_ctrl->cmd_trigger_frame);
  2900. }
  2901. }
  2902. if ((flags & DSI_CTRL_CMD_BROADCAST) &&
  2903. (flags & DSI_CTRL_CMD_BROADCAST_MASTER)) {
  2904. dsi_ctrl_wait_for_video_done(dsi_ctrl);
  2905. atomic_set(&dsi_ctrl->dma_irq_trig, 0);
  2906. dsi_ctrl_enable_status_interrupt(dsi_ctrl,
  2907. DSI_SINT_CMD_MODE_DMA_DONE, NULL);
  2908. reinit_completion(&dsi_ctrl->irq_info.cmd_dma_done);
  2909. /* trigger command */
  2910. dsi_hw_ops.trigger_command_dma(&dsi_ctrl->hw);
  2911. if (dsi_ctrl->enable_cmd_dma_stats) {
  2912. u32 reg = dsi_hw_ops.log_line_count(&dsi_ctrl->hw,
  2913. dsi_ctrl->cmd_mode);
  2914. dsi_ctrl->cmd_trigger_line = (reg & 0xFFFF);
  2915. dsi_ctrl->cmd_trigger_frame = ((reg >> 16) & 0xFFFF);
  2916. SDE_EVT32(dsi_ctrl->cell_index, SDE_EVTLOG_FUNC_CASE1,
  2917. dsi_ctrl->cmd_trigger_line,
  2918. dsi_ctrl->cmd_trigger_frame);
  2919. }
  2920. if (flags & DSI_CTRL_CMD_ASYNC_WAIT) {
  2921. dsi_ctrl->dma_wait_queued = true;
  2922. queue_work(dsi_ctrl->dma_cmd_workq,
  2923. &dsi_ctrl->dma_cmd_wait);
  2924. } else {
  2925. dsi_ctrl->dma_wait_queued = false;
  2926. dsi_ctrl_dma_cmd_wait_for_done(&dsi_ctrl->dma_cmd_wait);
  2927. }
  2928. if (flags & DSI_CTRL_CMD_NON_EMBEDDED_MODE) {
  2929. if (dsi_ctrl->version < DSI_CTRL_VERSION_2_4)
  2930. dsi_hw_ops.soft_reset(&dsi_ctrl->hw);
  2931. dsi_ctrl->cmd_len = 0;
  2932. }
  2933. }
  2934. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2935. return rc;
  2936. }
  2937. /**
  2938. * dsi_ctrl_cache_misr - Cache frame MISR value
  2939. * @dsi_ctrl: Pointer to associated dsi_ctrl structure
  2940. */
  2941. void dsi_ctrl_cache_misr(struct dsi_ctrl *dsi_ctrl)
  2942. {
  2943. u32 misr;
  2944. if (!dsi_ctrl || !dsi_ctrl->hw.ops.collect_misr)
  2945. return;
  2946. misr = dsi_ctrl->hw.ops.collect_misr(&dsi_ctrl->hw,
  2947. dsi_ctrl->host_config.panel_mode);
  2948. if (misr)
  2949. dsi_ctrl->misr_cache = misr;
  2950. DSI_CTRL_DEBUG(dsi_ctrl, "misr_cache = %x\n", dsi_ctrl->misr_cache);
  2951. }
  2952. /**
  2953. * dsi_ctrl_get_host_engine_init_state() - Return host init state
  2954. * @dsi_ctrl: DSI controller handle.
  2955. * @state: Controller initialization state
  2956. *
  2957. * Return: error code.
  2958. */
  2959. int dsi_ctrl_get_host_engine_init_state(struct dsi_ctrl *dsi_ctrl,
  2960. bool *state)
  2961. {
  2962. if (!dsi_ctrl || !state) {
  2963. DSI_CTRL_ERR(dsi_ctrl, "Invalid Params\n");
  2964. return -EINVAL;
  2965. }
  2966. mutex_lock(&dsi_ctrl->ctrl_lock);
  2967. *state = dsi_ctrl->current_state.host_initialized;
  2968. mutex_unlock(&dsi_ctrl->ctrl_lock);
  2969. return 0;
  2970. }
  2971. /**
  2972. * dsi_ctrl_set_power_state() - set power state for dsi controller
  2973. * @dsi_ctrl: DSI controller handle.
  2974. * @state: Power state.
  2975. *
  2976. * Set power state for DSI controller. Power state can be changed only when
  2977. * Controller, Video and Command engines are turned off.
  2978. *
  2979. * Return: error code.
  2980. */
  2981. int dsi_ctrl_set_power_state(struct dsi_ctrl *dsi_ctrl,
  2982. enum dsi_power_state state)
  2983. {
  2984. int rc = 0;
  2985. if (!dsi_ctrl || (state >= DSI_CTRL_POWER_MAX)) {
  2986. DSI_CTRL_ERR(dsi_ctrl, "Invalid Params\n");
  2987. return -EINVAL;
  2988. }
  2989. mutex_lock(&dsi_ctrl->ctrl_lock);
  2990. rc = dsi_ctrl_check_state(dsi_ctrl, DSI_CTRL_OP_POWER_STATE_CHANGE,
  2991. state);
  2992. if (rc) {
  2993. DSI_CTRL_ERR(dsi_ctrl, "Controller state check failed, rc=%d\n",
  2994. rc);
  2995. goto error;
  2996. }
  2997. if (state == DSI_CTRL_POWER_VREG_ON) {
  2998. rc = dsi_ctrl_enable_supplies(dsi_ctrl, true);
  2999. if (rc) {
  3000. DSI_CTRL_ERR(dsi_ctrl, "failed to enable voltage supplies, rc=%d\n",
  3001. rc);
  3002. goto error;
  3003. }
  3004. } else if (state == DSI_CTRL_POWER_VREG_OFF) {
  3005. rc = dsi_ctrl_enable_supplies(dsi_ctrl, false);
  3006. if (rc) {
  3007. DSI_CTRL_ERR(dsi_ctrl, "failed to disable vreg supplies, rc=%d\n",
  3008. rc);
  3009. goto error;
  3010. }
  3011. }
  3012. DSI_CTRL_DEBUG(dsi_ctrl, "Power state updated to %d\n", state);
  3013. dsi_ctrl_update_state(dsi_ctrl, DSI_CTRL_OP_POWER_STATE_CHANGE, state);
  3014. error:
  3015. mutex_unlock(&dsi_ctrl->ctrl_lock);
  3016. return rc;
  3017. }
  3018. /**
  3019. * dsi_ctrl_set_tpg_state() - enable/disable test pattern on the controller
  3020. * @dsi_ctrl: DSI controller handle.
  3021. * @on: enable/disable test pattern.
  3022. *
  3023. * Test pattern can be enabled only after Video engine (for video mode panels)
  3024. * or command engine (for cmd mode panels) is enabled.
  3025. *
  3026. * Return: error code.
  3027. */
  3028. int dsi_ctrl_set_tpg_state(struct dsi_ctrl *dsi_ctrl, bool on)
  3029. {
  3030. int rc = 0;
  3031. if (!dsi_ctrl) {
  3032. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  3033. return -EINVAL;
  3034. }
  3035. mutex_lock(&dsi_ctrl->ctrl_lock);
  3036. rc = dsi_ctrl_check_state(dsi_ctrl, DSI_CTRL_OP_TPG, on);
  3037. if (rc) {
  3038. DSI_CTRL_ERR(dsi_ctrl, "Controller state check failed, rc=%d\n",
  3039. rc);
  3040. goto error;
  3041. }
  3042. if (on) {
  3043. if (dsi_ctrl->host_config.panel_mode == DSI_OP_VIDEO_MODE) {
  3044. dsi_ctrl->hw.ops.video_test_pattern_setup(&dsi_ctrl->hw,
  3045. DSI_TEST_PATTERN_INC,
  3046. 0xFFFF);
  3047. } else {
  3048. dsi_ctrl->hw.ops.cmd_test_pattern_setup(
  3049. &dsi_ctrl->hw,
  3050. DSI_TEST_PATTERN_INC,
  3051. 0xFFFF,
  3052. 0x0);
  3053. }
  3054. }
  3055. dsi_ctrl->hw.ops.test_pattern_enable(&dsi_ctrl->hw, on);
  3056. DSI_CTRL_DEBUG(dsi_ctrl, "Set test pattern state=%d\n", on);
  3057. dsi_ctrl_update_state(dsi_ctrl, DSI_CTRL_OP_TPG, on);
  3058. error:
  3059. mutex_unlock(&dsi_ctrl->ctrl_lock);
  3060. return rc;
  3061. }
  3062. /**
  3063. * dsi_ctrl_set_host_engine_state() - set host engine state
  3064. * @dsi_ctrl: DSI Controller handle.
  3065. * @state: Engine state.
  3066. * @skip_op: Boolean to indicate few operations can be skipped.
  3067. * Set during the cont-splash or trusted-vm enable case.
  3068. *
  3069. * Host engine state can be modified only when DSI controller power state is
  3070. * set to DSI_CTRL_POWER_LINK_CLK_ON and cmd, video engines are disabled.
  3071. *
  3072. * Return: error code.
  3073. */
  3074. int dsi_ctrl_set_host_engine_state(struct dsi_ctrl *dsi_ctrl,
  3075. enum dsi_engine_state state, bool skip_op)
  3076. {
  3077. int rc = 0;
  3078. if (!dsi_ctrl || (state >= DSI_CTRL_ENGINE_MAX)) {
  3079. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  3080. return -EINVAL;
  3081. }
  3082. mutex_lock(&dsi_ctrl->ctrl_lock);
  3083. rc = dsi_ctrl_check_state(dsi_ctrl, DSI_CTRL_OP_HOST_ENGINE, state);
  3084. if (rc) {
  3085. DSI_CTRL_ERR(dsi_ctrl, "Controller state check failed, rc=%d\n",
  3086. rc);
  3087. goto error;
  3088. }
  3089. if (!skip_op) {
  3090. if (state == DSI_CTRL_ENGINE_ON)
  3091. dsi_ctrl->hw.ops.ctrl_en(&dsi_ctrl->hw, true);
  3092. else
  3093. dsi_ctrl->hw.ops.ctrl_en(&dsi_ctrl->hw, false);
  3094. }
  3095. SDE_EVT32(dsi_ctrl->cell_index, state, skip_op);
  3096. DSI_CTRL_DEBUG(dsi_ctrl, "Set host engine state = %d\n", state);
  3097. dsi_ctrl_update_state(dsi_ctrl, DSI_CTRL_OP_HOST_ENGINE, state);
  3098. error:
  3099. mutex_unlock(&dsi_ctrl->ctrl_lock);
  3100. return rc;
  3101. }
  3102. /**
  3103. * dsi_ctrl_set_cmd_engine_state() - set command engine state
  3104. * @dsi_ctrl: DSI Controller handle.
  3105. * @state: Engine state.
  3106. * @skip_op: Boolean to indicate few operations can be skipped.
  3107. * Set during the cont-splash or trusted-vm enable case.
  3108. *
  3109. * Command engine state can be modified only when DSI controller power state is
  3110. * set to DSI_CTRL_POWER_LINK_CLK_ON.
  3111. *
  3112. * Return: error code.
  3113. */
  3114. int dsi_ctrl_set_cmd_engine_state(struct dsi_ctrl *dsi_ctrl,
  3115. enum dsi_engine_state state, bool skip_op)
  3116. {
  3117. int rc = 0;
  3118. if (!dsi_ctrl || (state >= DSI_CTRL_ENGINE_MAX)) {
  3119. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  3120. return -EINVAL;
  3121. }
  3122. rc = dsi_ctrl_check_state(dsi_ctrl, DSI_CTRL_OP_CMD_ENGINE, state);
  3123. if (rc) {
  3124. DSI_CTRL_ERR(dsi_ctrl, "Controller state check failed, rc=%d\n",
  3125. rc);
  3126. goto error;
  3127. }
  3128. if (!skip_op) {
  3129. if (state == DSI_CTRL_ENGINE_ON)
  3130. dsi_ctrl->hw.ops.cmd_engine_en(&dsi_ctrl->hw, true);
  3131. else
  3132. dsi_ctrl->hw.ops.cmd_engine_en(&dsi_ctrl->hw, false);
  3133. }
  3134. SDE_EVT32(dsi_ctrl->cell_index, state, skip_op);
  3135. DSI_CTRL_DEBUG(dsi_ctrl, "Set cmd engine state:%d, skip_op:%d\n",
  3136. state, skip_op);
  3137. dsi_ctrl_update_state(dsi_ctrl, DSI_CTRL_OP_CMD_ENGINE, state);
  3138. error:
  3139. return rc;
  3140. }
  3141. /**
  3142. * dsi_ctrl_set_vid_engine_state() - set video engine state
  3143. * @dsi_ctrl: DSI Controller handle.
  3144. * @state: Engine state.
  3145. * @skip_op: Boolean to indicate few operations can be skipped.
  3146. * Set during the cont-splash or trusted-vm enable case.
  3147. *
  3148. * Video engine state can be modified only when DSI controller power state is
  3149. * set to DSI_CTRL_POWER_LINK_CLK_ON.
  3150. *
  3151. * Return: error code.
  3152. */
  3153. int dsi_ctrl_set_vid_engine_state(struct dsi_ctrl *dsi_ctrl,
  3154. enum dsi_engine_state state, bool skip_op)
  3155. {
  3156. int rc = 0;
  3157. bool on;
  3158. bool vid_eng_busy;
  3159. if (!dsi_ctrl || (state >= DSI_CTRL_ENGINE_MAX)) {
  3160. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  3161. return -EINVAL;
  3162. }
  3163. mutex_lock(&dsi_ctrl->ctrl_lock);
  3164. rc = dsi_ctrl_check_state(dsi_ctrl, DSI_CTRL_OP_VID_ENGINE, state);
  3165. if (rc) {
  3166. DSI_CTRL_ERR(dsi_ctrl, "Controller state check failed, rc=%d\n",
  3167. rc);
  3168. goto error;
  3169. }
  3170. if (!skip_op) {
  3171. on = (state == DSI_CTRL_ENGINE_ON) ? true : false;
  3172. dsi_ctrl->hw.ops.video_engine_en(&dsi_ctrl->hw, on);
  3173. vid_eng_busy = dsi_ctrl->hw.ops.vid_engine_busy(&dsi_ctrl->hw);
  3174. /*
  3175. * During ESD check failure, DSI video engine can get stuck
  3176. * sending data from display engine. In use cases where GDSC
  3177. * toggle does not happen like DP MST connected or secure video
  3178. * playback, display does not recover back after ESD failure.
  3179. * Perform a reset if video engine is stuck.
  3180. */
  3181. if (!on && (dsi_ctrl->version < DSI_CTRL_VERSION_1_3 ||
  3182. vid_eng_busy))
  3183. dsi_ctrl->hw.ops.soft_reset(&dsi_ctrl->hw);
  3184. }
  3185. SDE_EVT32(dsi_ctrl->cell_index, state, skip_op);
  3186. DSI_CTRL_DEBUG(dsi_ctrl, "Set video engine state:%d, skip_op:%d\n",
  3187. state, skip_op);
  3188. dsi_ctrl_update_state(dsi_ctrl, DSI_CTRL_OP_VID_ENGINE, state);
  3189. error:
  3190. mutex_unlock(&dsi_ctrl->ctrl_lock);
  3191. return rc;
  3192. }
  3193. /**
  3194. * dsi_ctrl_set_ulps() - set ULPS state for DSI lanes.
  3195. * @dsi_ctrl: DSI controller handle.
  3196. * @enable: enable/disable ULPS.
  3197. *
  3198. * ULPS can be enabled/disabled after DSI host engine is turned on.
  3199. *
  3200. * Return: error code.
  3201. */
  3202. int dsi_ctrl_set_ulps(struct dsi_ctrl *dsi_ctrl, bool enable)
  3203. {
  3204. int rc = 0;
  3205. if (!dsi_ctrl) {
  3206. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  3207. return -EINVAL;
  3208. }
  3209. mutex_lock(&dsi_ctrl->ctrl_lock);
  3210. if (enable)
  3211. rc = dsi_enable_ulps(dsi_ctrl);
  3212. else
  3213. rc = dsi_disable_ulps(dsi_ctrl);
  3214. if (rc) {
  3215. DSI_CTRL_ERR(dsi_ctrl, "Ulps state change(%d) failed, rc=%d\n",
  3216. enable, rc);
  3217. goto error;
  3218. }
  3219. DSI_CTRL_DEBUG(dsi_ctrl, "ULPS state = %d\n", enable);
  3220. error:
  3221. mutex_unlock(&dsi_ctrl->ctrl_lock);
  3222. return rc;
  3223. }
  3224. /**
  3225. * dsi_ctrl_set_clamp_state() - set clamp state for DSI phy
  3226. * @dsi_ctrl: DSI controller handle.
  3227. * @enable: enable/disable clamping.
  3228. *
  3229. * Clamps can be enabled/disabled while DSI controller is still turned on.
  3230. *
  3231. * Return: error code.
  3232. */
  3233. int dsi_ctrl_set_clamp_state(struct dsi_ctrl *dsi_ctrl,
  3234. bool enable, bool ulps_enabled)
  3235. {
  3236. int rc = 0;
  3237. if (!dsi_ctrl) {
  3238. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  3239. return -EINVAL;
  3240. }
  3241. if (!dsi_ctrl->hw.ops.clamp_enable ||
  3242. !dsi_ctrl->hw.ops.clamp_disable) {
  3243. DSI_CTRL_DEBUG(dsi_ctrl, "No clamp control for DSI controller\n");
  3244. return 0;
  3245. }
  3246. mutex_lock(&dsi_ctrl->ctrl_lock);
  3247. rc = dsi_enable_io_clamp(dsi_ctrl, enable, ulps_enabled);
  3248. if (rc) {
  3249. DSI_CTRL_ERR(dsi_ctrl, "Failed to enable IO clamp\n");
  3250. goto error;
  3251. }
  3252. DSI_CTRL_DEBUG(dsi_ctrl, "Clamp state = %d\n", enable);
  3253. error:
  3254. mutex_unlock(&dsi_ctrl->ctrl_lock);
  3255. return rc;
  3256. }
  3257. /**
  3258. * dsi_ctrl_set_clock_source() - set clock source fpr dsi link clocks
  3259. * @dsi_ctrl: DSI controller handle.
  3260. * @source_clks: Source clocks for DSI link clocks.
  3261. *
  3262. * Clock source should be changed while link clocks are disabled.
  3263. *
  3264. * Return: error code.
  3265. */
  3266. int dsi_ctrl_set_clock_source(struct dsi_ctrl *dsi_ctrl,
  3267. struct dsi_clk_link_set *source_clks)
  3268. {
  3269. int rc = 0;
  3270. if (!dsi_ctrl || !source_clks) {
  3271. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  3272. return -EINVAL;
  3273. }
  3274. mutex_lock(&dsi_ctrl->ctrl_lock);
  3275. rc = dsi_clk_update_parent(source_clks, &dsi_ctrl->clk_info.rcg_clks);
  3276. if (rc) {
  3277. DSI_CTRL_ERR(dsi_ctrl, "Failed to update link clk parent, rc=%d\n",
  3278. rc);
  3279. (void)dsi_clk_update_parent(&dsi_ctrl->clk_info.pll_op_clks,
  3280. &dsi_ctrl->clk_info.rcg_clks);
  3281. goto error;
  3282. }
  3283. dsi_ctrl->clk_info.pll_op_clks.byte_clk = source_clks->byte_clk;
  3284. dsi_ctrl->clk_info.pll_op_clks.pixel_clk = source_clks->pixel_clk;
  3285. DSI_CTRL_DEBUG(dsi_ctrl, "Source clocks are updated\n");
  3286. error:
  3287. mutex_unlock(&dsi_ctrl->ctrl_lock);
  3288. return rc;
  3289. }
  3290. /**
  3291. * dsi_ctrl_setup_misr() - Setup frame MISR
  3292. * @dsi_ctrl: DSI controller handle.
  3293. * @enable: enable/disable MISR.
  3294. * @frame_count: Number of frames to accumulate MISR.
  3295. *
  3296. * Return: error code.
  3297. */
  3298. int dsi_ctrl_setup_misr(struct dsi_ctrl *dsi_ctrl,
  3299. bool enable,
  3300. u32 frame_count)
  3301. {
  3302. if (!dsi_ctrl) {
  3303. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  3304. return -EINVAL;
  3305. }
  3306. if (!dsi_ctrl->hw.ops.setup_misr)
  3307. return 0;
  3308. mutex_lock(&dsi_ctrl->ctrl_lock);
  3309. dsi_ctrl->misr_enable = enable;
  3310. dsi_ctrl->hw.ops.setup_misr(&dsi_ctrl->hw,
  3311. dsi_ctrl->host_config.panel_mode,
  3312. enable, frame_count);
  3313. mutex_unlock(&dsi_ctrl->ctrl_lock);
  3314. return 0;
  3315. }
  3316. /**
  3317. * dsi_ctrl_collect_misr() - Read frame MISR
  3318. * @dsi_ctrl: DSI controller handle.
  3319. *
  3320. * Return: MISR value.
  3321. */
  3322. u32 dsi_ctrl_collect_misr(struct dsi_ctrl *dsi_ctrl)
  3323. {
  3324. u32 misr;
  3325. if (!dsi_ctrl || !dsi_ctrl->hw.ops.collect_misr)
  3326. return 0;
  3327. misr = dsi_ctrl->hw.ops.collect_misr(&dsi_ctrl->hw,
  3328. dsi_ctrl->host_config.panel_mode);
  3329. if (!misr)
  3330. misr = dsi_ctrl->misr_cache;
  3331. DSI_CTRL_DEBUG(dsi_ctrl, "cached misr = %x, final = %x\n",
  3332. dsi_ctrl->misr_cache, misr);
  3333. return misr;
  3334. }
  3335. void dsi_ctrl_mask_error_status_interrupts(struct dsi_ctrl *dsi_ctrl, u32 idx,
  3336. bool mask_enable)
  3337. {
  3338. if (!dsi_ctrl || !dsi_ctrl->hw.ops.error_intr_ctrl
  3339. || !dsi_ctrl->hw.ops.clear_error_status) {
  3340. DSI_CTRL_ERR(dsi_ctrl, "Invalid params\n");
  3341. return;
  3342. }
  3343. /*
  3344. * Mask DSI error status interrupts and clear error status
  3345. * register
  3346. */
  3347. mutex_lock(&dsi_ctrl->ctrl_lock);
  3348. if (idx & BIT(DSI_ERR_INTR_ALL)) {
  3349. /*
  3350. * The behavior of mask_enable is different in ctrl register
  3351. * and mask register and hence mask_enable is manipulated for
  3352. * selective error interrupt masking vs total error interrupt
  3353. * masking.
  3354. */
  3355. dsi_ctrl->hw.ops.error_intr_ctrl(&dsi_ctrl->hw, !mask_enable);
  3356. dsi_ctrl->hw.ops.clear_error_status(&dsi_ctrl->hw,
  3357. DSI_ERROR_INTERRUPT_COUNT);
  3358. } else {
  3359. dsi_ctrl->hw.ops.mask_error_intr(&dsi_ctrl->hw, idx,
  3360. mask_enable);
  3361. dsi_ctrl->hw.ops.clear_error_status(&dsi_ctrl->hw,
  3362. DSI_ERROR_INTERRUPT_COUNT);
  3363. }
  3364. mutex_unlock(&dsi_ctrl->ctrl_lock);
  3365. }
  3366. /**
  3367. * dsi_ctrl_irq_update() - Put a irq vote to process DSI error
  3368. * interrupts at any time.
  3369. * @dsi_ctrl: DSI controller handle.
  3370. * @enable: variable to enable/disable irq
  3371. */
  3372. void dsi_ctrl_irq_update(struct dsi_ctrl *dsi_ctrl, bool enable)
  3373. {
  3374. if (!dsi_ctrl)
  3375. return;
  3376. mutex_lock(&dsi_ctrl->ctrl_lock);
  3377. if (enable)
  3378. dsi_ctrl_enable_status_interrupt(dsi_ctrl,
  3379. DSI_SINT_ERROR, NULL);
  3380. else
  3381. dsi_ctrl_disable_status_interrupt(dsi_ctrl,
  3382. DSI_SINT_ERROR);
  3383. mutex_unlock(&dsi_ctrl->ctrl_lock);
  3384. }
  3385. /**
  3386. * dsi_ctrl_wait4dynamic_refresh_done() - Poll for dynamci refresh
  3387. * done interrupt.
  3388. * @dsi_ctrl: DSI controller handle.
  3389. */
  3390. int dsi_ctrl_wait4dynamic_refresh_done(struct dsi_ctrl *ctrl)
  3391. {
  3392. int rc = 0;
  3393. if (!ctrl)
  3394. return 0;
  3395. mutex_lock(&ctrl->ctrl_lock);
  3396. if (ctrl->hw.ops.wait4dynamic_refresh_done)
  3397. rc = ctrl->hw.ops.wait4dynamic_refresh_done(&ctrl->hw);
  3398. mutex_unlock(&ctrl->ctrl_lock);
  3399. return rc;
  3400. }
  3401. /**
  3402. * dsi_ctrl_drv_register() - register platform driver for dsi controller
  3403. */
  3404. void dsi_ctrl_drv_register(void)
  3405. {
  3406. platform_driver_register(&dsi_ctrl_driver);
  3407. }
  3408. /**
  3409. * dsi_ctrl_drv_unregister() - unregister platform driver
  3410. */
  3411. void dsi_ctrl_drv_unregister(void)
  3412. {
  3413. platform_driver_unregister(&dsi_ctrl_driver);
  3414. }