dsi_ctrl.c 104 KB

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