dsi_ctrl.c 96 KB

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