dsi_ctrl.c 95 KB

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