dsi_ctrl.c 108 KB

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