dsi_ctrl.c 105 KB

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