dsi_ctrl.c 115 KB

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