dsi_ctrl.c 96 KB

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