dp_display.c 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2017-2021, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/module.h>
  6. #include <linux/slab.h>
  7. #include <linux/uaccess.h>
  8. #include <linux/debugfs.h>
  9. #include <linux/component.h>
  10. #include <linux/of_irq.h>
  11. #include <linux/delay.h>
  12. #include <linux/soc/qcom/fsa4480-i2c.h>
  13. #include <linux/usb/phy.h>
  14. #include <linux/jiffies.h>
  15. #include "sde_connector.h"
  16. #include "msm_drv.h"
  17. #include "dp_hpd.h"
  18. #include "dp_parser.h"
  19. #include "dp_power.h"
  20. #include "dp_catalog.h"
  21. #include "dp_aux.h"
  22. #include "dp_link.h"
  23. #include "dp_panel.h"
  24. #include "dp_ctrl.h"
  25. #include "dp_audio.h"
  26. #include "dp_display.h"
  27. #include "sde_hdcp.h"
  28. #include "dp_debug.h"
  29. #include "dp_pll.h"
  30. #include "sde_dbg.h"
  31. #define DP_MST_DEBUG(fmt, ...) DP_DEBUG(fmt, ##__VA_ARGS__)
  32. #define dp_display_state_show(x) { \
  33. DP_ERR("%s: state (0x%x): %s\n", x, dp->state, \
  34. dp_display_state_name(dp->state)); \
  35. SDE_EVT32_EXTERNAL(dp->state); }
  36. #define dp_display_state_log(x) { \
  37. DP_DEBUG("%s: state (0x%x): %s\n", x, dp->state, \
  38. dp_display_state_name(dp->state)); \
  39. SDE_EVT32_EXTERNAL(dp->state); }
  40. #define dp_display_state_is(x) (dp->state & (x))
  41. #define dp_display_state_add(x) { \
  42. (dp->state |= (x)); \
  43. dp_display_state_log("add "#x); }
  44. #define dp_display_state_remove(x) { \
  45. (dp->state &= ~(x)); \
  46. dp_display_state_log("remove "#x); }
  47. enum dp_display_states {
  48. DP_STATE_DISCONNECTED = 0,
  49. DP_STATE_CONFIGURED = BIT(0),
  50. DP_STATE_INITIALIZED = BIT(1),
  51. DP_STATE_READY = BIT(2),
  52. DP_STATE_CONNECTED = BIT(3),
  53. DP_STATE_CONNECT_NOTIFIED = BIT(4),
  54. DP_STATE_DISCONNECT_NOTIFIED = BIT(5),
  55. DP_STATE_ENABLED = BIT(6),
  56. DP_STATE_SUSPENDED = BIT(7),
  57. DP_STATE_ABORTED = BIT(8),
  58. DP_STATE_HDCP_ABORTED = BIT(9),
  59. DP_STATE_SRC_PWRDN = BIT(10),
  60. DP_STATE_TUI_ACTIVE = BIT(11),
  61. };
  62. static char *dp_display_state_name(enum dp_display_states state)
  63. {
  64. static char buf[SZ_1K];
  65. u32 len = 0;
  66. memset(buf, 0, SZ_1K);
  67. if (state & DP_STATE_CONFIGURED)
  68. len += scnprintf(buf + len, sizeof(buf) - len, "|%s|",
  69. "CONFIGURED");
  70. if (state & DP_STATE_INITIALIZED)
  71. len += scnprintf(buf + len, sizeof(buf) - len, "|%s|",
  72. "INITIALIZED");
  73. if (state & DP_STATE_READY)
  74. len += scnprintf(buf + len, sizeof(buf) - len, "|%s|",
  75. "READY");
  76. if (state & DP_STATE_CONNECTED)
  77. len += scnprintf(buf + len, sizeof(buf) - len, "|%s|",
  78. "CONNECTED");
  79. if (state & DP_STATE_CONNECT_NOTIFIED)
  80. len += scnprintf(buf + len, sizeof(buf) - len, "|%s|",
  81. "CONNECT_NOTIFIED");
  82. if (state & DP_STATE_DISCONNECT_NOTIFIED)
  83. len += scnprintf(buf + len, sizeof(buf) - len, "|%s|",
  84. "DISCONNECT_NOTIFIED");
  85. if (state & DP_STATE_ENABLED)
  86. len += scnprintf(buf + len, sizeof(buf) - len, "|%s|",
  87. "ENABLED");
  88. if (state & DP_STATE_SUSPENDED)
  89. len += scnprintf(buf + len, sizeof(buf) - len, "|%s|",
  90. "SUSPENDED");
  91. if (state & DP_STATE_ABORTED)
  92. len += scnprintf(buf + len, sizeof(buf) - len, "|%s|",
  93. "ABORTED");
  94. if (state & DP_STATE_HDCP_ABORTED)
  95. len += scnprintf(buf + len, sizeof(buf) - len, "|%s|",
  96. "HDCP_ABORTED");
  97. if (state & DP_STATE_SRC_PWRDN)
  98. len += scnprintf(buf + len, sizeof(buf) - len, "|%s|",
  99. "SRC_PWRDN");
  100. if (state & DP_STATE_TUI_ACTIVE)
  101. len += scnprintf(buf + len, sizeof(buf) - len, "|%s|",
  102. "TUI_ACTIVE");
  103. if (!strlen(buf))
  104. return "DISCONNECTED";
  105. return buf;
  106. }
  107. static struct dp_display *g_dp_display;
  108. #define HPD_STRING_SIZE 30
  109. struct dp_hdcp_dev {
  110. void *fd;
  111. struct sde_hdcp_ops *ops;
  112. enum sde_hdcp_version ver;
  113. };
  114. struct dp_hdcp {
  115. void *data;
  116. struct sde_hdcp_ops *ops;
  117. u32 source_cap;
  118. struct dp_hdcp_dev dev[HDCP_VERSION_MAX];
  119. };
  120. struct dp_mst {
  121. bool mst_active;
  122. bool drm_registered;
  123. struct dp_mst_drm_cbs cbs;
  124. };
  125. struct dp_display_private {
  126. char *name;
  127. int irq;
  128. enum drm_connector_status cached_connector_status;
  129. enum dp_display_states state;
  130. struct platform_device *pdev;
  131. struct device_node *aux_switch_node;
  132. struct dp_aux_bridge *aux_bridge;
  133. struct dentry *root;
  134. struct completion notification_comp;
  135. struct completion attention_comp;
  136. struct dp_hpd *hpd;
  137. struct dp_parser *parser;
  138. struct dp_power *power;
  139. struct dp_catalog *catalog;
  140. struct dp_aux *aux;
  141. struct dp_link *link;
  142. struct dp_panel *panel;
  143. struct dp_ctrl *ctrl;
  144. struct dp_debug *debug;
  145. struct dp_pll *pll;
  146. struct dp_panel *active_panels[DP_STREAM_MAX];
  147. struct dp_hdcp hdcp;
  148. struct dp_hpd_cb hpd_cb;
  149. struct dp_display_mode mode;
  150. struct dp_display dp_display;
  151. struct msm_drm_private *priv;
  152. struct workqueue_struct *wq;
  153. struct delayed_work hdcp_cb_work;
  154. struct work_struct connect_work;
  155. struct work_struct attention_work;
  156. struct mutex session_lock;
  157. bool hdcp_delayed_off;
  158. u32 active_stream_cnt;
  159. struct dp_mst mst;
  160. u32 tot_dsc_blks_in_use;
  161. bool process_hpd_connect;
  162. struct notifier_block usb_nb;
  163. };
  164. static const struct of_device_id dp_dt_match[] = {
  165. {.compatible = "qcom,dp-display"},
  166. {}
  167. };
  168. static inline bool dp_display_is_hdcp_enabled(struct dp_display_private *dp)
  169. {
  170. return dp->link->hdcp_status.hdcp_version && dp->hdcp.ops;
  171. }
  172. static irqreturn_t dp_display_irq(int irq, void *dev_id)
  173. {
  174. struct dp_display_private *dp = dev_id;
  175. if (!dp) {
  176. DP_ERR("invalid data\n");
  177. return IRQ_NONE;
  178. }
  179. /* DP HPD isr */
  180. if (dp->hpd->type == DP_HPD_LPHW)
  181. dp->hpd->isr(dp->hpd);
  182. /* DP controller isr */
  183. dp->ctrl->isr(dp->ctrl);
  184. /* DP aux isr */
  185. dp->aux->isr(dp->aux);
  186. /* HDCP isr */
  187. if (dp_display_is_hdcp_enabled(dp) && dp->hdcp.ops->isr) {
  188. if (dp->hdcp.ops->isr(dp->hdcp.data))
  189. DP_ERR("dp_hdcp_isr failed\n");
  190. }
  191. return IRQ_HANDLED;
  192. }
  193. static bool dp_display_is_ds_bridge(struct dp_panel *panel)
  194. {
  195. return (panel->dpcd[DP_DOWNSTREAMPORT_PRESENT] &
  196. DP_DWN_STRM_PORT_PRESENT);
  197. }
  198. static bool dp_display_is_sink_count_zero(struct dp_display_private *dp)
  199. {
  200. return dp_display_is_ds_bridge(dp->panel) &&
  201. (dp->link->sink_count.count == 0);
  202. }
  203. static bool dp_display_is_ready(struct dp_display_private *dp)
  204. {
  205. return dp->hpd->hpd_high && dp_display_state_is(DP_STATE_CONNECTED) &&
  206. !dp_display_is_sink_count_zero(dp) &&
  207. dp->hpd->alt_mode_cfg_done;
  208. }
  209. static void dp_audio_enable(struct dp_display_private *dp, bool enable)
  210. {
  211. struct dp_panel *dp_panel;
  212. int idx;
  213. for (idx = DP_STREAM_0; idx < DP_STREAM_MAX; idx++) {
  214. if (!dp->active_panels[idx])
  215. continue;
  216. dp_panel = dp->active_panels[idx];
  217. if (dp_panel->audio_supported) {
  218. if (enable) {
  219. dp_panel->audio->bw_code =
  220. dp->link->link_params.bw_code;
  221. dp_panel->audio->lane_count =
  222. dp->link->link_params.lane_count;
  223. dp_panel->audio->on(dp_panel->audio);
  224. } else {
  225. dp_panel->audio->off(dp_panel->audio);
  226. }
  227. }
  228. }
  229. }
  230. static void dp_display_update_hdcp_status(struct dp_display_private *dp,
  231. bool reset)
  232. {
  233. if (reset) {
  234. dp->link->hdcp_status.hdcp_state = HDCP_STATE_INACTIVE;
  235. dp->link->hdcp_status.hdcp_version = HDCP_VERSION_NONE;
  236. }
  237. memset(dp->debug->hdcp_status, 0, sizeof(dp->debug->hdcp_status));
  238. snprintf(dp->debug->hdcp_status, sizeof(dp->debug->hdcp_status),
  239. "%s: %s\ncaps: %d\n",
  240. sde_hdcp_version(dp->link->hdcp_status.hdcp_version),
  241. sde_hdcp_state_name(dp->link->hdcp_status.hdcp_state),
  242. dp->hdcp.source_cap);
  243. }
  244. static void dp_display_update_hdcp_info(struct dp_display_private *dp)
  245. {
  246. void *fd = NULL;
  247. struct dp_hdcp_dev *dev = NULL;
  248. struct sde_hdcp_ops *ops = NULL;
  249. int i = HDCP_VERSION_2P2;
  250. dp_display_update_hdcp_status(dp, true);
  251. dp->hdcp.data = NULL;
  252. dp->hdcp.ops = NULL;
  253. if (dp->debug->hdcp_disabled || dp->debug->sim_mode)
  254. return;
  255. while (i) {
  256. dev = &dp->hdcp.dev[i];
  257. ops = dev->ops;
  258. fd = dev->fd;
  259. i >>= 1;
  260. if (!(dp->hdcp.source_cap & dev->ver))
  261. continue;
  262. if (ops->sink_support(fd)) {
  263. dp->hdcp.data = fd;
  264. dp->hdcp.ops = ops;
  265. dp->link->hdcp_status.hdcp_version = dev->ver;
  266. break;
  267. }
  268. }
  269. DP_DEBUG("HDCP version supported: %s\n",
  270. sde_hdcp_version(dp->link->hdcp_status.hdcp_version));
  271. }
  272. static void dp_display_check_source_hdcp_caps(struct dp_display_private *dp)
  273. {
  274. int i;
  275. struct dp_hdcp_dev *hdcp_dev = dp->hdcp.dev;
  276. if (dp->debug->hdcp_disabled) {
  277. DP_DEBUG("hdcp disabled\n");
  278. return;
  279. }
  280. for (i = 0; i < HDCP_VERSION_MAX; i++) {
  281. struct dp_hdcp_dev *dev = &hdcp_dev[i];
  282. struct sde_hdcp_ops *ops = dev->ops;
  283. void *fd = dev->fd;
  284. if (!fd || !ops)
  285. continue;
  286. if (ops->set_mode && ops->set_mode(fd, dp->mst.mst_active))
  287. continue;
  288. if (!(dp->hdcp.source_cap & dev->ver) &&
  289. ops->feature_supported &&
  290. ops->feature_supported(fd))
  291. dp->hdcp.source_cap |= dev->ver;
  292. }
  293. dp_display_update_hdcp_status(dp, false);
  294. }
  295. static void dp_display_hdcp_register_streams(struct dp_display_private *dp)
  296. {
  297. int rc;
  298. size_t i;
  299. struct sde_hdcp_ops *ops = dp->hdcp.ops;
  300. void *data = dp->hdcp.data;
  301. if (dp_display_is_ready(dp) && dp->mst.mst_active && ops &&
  302. ops->register_streams){
  303. struct stream_info streams[DP_STREAM_MAX];
  304. int index = 0;
  305. DP_DEBUG("Registering all active panel streams with HDCP\n");
  306. for (i = DP_STREAM_0; i < DP_STREAM_MAX; i++) {
  307. if (!dp->active_panels[i])
  308. continue;
  309. streams[index].stream_id = i;
  310. streams[index].virtual_channel =
  311. dp->active_panels[i]->vcpi;
  312. index++;
  313. }
  314. if (index > 0) {
  315. rc = ops->register_streams(data, index, streams);
  316. if (rc)
  317. DP_ERR("failed to register streams. rc = %d\n",
  318. rc);
  319. }
  320. }
  321. }
  322. static void dp_display_hdcp_deregister_stream(struct dp_display_private *dp,
  323. enum dp_stream_id stream_id)
  324. {
  325. if (dp->hdcp.ops->deregister_streams) {
  326. struct stream_info stream = {stream_id,
  327. dp->active_panels[stream_id]->vcpi};
  328. DP_DEBUG("Deregistering stream within HDCP library\n");
  329. dp->hdcp.ops->deregister_streams(dp->hdcp.data, 1, &stream);
  330. }
  331. }
  332. static void dp_display_hdcp_process_delayed_off(struct dp_display_private *dp)
  333. {
  334. if (dp->hdcp_delayed_off) {
  335. if (dp->hdcp.ops && dp->hdcp.ops->off)
  336. dp->hdcp.ops->off(dp->hdcp.data);
  337. dp_display_update_hdcp_status(dp, true);
  338. dp->hdcp_delayed_off = false;
  339. }
  340. }
  341. static int dp_display_hdcp_process_sink_sync(struct dp_display_private *dp)
  342. {
  343. u8 sink_status = 0;
  344. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY);
  345. if (dp->debug->hdcp_wait_sink_sync) {
  346. drm_dp_dpcd_readb(dp->aux->drm_aux, DP_SINK_STATUS,
  347. &sink_status);
  348. sink_status &= (DP_RECEIVE_PORT_0_STATUS |
  349. DP_RECEIVE_PORT_1_STATUS);
  350. if (sink_status < 1) {
  351. DP_DEBUG("Sink not synchronized. Queuing again then exiting\n");
  352. queue_delayed_work(dp->wq, &dp->hdcp_cb_work, HZ);
  353. return -EAGAIN;
  354. }
  355. /*
  356. * Some sinks need more time to stabilize after synchronization
  357. * and before it can handle an HDCP authentication request.
  358. * Adding the delay for better interoperability.
  359. */
  360. msleep(6000);
  361. }
  362. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT);
  363. return 0;
  364. }
  365. static int dp_display_hdcp_start(struct dp_display_private *dp)
  366. {
  367. if (dp->link->hdcp_status.hdcp_state != HDCP_STATE_INACTIVE)
  368. return -EINVAL;
  369. dp_display_check_source_hdcp_caps(dp);
  370. dp_display_update_hdcp_info(dp);
  371. if (dp_display_is_hdcp_enabled(dp)) {
  372. if (dp->hdcp.ops && dp->hdcp.ops->on &&
  373. dp->hdcp.ops->on(dp->hdcp.data)) {
  374. dp_display_update_hdcp_status(dp, true);
  375. return 0;
  376. }
  377. } else {
  378. dp_display_update_hdcp_status(dp, true);
  379. return 0;
  380. }
  381. return -EINVAL;
  382. }
  383. static void dp_display_hdcp_print_auth_state(struct dp_display_private *dp)
  384. {
  385. u32 hdcp_auth_state;
  386. int rc;
  387. rc = dp->catalog->ctrl.read_hdcp_status(&dp->catalog->ctrl);
  388. if (rc >= 0) {
  389. hdcp_auth_state = (rc >> 20) & 0x3;
  390. DP_DEBUG("hdcp auth state %d\n", hdcp_auth_state);
  391. }
  392. }
  393. static void dp_display_hdcp_process_state(struct dp_display_private *dp)
  394. {
  395. struct dp_link_hdcp_status *status;
  396. struct sde_hdcp_ops *ops;
  397. void *data;
  398. int rc = 0;
  399. status = &dp->link->hdcp_status;
  400. ops = dp->hdcp.ops;
  401. data = dp->hdcp.data;
  402. if (status->hdcp_state != HDCP_STATE_AUTHENTICATED &&
  403. dp->debug->force_encryption && ops && ops->force_encryption)
  404. ops->force_encryption(data, dp->debug->force_encryption);
  405. switch (status->hdcp_state) {
  406. case HDCP_STATE_INACTIVE:
  407. dp_display_hdcp_register_streams(dp);
  408. if (dp->hdcp.ops && dp->hdcp.ops->authenticate)
  409. rc = dp->hdcp.ops->authenticate(data);
  410. if (!rc)
  411. status->hdcp_state = HDCP_STATE_AUTHENTICATING;
  412. break;
  413. case HDCP_STATE_AUTH_FAIL:
  414. if (dp_display_is_ready(dp) &&
  415. dp_display_state_is(DP_STATE_ENABLED)) {
  416. if (ops && ops->on && ops->on(data)) {
  417. dp_display_update_hdcp_status(dp, true);
  418. return;
  419. }
  420. dp_display_hdcp_register_streams(dp);
  421. if (ops && ops->reauthenticate) {
  422. rc = ops->reauthenticate(data);
  423. if (rc)
  424. DP_ERR("failed rc=%d\n", rc);
  425. }
  426. status->hdcp_state = HDCP_STATE_AUTHENTICATING;
  427. } else {
  428. DP_DEBUG("not reauthenticating, cable disconnected\n");
  429. }
  430. break;
  431. default:
  432. dp_display_hdcp_register_streams(dp);
  433. break;
  434. }
  435. }
  436. static void dp_display_abort_hdcp(struct dp_display_private *dp,
  437. bool abort)
  438. {
  439. u8 i = HDCP_VERSION_2P2;
  440. struct dp_hdcp_dev *dev = NULL;
  441. while (i) {
  442. dev = &dp->hdcp.dev[i];
  443. i >>= 1;
  444. if (!(dp->hdcp.source_cap & dev->ver))
  445. continue;
  446. dev->ops->abort(dev->fd, abort);
  447. }
  448. }
  449. static void dp_display_hdcp_cb_work(struct work_struct *work)
  450. {
  451. struct dp_display_private *dp;
  452. struct delayed_work *dw = to_delayed_work(work);
  453. struct dp_link_hdcp_status *status;
  454. int rc = 0;
  455. dp = container_of(dw, struct dp_display_private, hdcp_cb_work);
  456. if (!dp_display_state_is(DP_STATE_ENABLED | DP_STATE_CONNECTED) ||
  457. dp_display_state_is(DP_STATE_ABORTED | DP_STATE_HDCP_ABORTED))
  458. return;
  459. if (dp_display_state_is(DP_STATE_SUSPENDED)) {
  460. DP_DEBUG("System suspending. Delay HDCP operations\n");
  461. queue_delayed_work(dp->wq, &dp->hdcp_cb_work, HZ);
  462. return;
  463. }
  464. dp_display_hdcp_process_delayed_off(dp);
  465. rc = dp_display_hdcp_process_sink_sync(dp);
  466. if (rc)
  467. return;
  468. rc = dp_display_hdcp_start(dp);
  469. if (!rc)
  470. return;
  471. dp_display_hdcp_print_auth_state(dp);
  472. status = &dp->link->hdcp_status;
  473. DP_DEBUG("%s: %s\n", sde_hdcp_version(status->hdcp_version),
  474. sde_hdcp_state_name(status->hdcp_state));
  475. dp_display_update_hdcp_status(dp, false);
  476. dp_display_hdcp_process_state(dp);
  477. }
  478. static void dp_display_notify_hdcp_status_cb(void *ptr,
  479. enum sde_hdcp_state state)
  480. {
  481. struct dp_display_private *dp = ptr;
  482. if (!dp) {
  483. DP_ERR("invalid input\n");
  484. return;
  485. }
  486. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY,
  487. dp->link->hdcp_status.hdcp_state);
  488. dp->link->hdcp_status.hdcp_state = state;
  489. queue_delayed_work(dp->wq, &dp->hdcp_cb_work, HZ/4);
  490. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT,
  491. dp->link->hdcp_status.hdcp_state);
  492. }
  493. static void dp_display_deinitialize_hdcp(struct dp_display_private *dp)
  494. {
  495. if (!dp) {
  496. DP_ERR("invalid input\n");
  497. return;
  498. }
  499. sde_hdcp_1x_deinit(dp->hdcp.dev[HDCP_VERSION_1X].fd);
  500. sde_dp_hdcp2p2_deinit(dp->hdcp.dev[HDCP_VERSION_2P2].fd);
  501. }
  502. static int dp_display_initialize_hdcp(struct dp_display_private *dp)
  503. {
  504. struct sde_hdcp_init_data hdcp_init_data;
  505. struct dp_parser *parser;
  506. void *fd;
  507. int rc = 0;
  508. if (!dp) {
  509. DP_ERR("invalid input\n");
  510. return -EINVAL;
  511. }
  512. parser = dp->parser;
  513. hdcp_init_data.client_id = HDCP_CLIENT_DP;
  514. hdcp_init_data.drm_aux = dp->aux->drm_aux;
  515. hdcp_init_data.cb_data = (void *)dp;
  516. hdcp_init_data.workq = dp->wq;
  517. hdcp_init_data.sec_access = true;
  518. hdcp_init_data.notify_status = dp_display_notify_hdcp_status_cb;
  519. hdcp_init_data.dp_ahb = &parser->get_io(parser, "dp_ahb")->io;
  520. hdcp_init_data.dp_aux = &parser->get_io(parser, "dp_aux")->io;
  521. hdcp_init_data.dp_link = &parser->get_io(parser, "dp_link")->io;
  522. hdcp_init_data.dp_p0 = &parser->get_io(parser, "dp_p0")->io;
  523. hdcp_init_data.hdcp_io = &parser->get_io(parser,
  524. "hdcp_physical")->io;
  525. hdcp_init_data.revision = &dp->panel->link_info.revision;
  526. hdcp_init_data.msm_hdcp_dev = dp->parser->msm_hdcp_dev;
  527. fd = sde_hdcp_1x_init(&hdcp_init_data);
  528. if (IS_ERR_OR_NULL(fd)) {
  529. DP_DEBUG("Error initializing HDCP 1.x\n");
  530. return -EINVAL;
  531. }
  532. dp->hdcp.dev[HDCP_VERSION_1X].fd = fd;
  533. dp->hdcp.dev[HDCP_VERSION_1X].ops = sde_hdcp_1x_get(fd);
  534. dp->hdcp.dev[HDCP_VERSION_1X].ver = HDCP_VERSION_1X;
  535. DP_INFO("HDCP 1.3 initialized\n");
  536. fd = sde_dp_hdcp2p2_init(&hdcp_init_data);
  537. if (IS_ERR_OR_NULL(fd)) {
  538. DP_DEBUG("Error initializing HDCP 2.x\n");
  539. rc = -EINVAL;
  540. goto error;
  541. }
  542. dp->hdcp.dev[HDCP_VERSION_2P2].fd = fd;
  543. dp->hdcp.dev[HDCP_VERSION_2P2].ops = sde_dp_hdcp2p2_get(fd);
  544. dp->hdcp.dev[HDCP_VERSION_2P2].ver = HDCP_VERSION_2P2;
  545. DP_INFO("HDCP 2.2 initialized\n");
  546. return 0;
  547. error:
  548. sde_hdcp_1x_deinit(dp->hdcp.dev[HDCP_VERSION_1X].fd);
  549. return rc;
  550. }
  551. static void dp_display_pause_audio(struct dp_display_private *dp, bool pause)
  552. {
  553. struct dp_panel *dp_panel;
  554. int idx;
  555. for (idx = DP_STREAM_0; idx < DP_STREAM_MAX; idx++) {
  556. if (!dp->active_panels[idx])
  557. continue;
  558. dp_panel = dp->active_panels[idx];
  559. if (dp_panel->audio_supported)
  560. dp_panel->audio->tui_active = pause;
  561. }
  562. }
  563. static int dp_display_pre_hw_release(void *data)
  564. {
  565. struct dp_display_private *dp;
  566. struct dp_display *dp_display = data;
  567. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY);
  568. if (!dp_display)
  569. return -EINVAL;
  570. dp = container_of(dp_display, struct dp_display_private, dp_display);
  571. mutex_lock(&dp->session_lock);
  572. dp_display_state_add(DP_STATE_TUI_ACTIVE);
  573. cancel_work_sync(&dp->connect_work);
  574. cancel_work_sync(&dp->attention_work);
  575. flush_workqueue(dp->wq);
  576. dp_display_pause_audio(dp, true);
  577. disable_irq(dp->irq);
  578. mutex_unlock(&dp->session_lock);
  579. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT);
  580. return 0;
  581. }
  582. static int dp_display_post_hw_acquire(void *data)
  583. {
  584. struct dp_display_private *dp;
  585. struct dp_display *dp_display = data;
  586. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY);
  587. if (!dp_display)
  588. return -EINVAL;
  589. dp = container_of(dp_display, struct dp_display_private, dp_display);
  590. mutex_lock(&dp->session_lock);
  591. dp_display_state_remove(DP_STATE_TUI_ACTIVE);
  592. dp_display_pause_audio(dp, false);
  593. enable_irq(dp->irq);
  594. mutex_unlock(&dp->session_lock);
  595. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT);
  596. return 0;
  597. }
  598. static int dp_display_bind(struct device *dev, struct device *master,
  599. void *data)
  600. {
  601. int rc = 0;
  602. struct dp_display_private *dp;
  603. struct drm_device *drm;
  604. struct platform_device *pdev = to_platform_device(dev);
  605. struct msm_vm_ops vm_event_ops = {
  606. .vm_pre_hw_release = dp_display_pre_hw_release,
  607. .vm_post_hw_acquire = dp_display_post_hw_acquire,
  608. };
  609. if (!dev || !pdev || !master) {
  610. DP_ERR("invalid param(s), dev %pK, pdev %pK, master %pK\n",
  611. dev, pdev, master);
  612. rc = -EINVAL;
  613. goto end;
  614. }
  615. drm = dev_get_drvdata(master);
  616. dp = platform_get_drvdata(pdev);
  617. if (!drm || !dp) {
  618. DP_ERR("invalid param(s), drm %pK, dp %pK\n",
  619. drm, dp);
  620. rc = -EINVAL;
  621. goto end;
  622. }
  623. dp->dp_display.drm_dev = drm;
  624. dp->priv = drm->dev_private;
  625. msm_register_vm_event(master, dev, &vm_event_ops,
  626. (void *)&dp->dp_display);
  627. end:
  628. return rc;
  629. }
  630. static void dp_display_unbind(struct device *dev, struct device *master,
  631. void *data)
  632. {
  633. struct dp_display_private *dp;
  634. struct platform_device *pdev = to_platform_device(dev);
  635. if (!dev || !pdev) {
  636. DP_ERR("invalid param(s)\n");
  637. return;
  638. }
  639. dp = platform_get_drvdata(pdev);
  640. if (!dp) {
  641. DP_ERR("Invalid params\n");
  642. return;
  643. }
  644. if (dp->power)
  645. (void)dp->power->power_client_deinit(dp->power);
  646. if (dp->aux)
  647. (void)dp->aux->drm_aux_deregister(dp->aux);
  648. dp_display_deinitialize_hdcp(dp);
  649. }
  650. static const struct component_ops dp_display_comp_ops = {
  651. .bind = dp_display_bind,
  652. .unbind = dp_display_unbind,
  653. };
  654. static bool dp_display_send_hpd_event(struct dp_display_private *dp)
  655. {
  656. struct drm_device *dev = NULL;
  657. struct drm_connector *connector;
  658. char name[HPD_STRING_SIZE], status[HPD_STRING_SIZE],
  659. bpp[HPD_STRING_SIZE], pattern[HPD_STRING_SIZE];
  660. char *envp[5];
  661. int rc = 0;
  662. connector = dp->dp_display.base_connector;
  663. if (!connector) {
  664. DP_ERR("connector not set\n");
  665. return false;
  666. }
  667. connector->status = connector->funcs->detect(connector, false);
  668. if (dp->cached_connector_status == connector->status) {
  669. DP_DEBUG("connector status (%d) unchanged, skipping uevent\n",
  670. dp->cached_connector_status);
  671. return false;
  672. }
  673. dp->cached_connector_status = connector->status;
  674. dev = connector->dev;
  675. if (dp->debug->skip_uevent) {
  676. DP_INFO("skipping uevent\n");
  677. return false;
  678. }
  679. snprintf(name, HPD_STRING_SIZE, "name=%s", connector->name);
  680. snprintf(status, HPD_STRING_SIZE, "status=%s",
  681. drm_get_connector_status_name(connector->status));
  682. snprintf(bpp, HPD_STRING_SIZE, "bpp=%d",
  683. dp_link_bit_depth_to_bpp(
  684. dp->link->test_video.test_bit_depth));
  685. snprintf(pattern, HPD_STRING_SIZE, "pattern=%d",
  686. dp->link->test_video.test_video_pattern);
  687. DP_INFO("[%s]:[%s] [%s] [%s]\n", name, status, bpp, pattern);
  688. envp[0] = name;
  689. envp[1] = status;
  690. envp[2] = bpp;
  691. envp[3] = pattern;
  692. envp[4] = NULL;
  693. rc = kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, envp);
  694. DP_INFO("uevent %s: %d\n", rc ? "failure" : "success", rc);
  695. return true;
  696. }
  697. static int dp_display_send_hpd_notification(struct dp_display_private *dp)
  698. {
  699. int ret = 0;
  700. bool hpd = !!dp_display_state_is(DP_STATE_CONNECTED);
  701. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state, hpd);
  702. /*
  703. * Send the notification only if there is any change. This check is
  704. * necessary since it is possible that the connect_work may or may not
  705. * skip sending the notification in order to respond to a pending
  706. * attention message. Attention work thread will always attempt to
  707. * send the notification after successfully handling the attention
  708. * message. This check here will avoid any unintended duplicate
  709. * notifications.
  710. */
  711. if (dp_display_state_is(DP_STATE_CONNECT_NOTIFIED) && hpd) {
  712. DP_DEBUG("connection notified already, skip notification\n");
  713. goto skip_wait;
  714. } else if (dp_display_state_is(DP_STATE_DISCONNECT_NOTIFIED) && !hpd) {
  715. DP_DEBUG("disonnect notified already, skip notification\n");
  716. goto skip_wait;
  717. }
  718. dp->aux->state |= DP_STATE_NOTIFICATION_SENT;
  719. reinit_completion(&dp->notification_comp);
  720. if (!dp->mst.mst_active) {
  721. dp->dp_display.is_sst_connected = hpd;
  722. if (!dp_display_send_hpd_event(dp))
  723. goto skip_wait;
  724. } else {
  725. dp->dp_display.is_sst_connected = false;
  726. if (!dp->mst.cbs.hpd)
  727. goto skip_wait;
  728. dp->mst.cbs.hpd(&dp->dp_display, true);
  729. }
  730. if (hpd) {
  731. dp_display_state_add(DP_STATE_CONNECT_NOTIFIED);
  732. dp_display_state_remove(DP_STATE_DISCONNECT_NOTIFIED);
  733. } else {
  734. dp_display_state_add(DP_STATE_DISCONNECT_NOTIFIED);
  735. dp_display_state_remove(DP_STATE_CONNECT_NOTIFIED);
  736. }
  737. /*
  738. * Skip the wait if TUI is active considering that the user mode will
  739. * not act on the notification until after the TUI session is over.
  740. */
  741. if (dp_display_state_is(DP_STATE_TUI_ACTIVE)) {
  742. dp_display_state_log("[TUI is active, skipping wait]");
  743. goto skip_wait;
  744. }
  745. if (hpd && dp->mst.mst_active)
  746. goto skip_wait;
  747. if (!dp->mst.mst_active &&
  748. (!!dp_display_state_is(DP_STATE_ENABLED) == hpd))
  749. goto skip_wait;
  750. if (!wait_for_completion_timeout(&dp->notification_comp,
  751. HZ * 5)) {
  752. DP_WARN("%s timeout\n", hpd ? "connect" : "disconnect");
  753. ret = -EINVAL;
  754. }
  755. skip_wait:
  756. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state, hpd, ret);
  757. return ret;
  758. }
  759. static void dp_display_update_mst_state(struct dp_display_private *dp,
  760. bool state)
  761. {
  762. dp->mst.mst_active = state;
  763. dp->panel->mst_state = state;
  764. }
  765. static void dp_display_mst_init(struct dp_display_private *dp)
  766. {
  767. bool is_mst_receiver;
  768. const unsigned long clear_mstm_ctrl_timeout_us = 100000;
  769. u8 old_mstm_ctrl;
  770. int ret;
  771. if (!dp->parser->has_mst || !dp->mst.drm_registered) {
  772. DP_MST_DEBUG("mst not enabled. has_mst:%d, registered:%d\n",
  773. dp->parser->has_mst, dp->mst.drm_registered);
  774. return;
  775. }
  776. is_mst_receiver = dp->panel->read_mst_cap(dp->panel);
  777. if (!is_mst_receiver) {
  778. DP_MST_DEBUG("sink doesn't support mst\n");
  779. return;
  780. }
  781. /* clear sink mst state */
  782. drm_dp_dpcd_readb(dp->aux->drm_aux, DP_MSTM_CTRL, &old_mstm_ctrl);
  783. drm_dp_dpcd_writeb(dp->aux->drm_aux, DP_MSTM_CTRL, 0);
  784. /* add extra delay if MST state is not cleared */
  785. if (old_mstm_ctrl) {
  786. DP_MST_DEBUG("MSTM_CTRL is not cleared, wait %dus\n",
  787. clear_mstm_ctrl_timeout_us);
  788. usleep_range(clear_mstm_ctrl_timeout_us,
  789. clear_mstm_ctrl_timeout_us + 1000);
  790. }
  791. ret = drm_dp_dpcd_writeb(dp->aux->drm_aux, DP_MSTM_CTRL,
  792. DP_MST_EN | DP_UP_REQ_EN | DP_UPSTREAM_IS_SRC);
  793. if (ret < 0) {
  794. DP_ERR("sink mst enablement failed\n");
  795. return;
  796. }
  797. dp_display_update_mst_state(dp, true);
  798. }
  799. static void dp_display_set_mst_mgr_state(struct dp_display_private *dp,
  800. bool state)
  801. {
  802. if (!dp->mst.mst_active)
  803. return;
  804. if (dp->mst.cbs.set_mgr_state)
  805. dp->mst.cbs.set_mgr_state(&dp->dp_display, state);
  806. DP_MST_DEBUG("mst_mgr_state: %d\n", state);
  807. }
  808. static int dp_display_host_init(struct dp_display_private *dp)
  809. {
  810. bool flip = false;
  811. bool reset;
  812. int rc = 0;
  813. if (dp_display_state_is(DP_STATE_INITIALIZED)) {
  814. dp_display_state_log("[already initialized]");
  815. return rc;
  816. }
  817. if (dp->hpd->orientation == ORIENTATION_CC2)
  818. flip = true;
  819. reset = dp->debug->sim_mode ? false : !dp->hpd->multi_func;
  820. rc = dp->power->init(dp->power, flip);
  821. if (rc) {
  822. DP_WARN("Power init failed.\n");
  823. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_CASE1, dp->state);
  824. return rc;
  825. }
  826. dp->hpd->host_init(dp->hpd, &dp->catalog->hpd);
  827. rc = dp->ctrl->init(dp->ctrl, flip, reset);
  828. if (rc) {
  829. DP_WARN("Ctrl init Failed.\n");
  830. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_CASE2, dp->state);
  831. goto error_ctrl;
  832. }
  833. enable_irq(dp->irq);
  834. dp_display_abort_hdcp(dp, false);
  835. dp_display_state_add(DP_STATE_INITIALIZED);
  836. /* log this as it results from user action of cable connection */
  837. DP_INFO("[OK]\n");
  838. return rc;
  839. error_ctrl:
  840. dp->hpd->host_deinit(dp->hpd, &dp->catalog->hpd);
  841. dp->power->deinit(dp->power);
  842. return rc;
  843. }
  844. static void dp_display_host_ready(struct dp_display_private *dp)
  845. {
  846. if (!dp_display_state_is(DP_STATE_INITIALIZED)) {
  847. dp_display_state_show("[not initialized]");
  848. return;
  849. }
  850. if (dp_display_state_is(DP_STATE_READY)) {
  851. dp_display_state_log("[already ready]");
  852. return;
  853. }
  854. /*
  855. * Reset the aborted state for AUX and CTRL modules. This will
  856. * allow these modules to execute normally in response to the
  857. * cable connection event.
  858. *
  859. * One corner case still exists. While the execution flow ensures
  860. * that cable disconnection flushes all pending work items on the DP
  861. * workqueue, and waits for the user module to clean up the DP
  862. * connection session, it is possible that the system delays can
  863. * lead to timeouts in the connect path. As a result, the actual
  864. * connection callback from user modules can come in late and can
  865. * race against a subsequent connection event here which would have
  866. * reset the aborted flags. There is no clear solution for this since
  867. * the connect/disconnect notifications do not currently have any
  868. * sessions IDs.
  869. */
  870. dp->aux->abort(dp->aux, false);
  871. dp->ctrl->abort(dp->ctrl, false);
  872. dp->aux->init(dp->aux, dp->parser->aux_cfg);
  873. dp->panel->init(dp->panel);
  874. dp_display_state_add(DP_STATE_READY);
  875. /* log this as it results from user action of cable connection */
  876. DP_INFO("[OK]\n");
  877. }
  878. static void dp_display_host_unready(struct dp_display_private *dp)
  879. {
  880. if (!dp_display_state_is(DP_STATE_INITIALIZED)) {
  881. dp_display_state_show("[not initialized]");
  882. return;
  883. }
  884. if (!dp_display_state_is(DP_STATE_READY)) {
  885. dp_display_state_show("[not ready]");
  886. return;
  887. }
  888. dp_display_state_remove(DP_STATE_READY);
  889. dp->aux->deinit(dp->aux);
  890. /* log this as it results from user action of cable disconnection */
  891. DP_INFO("[OK]\n");
  892. }
  893. static void dp_display_host_deinit(struct dp_display_private *dp)
  894. {
  895. if (dp->active_stream_cnt) {
  896. SDE_EVT32_EXTERNAL(dp->state, dp->active_stream_cnt);
  897. DP_DEBUG("active stream present\n");
  898. return;
  899. }
  900. if (!dp_display_state_is(DP_STATE_INITIALIZED)) {
  901. dp_display_state_show("[not initialized]");
  902. return;
  903. }
  904. dp_display_abort_hdcp(dp, true);
  905. dp->ctrl->deinit(dp->ctrl);
  906. dp->hpd->host_deinit(dp->hpd, &dp->catalog->hpd);
  907. dp->power->deinit(dp->power);
  908. disable_irq(dp->irq);
  909. dp->aux->state = 0;
  910. dp_display_state_remove(DP_STATE_INITIALIZED);
  911. /* log this as it results from user action of cable dis-connection */
  912. DP_INFO("[OK]\n");
  913. }
  914. static int dp_display_process_hpd_high(struct dp_display_private *dp)
  915. {
  916. int rc = -EINVAL;
  917. unsigned long wait_timeout_ms;
  918. unsigned long t;
  919. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  920. mutex_lock(&dp->session_lock);
  921. if (dp_display_state_is(DP_STATE_CONNECTED)) {
  922. DP_DEBUG("dp already connected, skipping hpd high\n");
  923. mutex_unlock(&dp->session_lock);
  924. return -EISCONN;
  925. }
  926. dp_display_state_add(DP_STATE_CONNECTED);
  927. dp->dp_display.max_pclk_khz = min(dp->parser->max_pclk_khz,
  928. dp->debug->max_pclk_khz);
  929. /*
  930. * If dp video session is not restored from a previous session teardown
  931. * by userspace, ensure the host_init is executed, in such a scenario,
  932. * so that all the required DP resources are enabled.
  933. *
  934. * Below is one of the sequences of events which describe the above
  935. * scenario:
  936. * a. Source initiated power down resulting in host_deinit.
  937. * b. Sink issues hpd low attention without physical cable disconnect.
  938. * c. Source initiated power up sequence returns early because hpd is
  939. * not high.
  940. * d. Sink issues a hpd high attention event.
  941. */
  942. if (dp_display_state_is(DP_STATE_SRC_PWRDN) &&
  943. dp_display_state_is(DP_STATE_CONFIGURED)) {
  944. rc = dp_display_host_init(dp);
  945. if (rc) {
  946. DP_WARN("Host init Failed");
  947. if (!dp_display_state_is(DP_STATE_SUSPENDED)) {
  948. /*
  949. * If not suspended no point of going forward if
  950. * resource is not enabled.
  951. */
  952. dp_display_state_remove(DP_STATE_CONNECTED);
  953. }
  954. goto end;
  955. }
  956. /*
  957. * If device is suspended and host_init fails, there is
  958. * one more chance for host init to happen in prepare which
  959. * is why DP_STATE_SRC_PWRDN is removed only at success.
  960. */
  961. dp_display_state_remove(DP_STATE_SRC_PWRDN);
  962. }
  963. dp_display_host_ready(dp);
  964. dp->link->psm_config(dp->link, &dp->panel->link_info, false);
  965. dp->debug->psm_enabled = false;
  966. if (!dp->dp_display.base_connector)
  967. goto end;
  968. rc = dp->panel->read_sink_caps(dp->panel,
  969. dp->dp_display.base_connector, dp->hpd->multi_func);
  970. /*
  971. * ETIMEDOUT --> cable may have been removed
  972. * ENOTCONN --> no downstream device connected
  973. */
  974. if (rc == -ETIMEDOUT || rc == -ENOTCONN) {
  975. dp_display_state_remove(DP_STATE_CONNECTED);
  976. goto end;
  977. }
  978. dp->link->process_request(dp->link);
  979. dp->panel->handle_sink_request(dp->panel);
  980. dp_display_mst_init(dp);
  981. rc = dp->ctrl->on(dp->ctrl, dp->mst.mst_active,
  982. dp->panel->fec_en, dp->panel->dsc_en, false);
  983. if (rc) {
  984. dp_display_state_remove(DP_STATE_CONNECTED);
  985. goto end;
  986. }
  987. dp->process_hpd_connect = false;
  988. dp_display_set_mst_mgr_state(dp, true);
  989. end:
  990. mutex_unlock(&dp->session_lock);
  991. /*
  992. * Delay the HPD connect notification to see if sink generates any
  993. * IRQ HPDs immediately after the HPD high.
  994. */
  995. reinit_completion(&dp->attention_comp);
  996. wait_timeout_ms = min_t(unsigned long,
  997. dp->debug->connect_notification_delay_ms,
  998. (unsigned long) MAX_CONNECT_NOTIFICATION_DELAY_MS);
  999. t = wait_for_completion_timeout(&dp->attention_comp,
  1000. msecs_to_jiffies(wait_timeout_ms));
  1001. DP_DEBUG("wait_timeout=%lu ms, time_waited=%u ms\n", wait_timeout_ms,
  1002. jiffies_to_msecs(t));
  1003. /*
  1004. * If an IRQ HPD is pending, then do not send a connect notification.
  1005. * Once this work returns, the IRQ HPD would be processed and any
  1006. * required actions (such as link maintenance) would be done which
  1007. * will subsequently send the HPD notification. To keep things simple,
  1008. * do this only for SST use-cases. MST use cases require additional
  1009. * care in order to handle the side-band communications as well.
  1010. *
  1011. * One of the main motivations for this is DP LL 1.4 CTS use case
  1012. * where it is possible that we could get a test request right after
  1013. * a connection, and the strict timing requriements of the test can
  1014. * only be met if we do not wait for the e2e connection to be set up.
  1015. */
  1016. if (!dp->mst.mst_active &&
  1017. (work_busy(&dp->attention_work) == WORK_BUSY_PENDING)) {
  1018. SDE_EVT32_EXTERNAL(dp->state, 99, jiffies_to_msecs(t));
  1019. DP_DEBUG("Attention pending, skip HPD notification\n");
  1020. goto skip_notify;
  1021. }
  1022. if (!rc && !dp_display_state_is(DP_STATE_ABORTED))
  1023. dp_display_send_hpd_notification(dp);
  1024. skip_notify:
  1025. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state,
  1026. wait_timeout_ms, rc);
  1027. return rc;
  1028. }
  1029. static void dp_display_process_mst_hpd_low(struct dp_display_private *dp)
  1030. {
  1031. int rc = 0;
  1032. if (dp->mst.mst_active) {
  1033. DP_MST_DEBUG("mst_hpd_low work\n");
  1034. /*
  1035. * HPD unplug callflow:
  1036. * 1. send hpd unplug event with status=disconnected
  1037. * 2. send hpd unplug on base connector so usermode can disable
  1038. * all external displays.
  1039. * 3. unset mst state in the topology mgr so the branch device
  1040. * can be cleaned up.
  1041. */
  1042. if (dp->mst.cbs.hpd)
  1043. dp->mst.cbs.hpd(&dp->dp_display, false);
  1044. if ((dp_display_state_is(DP_STATE_CONNECT_NOTIFIED) ||
  1045. dp_display_state_is(DP_STATE_ENABLED)))
  1046. rc = dp_display_send_hpd_notification(dp);
  1047. dp_display_update_mst_state(dp, false);
  1048. dp_display_set_mst_mgr_state(dp, false);
  1049. }
  1050. DP_MST_DEBUG("mst_hpd_low. mst_active:%d\n", dp->mst.mst_active);
  1051. }
  1052. static int dp_display_process_hpd_low(struct dp_display_private *dp)
  1053. {
  1054. int rc = 0;
  1055. dp_display_state_remove(DP_STATE_CONNECTED);
  1056. dp->process_hpd_connect = false;
  1057. dp_audio_enable(dp, false);
  1058. if (dp->mst.mst_active) {
  1059. dp_display_process_mst_hpd_low(dp);
  1060. } else {
  1061. if ((dp_display_state_is(DP_STATE_CONNECT_NOTIFIED) ||
  1062. dp_display_state_is(DP_STATE_ENABLED)))
  1063. rc = dp_display_send_hpd_notification(dp);
  1064. }
  1065. mutex_lock(&dp->session_lock);
  1066. if (!dp->active_stream_cnt)
  1067. dp->ctrl->off(dp->ctrl);
  1068. mutex_unlock(&dp->session_lock);
  1069. dp->panel->video_test = false;
  1070. return rc;
  1071. }
  1072. static int dp_display_usbpd_configure_cb(struct device *dev)
  1073. {
  1074. int rc = 0;
  1075. struct dp_display_private *dp;
  1076. if (!dev) {
  1077. DP_ERR("invalid dev\n");
  1078. return -EINVAL;
  1079. }
  1080. dp = dev_get_drvdata(dev);
  1081. if (!dp) {
  1082. DP_ERR("no driver data found\n");
  1083. return -ENODEV;
  1084. }
  1085. if (!dp->debug->sim_mode && !dp->parser->no_aux_switch
  1086. && !dp->parser->gpio_aux_switch) {
  1087. rc = dp->aux->aux_switch(dp->aux, true, dp->hpd->orientation);
  1088. if (rc)
  1089. return rc;
  1090. }
  1091. mutex_lock(&dp->session_lock);
  1092. if (dp_display_state_is(DP_STATE_TUI_ACTIVE)) {
  1093. dp_display_state_log("[TUI is active]");
  1094. mutex_unlock(&dp->session_lock);
  1095. return 0;
  1096. }
  1097. dp_display_state_remove(DP_STATE_ABORTED);
  1098. dp_display_state_add(DP_STATE_CONFIGURED);
  1099. rc = dp_display_host_init(dp);
  1100. if (rc) {
  1101. DP_ERR("Host init Failed");
  1102. mutex_unlock(&dp->session_lock);
  1103. return rc;
  1104. }
  1105. /* check for hpd high */
  1106. if (dp->hpd->hpd_high)
  1107. queue_work(dp->wq, &dp->connect_work);
  1108. else
  1109. dp->process_hpd_connect = true;
  1110. mutex_unlock(&dp->session_lock);
  1111. return 0;
  1112. }
  1113. static void dp_display_update_dsc_resources(struct dp_display_private *dp,
  1114. struct dp_panel *panel, bool enable)
  1115. {
  1116. int rc;
  1117. u32 dsc_blk_cnt = 0;
  1118. struct msm_drm_private *priv = dp->priv;
  1119. if (enable) {
  1120. if (panel->pinfo.comp_info.comp_type == MSM_DISPLAY_COMPRESSION_DSC &&
  1121. (panel->pinfo.comp_info.comp_ratio > 1)) {
  1122. rc = msm_get_dsc_count(priv, panel->pinfo.h_active,
  1123. &dsc_blk_cnt);
  1124. if (rc) {
  1125. DP_ERR("error getting dsc count. rc:%d\n", rc);
  1126. return;
  1127. }
  1128. }
  1129. dp->tot_dsc_blks_in_use += dsc_blk_cnt;
  1130. panel->dsc_blks_in_use += dsc_blk_cnt;
  1131. } else {
  1132. dp->tot_dsc_blks_in_use -= panel->dsc_blks_in_use;
  1133. panel->dsc_blks_in_use = 0;
  1134. }
  1135. }
  1136. static int dp_display_stream_pre_disable(struct dp_display_private *dp,
  1137. struct dp_panel *dp_panel)
  1138. {
  1139. if (!dp->active_stream_cnt) {
  1140. DP_WARN("streams already disabled cnt=%d\n",
  1141. dp->active_stream_cnt);
  1142. return 0;
  1143. }
  1144. dp->ctrl->stream_pre_off(dp->ctrl, dp_panel);
  1145. return 0;
  1146. }
  1147. static void dp_display_stream_disable(struct dp_display_private *dp,
  1148. struct dp_panel *dp_panel)
  1149. {
  1150. if (!dp->active_stream_cnt) {
  1151. DP_WARN("streams already disabled cnt=%d\n",
  1152. dp->active_stream_cnt);
  1153. return;
  1154. }
  1155. if (dp_panel->stream_id == DP_STREAM_MAX ||
  1156. !dp->active_panels[dp_panel->stream_id]) {
  1157. DP_ERR("panel is already disabled\n");
  1158. return;
  1159. }
  1160. dp_display_update_dsc_resources(dp, dp_panel, false);
  1161. DP_DEBUG("stream_id=%d, active_stream_cnt=%d, tot_dsc_blks_in_use=%d\n",
  1162. dp_panel->stream_id, dp->active_stream_cnt,
  1163. dp->tot_dsc_blks_in_use);
  1164. dp->ctrl->stream_off(dp->ctrl, dp_panel);
  1165. dp->active_panels[dp_panel->stream_id] = NULL;
  1166. dp->active_stream_cnt--;
  1167. }
  1168. static void dp_display_clean(struct dp_display_private *dp)
  1169. {
  1170. int idx;
  1171. struct dp_panel *dp_panel;
  1172. struct dp_link_hdcp_status *status = &dp->link->hdcp_status;
  1173. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  1174. if (dp_display_state_is(DP_STATE_TUI_ACTIVE)) {
  1175. DP_WARN("TUI is active\n");
  1176. return;
  1177. }
  1178. if (dp_display_is_hdcp_enabled(dp) &&
  1179. status->hdcp_state != HDCP_STATE_INACTIVE) {
  1180. cancel_delayed_work_sync(&dp->hdcp_cb_work);
  1181. if (dp->hdcp.ops->off)
  1182. dp->hdcp.ops->off(dp->hdcp.data);
  1183. dp_display_update_hdcp_status(dp, true);
  1184. }
  1185. for (idx = DP_STREAM_0; idx < DP_STREAM_MAX; idx++) {
  1186. if (!dp->active_panels[idx])
  1187. continue;
  1188. dp_panel = dp->active_panels[idx];
  1189. if (dp_panel->audio_supported)
  1190. dp_panel->audio->off(dp_panel->audio);
  1191. dp_display_stream_pre_disable(dp, dp_panel);
  1192. dp_display_stream_disable(dp, dp_panel);
  1193. dp_panel->deinit(dp_panel, 0);
  1194. }
  1195. dp_display_state_remove(DP_STATE_ENABLED | DP_STATE_CONNECTED);
  1196. dp->ctrl->off(dp->ctrl);
  1197. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state);
  1198. }
  1199. static int dp_display_handle_disconnect(struct dp_display_private *dp)
  1200. {
  1201. int rc;
  1202. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  1203. rc = dp_display_process_hpd_low(dp);
  1204. if (rc) {
  1205. /* cancel any pending request */
  1206. dp->ctrl->abort(dp->ctrl, true);
  1207. dp->aux->abort(dp->aux, true);
  1208. }
  1209. mutex_lock(&dp->session_lock);
  1210. if (dp_display_state_is(DP_STATE_ENABLED))
  1211. dp_display_clean(dp);
  1212. dp_display_host_unready(dp);
  1213. mutex_unlock(&dp->session_lock);
  1214. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state);
  1215. return rc;
  1216. }
  1217. static void dp_display_disconnect_sync(struct dp_display_private *dp)
  1218. {
  1219. int disconnect_delay_ms;
  1220. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  1221. /* cancel any pending request */
  1222. dp_display_state_add(DP_STATE_ABORTED);
  1223. dp->ctrl->abort(dp->ctrl, true);
  1224. dp->aux->abort(dp->aux, true);
  1225. /* wait for idle state */
  1226. cancel_work_sync(&dp->connect_work);
  1227. cancel_work_sync(&dp->attention_work);
  1228. flush_workqueue(dp->wq);
  1229. /*
  1230. * Delay the teardown of the mainlink for better interop experience.
  1231. * It is possible that certain sinks can issue an HPD high immediately
  1232. * following an HPD low as soon as they detect the mainlink being
  1233. * turned off. This can sometimes result in the HPD low pulse getting
  1234. * lost with certain cable. This issue is commonly seen when running
  1235. * DP LL CTS test 4.2.1.3.
  1236. */
  1237. disconnect_delay_ms = min_t(u32, dp->debug->disconnect_delay_ms,
  1238. (u32) MAX_DISCONNECT_DELAY_MS);
  1239. DP_DEBUG("disconnect delay = %d ms\n", disconnect_delay_ms);
  1240. msleep(disconnect_delay_ms);
  1241. dp_display_handle_disconnect(dp);
  1242. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state,
  1243. disconnect_delay_ms);
  1244. }
  1245. static int dp_display_usbpd_disconnect_cb(struct device *dev)
  1246. {
  1247. int rc = 0;
  1248. struct dp_display_private *dp;
  1249. if (!dev) {
  1250. DP_ERR("invalid dev\n");
  1251. rc = -EINVAL;
  1252. goto end;
  1253. }
  1254. dp = dev_get_drvdata(dev);
  1255. if (!dp) {
  1256. DP_ERR("no driver data found\n");
  1257. rc = -ENODEV;
  1258. goto end;
  1259. }
  1260. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state,
  1261. dp->debug->psm_enabled);
  1262. /* skip if a disconnect is already in progress */
  1263. if (dp_display_state_is(DP_STATE_ABORTED) &&
  1264. dp_display_state_is(DP_STATE_READY)) {
  1265. DP_DEBUG("disconnect already in progress\n");
  1266. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_CASE1, dp->state);
  1267. return 0;
  1268. }
  1269. if (dp->debug->psm_enabled && dp_display_state_is(DP_STATE_READY))
  1270. dp->link->psm_config(dp->link, &dp->panel->link_info, true);
  1271. dp_display_disconnect_sync(dp);
  1272. mutex_lock(&dp->session_lock);
  1273. dp_display_host_deinit(dp);
  1274. dp_display_state_remove(DP_STATE_CONFIGURED);
  1275. mutex_unlock(&dp->session_lock);
  1276. if (!dp->debug->sim_mode && !dp->parser->no_aux_switch
  1277. && !dp->parser->gpio_aux_switch)
  1278. dp->aux->aux_switch(dp->aux, false, ORIENTATION_NONE);
  1279. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state);
  1280. end:
  1281. return rc;
  1282. }
  1283. static int dp_display_stream_enable(struct dp_display_private *dp,
  1284. struct dp_panel *dp_panel)
  1285. {
  1286. int rc = 0;
  1287. rc = dp->ctrl->stream_on(dp->ctrl, dp_panel);
  1288. if (dp->debug->tpg_state)
  1289. dp_panel->tpg_config(dp_panel, true);
  1290. if (!rc) {
  1291. dp->active_panels[dp_panel->stream_id] = dp_panel;
  1292. dp->active_stream_cnt++;
  1293. }
  1294. dp_display_update_dsc_resources(dp, dp_panel, true);
  1295. DP_DEBUG("dp active_stream_cnt:%d, tot_dsc_blks_in_use=%d\n",
  1296. dp->active_stream_cnt, dp->tot_dsc_blks_in_use);
  1297. return rc;
  1298. }
  1299. static void dp_display_mst_attention(struct dp_display_private *dp)
  1300. {
  1301. if (dp->mst.mst_active && dp->mst.cbs.hpd_irq)
  1302. dp->mst.cbs.hpd_irq(&dp->dp_display);
  1303. DP_MST_DEBUG("mst_attention_work. mst_active:%d\n", dp->mst.mst_active);
  1304. }
  1305. static void dp_display_attention_work(struct work_struct *work)
  1306. {
  1307. struct dp_display_private *dp = container_of(work,
  1308. struct dp_display_private, attention_work);
  1309. int rc = 0;
  1310. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  1311. mutex_lock(&dp->session_lock);
  1312. SDE_EVT32_EXTERNAL(dp->state);
  1313. if (dp_display_state_is(DP_STATE_ABORTED)) {
  1314. DP_INFO("Hpd off, not handling any attention\n");
  1315. mutex_unlock(&dp->session_lock);
  1316. goto exit;
  1317. }
  1318. if (!dp_display_state_is(DP_STATE_READY)) {
  1319. mutex_unlock(&dp->session_lock);
  1320. goto mst_attention;
  1321. }
  1322. if (dp->link->process_request(dp->link)) {
  1323. mutex_unlock(&dp->session_lock);
  1324. goto cp_irq;
  1325. }
  1326. mutex_unlock(&dp->session_lock);
  1327. SDE_EVT32_EXTERNAL(dp->state, dp->link->sink_request);
  1328. if (dp->link->sink_request & DS_PORT_STATUS_CHANGED) {
  1329. SDE_EVT32_EXTERNAL(dp->state, DS_PORT_STATUS_CHANGED);
  1330. if (dp_display_is_sink_count_zero(dp)) {
  1331. dp_display_handle_disconnect(dp);
  1332. } else {
  1333. /*
  1334. * connect work should take care of sending
  1335. * the HPD notification.
  1336. */
  1337. if (!dp->mst.mst_active)
  1338. queue_work(dp->wq, &dp->connect_work);
  1339. }
  1340. goto mst_attention;
  1341. }
  1342. if (dp->link->sink_request & DP_TEST_LINK_VIDEO_PATTERN) {
  1343. SDE_EVT32_EXTERNAL(dp->state, DP_TEST_LINK_VIDEO_PATTERN);
  1344. dp_display_handle_disconnect(dp);
  1345. dp->panel->video_test = true;
  1346. /*
  1347. * connect work should take care of sending
  1348. * the HPD notification.
  1349. */
  1350. queue_work(dp->wq, &dp->connect_work);
  1351. goto mst_attention;
  1352. }
  1353. if (dp->link->sink_request & (DP_TEST_LINK_PHY_TEST_PATTERN |
  1354. DP_TEST_LINK_TRAINING | DP_LINK_STATUS_UPDATED)) {
  1355. mutex_lock(&dp->session_lock);
  1356. dp_audio_enable(dp, false);
  1357. if (dp->link->sink_request & DP_TEST_LINK_PHY_TEST_PATTERN) {
  1358. SDE_EVT32_EXTERNAL(dp->state,
  1359. DP_TEST_LINK_PHY_TEST_PATTERN);
  1360. dp->ctrl->process_phy_test_request(dp->ctrl);
  1361. }
  1362. if (dp->link->sink_request & DP_TEST_LINK_TRAINING) {
  1363. SDE_EVT32_EXTERNAL(dp->state, DP_TEST_LINK_TRAINING);
  1364. dp->link->send_test_response(dp->link);
  1365. rc = dp->ctrl->link_maintenance(dp->ctrl);
  1366. }
  1367. if (dp->link->sink_request & DP_LINK_STATUS_UPDATED) {
  1368. SDE_EVT32_EXTERNAL(dp->state, DP_LINK_STATUS_UPDATED);
  1369. rc = dp->ctrl->link_maintenance(dp->ctrl);
  1370. }
  1371. if (!rc)
  1372. dp_audio_enable(dp, true);
  1373. mutex_unlock(&dp->session_lock);
  1374. if (rc)
  1375. goto exit;
  1376. if (dp->link->sink_request & (DP_TEST_LINK_PHY_TEST_PATTERN |
  1377. DP_TEST_LINK_TRAINING))
  1378. goto mst_attention;
  1379. }
  1380. cp_irq:
  1381. if (dp_display_is_hdcp_enabled(dp) && dp->hdcp.ops->cp_irq)
  1382. dp->hdcp.ops->cp_irq(dp->hdcp.data);
  1383. if (!dp->mst.mst_active) {
  1384. /*
  1385. * It is possible that the connect_work skipped sending
  1386. * the HPD notification if the attention message was
  1387. * already pending. Send the notification here to
  1388. * account for that. This is not needed if this
  1389. * attention work was handling a test request
  1390. */
  1391. dp_display_send_hpd_notification(dp);
  1392. }
  1393. mst_attention:
  1394. dp_display_mst_attention(dp);
  1395. exit:
  1396. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state);
  1397. }
  1398. static int dp_display_usbpd_attention_cb(struct device *dev)
  1399. {
  1400. struct dp_display_private *dp;
  1401. if (!dev) {
  1402. DP_ERR("invalid dev\n");
  1403. return -EINVAL;
  1404. }
  1405. dp = dev_get_drvdata(dev);
  1406. if (!dp) {
  1407. DP_ERR("no driver data found\n");
  1408. return -ENODEV;
  1409. }
  1410. DP_DEBUG("hpd_irq:%d, hpd_high:%d, power_on:%d, is_connected:%d\n",
  1411. dp->hpd->hpd_irq, dp->hpd->hpd_high,
  1412. !!dp_display_state_is(DP_STATE_ENABLED),
  1413. !!dp_display_state_is(DP_STATE_CONNECTED));
  1414. SDE_EVT32_EXTERNAL(dp->state, dp->hpd->hpd_irq, dp->hpd->hpd_high,
  1415. !!dp_display_state_is(DP_STATE_ENABLED),
  1416. !!dp_display_state_is(DP_STATE_CONNECTED));
  1417. if (!dp->hpd->hpd_high) {
  1418. dp_display_disconnect_sync(dp);
  1419. return 0;
  1420. }
  1421. /*
  1422. * Ignore all the attention messages except HPD LOW when TUI is
  1423. * active, so user mode can be notified of the disconnect event. This
  1424. * allows user mode to tear down the control path after the TUI
  1425. * session is over. Ideally this should never happen, but on the off
  1426. * chance that there is a race condition in which there is a IRQ HPD
  1427. * during tear down of DP at TUI start then this check might help avoid
  1428. * a potential issue accessing registers in attention processing.
  1429. */
  1430. if (dp_display_state_is(DP_STATE_TUI_ACTIVE)) {
  1431. DP_WARN("TUI is active\n");
  1432. return 0;
  1433. }
  1434. if (dp->hpd->hpd_irq && dp_display_state_is(DP_STATE_READY)) {
  1435. queue_work(dp->wq, &dp->attention_work);
  1436. complete_all(&dp->attention_comp);
  1437. } else if (dp->process_hpd_connect ||
  1438. !dp_display_state_is(DP_STATE_CONNECTED)) {
  1439. dp_display_state_remove(DP_STATE_ABORTED);
  1440. queue_work(dp->wq, &dp->connect_work);
  1441. } else {
  1442. DP_DEBUG("ignored\n");
  1443. }
  1444. return 0;
  1445. }
  1446. static void dp_display_connect_work(struct work_struct *work)
  1447. {
  1448. int rc = 0;
  1449. struct dp_display_private *dp = container_of(work,
  1450. struct dp_display_private, connect_work);
  1451. if (dp_display_state_is(DP_STATE_TUI_ACTIVE)) {
  1452. dp_display_state_log("[TUI is active]");
  1453. return;
  1454. }
  1455. if (dp_display_state_is(DP_STATE_ABORTED)) {
  1456. DP_WARN("HPD off requested\n");
  1457. return;
  1458. }
  1459. if (!dp->hpd->hpd_high) {
  1460. DP_WARN("Sink disconnected\n");
  1461. return;
  1462. }
  1463. rc = dp_display_process_hpd_high(dp);
  1464. if (!rc && dp->panel->video_test)
  1465. dp->link->send_test_response(dp->link);
  1466. }
  1467. static int dp_display_usb_notifier(struct notifier_block *nb,
  1468. unsigned long action, void *data)
  1469. {
  1470. struct dp_display_private *dp = container_of(nb,
  1471. struct dp_display_private, usb_nb);
  1472. SDE_EVT32_EXTERNAL(dp->state, dp->debug->sim_mode, action);
  1473. if (!action && dp->debug->sim_mode) {
  1474. DP_WARN("usb disconnected during simulation\n");
  1475. dp_display_disconnect_sync(dp);
  1476. dp->debug->abort(dp->debug);
  1477. }
  1478. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state, NOTIFY_DONE);
  1479. return NOTIFY_DONE;
  1480. }
  1481. static void dp_display_register_usb_notifier(struct dp_display_private *dp)
  1482. {
  1483. int rc = 0;
  1484. const char *phandle = "usb-phy";
  1485. struct usb_phy *usbphy;
  1486. usbphy = devm_usb_get_phy_by_phandle(&dp->pdev->dev, phandle, 0);
  1487. if (IS_ERR_OR_NULL(usbphy)) {
  1488. DP_DEBUG("unable to get usbphy\n");
  1489. return;
  1490. }
  1491. dp->usb_nb.notifier_call = dp_display_usb_notifier;
  1492. dp->usb_nb.priority = 2;
  1493. rc = usb_register_notifier(usbphy, &dp->usb_nb);
  1494. if (rc)
  1495. DP_DEBUG("failed to register for usb event: %d\n", rc);
  1496. }
  1497. int dp_display_mmrm_callback(struct mmrm_client_notifier_data *notifier_data)
  1498. {
  1499. struct dss_clk_mmrm_cb *mmrm_cb_data = (struct dss_clk_mmrm_cb *)notifier_data->pvt_data;
  1500. struct dp_display *dp_display = (struct dp_display *)mmrm_cb_data->phandle;
  1501. struct dp_display_private *dp =
  1502. container_of(dp_display, struct dp_display_private, dp_display);
  1503. int ret = 0;
  1504. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state, notifier_data->cb_type);
  1505. if (notifier_data->cb_type == MMRM_CLIENT_RESOURCE_VALUE_CHANGE
  1506. && dp_display_state_is(DP_STATE_ENABLED)
  1507. && !dp_display_state_is(DP_STATE_ABORTED)) {
  1508. ret = dp_display_handle_disconnect(dp);
  1509. if (ret)
  1510. DP_ERR("mmrm callback error reducing clk, ret:%d\n", ret);
  1511. }
  1512. DP_DEBUG("mmrm callback handled, state: 0x%x rc:%d\n", dp->state, ret);
  1513. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state, notifier_data->cb_type);
  1514. return ret;
  1515. }
  1516. static void dp_display_deinit_sub_modules(struct dp_display_private *dp)
  1517. {
  1518. dp_debug_put(dp->debug);
  1519. dp_hpd_put(dp->hpd);
  1520. if (dp->panel)
  1521. dp_audio_put(dp->panel->audio);
  1522. dp_ctrl_put(dp->ctrl);
  1523. dp_panel_put(dp->panel);
  1524. dp_link_put(dp->link);
  1525. dp_power_put(dp->power);
  1526. dp_pll_put(dp->pll);
  1527. dp_aux_put(dp->aux);
  1528. dp_catalog_put(dp->catalog);
  1529. dp_parser_put(dp->parser);
  1530. mutex_destroy(&dp->session_lock);
  1531. }
  1532. static int dp_init_sub_modules(struct dp_display_private *dp)
  1533. {
  1534. int rc = 0;
  1535. bool hdcp_disabled;
  1536. struct device *dev = &dp->pdev->dev;
  1537. struct dp_hpd_cb *cb = &dp->hpd_cb;
  1538. struct dp_ctrl_in ctrl_in = {
  1539. .dev = dev,
  1540. };
  1541. struct dp_panel_in panel_in = {
  1542. .dev = dev,
  1543. };
  1544. struct dp_debug_in debug_in = {
  1545. .dev = dev,
  1546. };
  1547. struct dp_pll_in pll_in = {
  1548. .pdev = dp->pdev,
  1549. };
  1550. mutex_init(&dp->session_lock);
  1551. dp->parser = dp_parser_get(dp->pdev);
  1552. if (IS_ERR(dp->parser)) {
  1553. rc = PTR_ERR(dp->parser);
  1554. DP_ERR("failed to initialize parser, rc = %d\n", rc);
  1555. dp->parser = NULL;
  1556. goto error;
  1557. }
  1558. rc = dp->parser->parse(dp->parser);
  1559. if (rc) {
  1560. DP_ERR("device tree parsing failed\n");
  1561. goto error_catalog;
  1562. }
  1563. g_dp_display->is_mst_supported = dp->parser->has_mst;
  1564. g_dp_display->dsc_cont_pps = dp->parser->dsc_continuous_pps;
  1565. dp->catalog = dp_catalog_get(dev, dp->parser);
  1566. if (IS_ERR(dp->catalog)) {
  1567. rc = PTR_ERR(dp->catalog);
  1568. DP_ERR("failed to initialize catalog, rc = %d\n", rc);
  1569. dp->catalog = NULL;
  1570. goto error_catalog;
  1571. }
  1572. dp->aux = dp_aux_get(dev, &dp->catalog->aux, dp->parser,
  1573. dp->aux_switch_node, dp->aux_bridge);
  1574. if (IS_ERR(dp->aux)) {
  1575. rc = PTR_ERR(dp->aux);
  1576. DP_ERR("failed to initialize aux, rc = %d\n", rc);
  1577. dp->aux = NULL;
  1578. goto error_aux;
  1579. }
  1580. rc = dp->aux->drm_aux_register(dp->aux);
  1581. if (rc) {
  1582. DP_ERR("DRM DP AUX register failed\n");
  1583. goto error_pll;
  1584. }
  1585. pll_in.aux = dp->aux;
  1586. pll_in.parser = dp->parser;
  1587. dp->pll = dp_pll_get(&pll_in);
  1588. if (IS_ERR(dp->pll)) {
  1589. rc = PTR_ERR(dp->pll);
  1590. DP_ERR("failed to initialize pll, rc = %d\n", rc);
  1591. dp->pll = NULL;
  1592. goto error_pll;
  1593. }
  1594. dp->power = dp_power_get(dp->parser, dp->pll);
  1595. if (IS_ERR(dp->power)) {
  1596. rc = PTR_ERR(dp->power);
  1597. DP_ERR("failed to initialize power, rc = %d\n", rc);
  1598. dp->power = NULL;
  1599. goto error_power;
  1600. }
  1601. rc = dp->power->power_client_init(dp->power, &dp->priv->phandle,
  1602. dp->dp_display.drm_dev);
  1603. if (rc) {
  1604. DP_ERR("Power client create failed\n");
  1605. goto error_link;
  1606. }
  1607. rc = dp->power->power_mmrm_init(dp->power, &dp->priv->phandle,
  1608. (void *)&dp->dp_display, dp_display_mmrm_callback);
  1609. if (rc) {
  1610. DP_ERR("failed to initialize mmrm, rc = %d\n", rc);
  1611. goto error_link;
  1612. }
  1613. dp->link = dp_link_get(dev, dp->aux);
  1614. if (IS_ERR(dp->link)) {
  1615. rc = PTR_ERR(dp->link);
  1616. DP_ERR("failed to initialize link, rc = %d\n", rc);
  1617. dp->link = NULL;
  1618. goto error_link;
  1619. }
  1620. panel_in.aux = dp->aux;
  1621. panel_in.catalog = &dp->catalog->panel;
  1622. panel_in.link = dp->link;
  1623. panel_in.connector = dp->dp_display.base_connector;
  1624. panel_in.base_panel = NULL;
  1625. panel_in.parser = dp->parser;
  1626. dp->panel = dp_panel_get(&panel_in);
  1627. if (IS_ERR(dp->panel)) {
  1628. rc = PTR_ERR(dp->panel);
  1629. DP_ERR("failed to initialize panel, rc = %d\n", rc);
  1630. dp->panel = NULL;
  1631. goto error_panel;
  1632. }
  1633. ctrl_in.link = dp->link;
  1634. ctrl_in.panel = dp->panel;
  1635. ctrl_in.aux = dp->aux;
  1636. ctrl_in.power = dp->power;
  1637. ctrl_in.catalog = &dp->catalog->ctrl;
  1638. ctrl_in.parser = dp->parser;
  1639. ctrl_in.pll = dp->pll;
  1640. dp->ctrl = dp_ctrl_get(&ctrl_in);
  1641. if (IS_ERR(dp->ctrl)) {
  1642. rc = PTR_ERR(dp->ctrl);
  1643. DP_ERR("failed to initialize ctrl, rc = %d\n", rc);
  1644. dp->ctrl = NULL;
  1645. goto error_ctrl;
  1646. }
  1647. dp->panel->audio = dp_audio_get(dp->pdev, dp->panel,
  1648. &dp->catalog->audio);
  1649. if (IS_ERR(dp->panel->audio)) {
  1650. rc = PTR_ERR(dp->panel->audio);
  1651. DP_ERR("failed to initialize audio, rc = %d\n", rc);
  1652. dp->panel->audio = NULL;
  1653. goto error_audio;
  1654. }
  1655. memset(&dp->mst, 0, sizeof(dp->mst));
  1656. dp->active_stream_cnt = 0;
  1657. cb->configure = dp_display_usbpd_configure_cb;
  1658. cb->disconnect = dp_display_usbpd_disconnect_cb;
  1659. cb->attention = dp_display_usbpd_attention_cb;
  1660. dp->hpd = dp_hpd_get(dev, dp->parser, &dp->catalog->hpd,
  1661. dp->aux_bridge, cb);
  1662. if (IS_ERR(dp->hpd)) {
  1663. rc = PTR_ERR(dp->hpd);
  1664. DP_ERR("failed to initialize hpd, rc = %d\n", rc);
  1665. dp->hpd = NULL;
  1666. goto error_hpd;
  1667. }
  1668. hdcp_disabled = !!dp_display_initialize_hdcp(dp);
  1669. debug_in.panel = dp->panel;
  1670. debug_in.hpd = dp->hpd;
  1671. debug_in.link = dp->link;
  1672. debug_in.aux = dp->aux;
  1673. debug_in.connector = &dp->dp_display.base_connector;
  1674. debug_in.catalog = dp->catalog;
  1675. debug_in.parser = dp->parser;
  1676. debug_in.ctrl = dp->ctrl;
  1677. debug_in.pll = dp->pll;
  1678. debug_in.display = &dp->dp_display;
  1679. dp->debug = dp_debug_get(&debug_in);
  1680. if (IS_ERR(dp->debug)) {
  1681. rc = PTR_ERR(dp->debug);
  1682. DP_ERR("failed to initialize debug, rc = %d\n", rc);
  1683. dp->debug = NULL;
  1684. goto error_debug;
  1685. }
  1686. dp->cached_connector_status = connector_status_disconnected;
  1687. dp->tot_dsc_blks_in_use = 0;
  1688. dp->debug->hdcp_disabled = hdcp_disabled;
  1689. dp_display_update_hdcp_status(dp, true);
  1690. dp_display_register_usb_notifier(dp);
  1691. if (dp->hpd->register_hpd) {
  1692. rc = dp->hpd->register_hpd(dp->hpd);
  1693. if (rc) {
  1694. DP_ERR("failed register hpd\n");
  1695. goto error_hpd_reg;
  1696. }
  1697. }
  1698. return rc;
  1699. error_hpd_reg:
  1700. dp_debug_put(dp->debug);
  1701. error_debug:
  1702. dp_hpd_put(dp->hpd);
  1703. error_hpd:
  1704. dp_audio_put(dp->panel->audio);
  1705. error_audio:
  1706. dp_ctrl_put(dp->ctrl);
  1707. error_ctrl:
  1708. dp_panel_put(dp->panel);
  1709. error_panel:
  1710. dp_link_put(dp->link);
  1711. error_link:
  1712. dp_power_put(dp->power);
  1713. error_power:
  1714. dp_pll_put(dp->pll);
  1715. error_pll:
  1716. dp_aux_put(dp->aux);
  1717. error_aux:
  1718. dp_catalog_put(dp->catalog);
  1719. error_catalog:
  1720. dp_parser_put(dp->parser);
  1721. error:
  1722. mutex_destroy(&dp->session_lock);
  1723. return rc;
  1724. }
  1725. static int dp_display_post_init(struct dp_display *dp_display)
  1726. {
  1727. int rc = 0;
  1728. struct dp_display_private *dp;
  1729. if (!dp_display) {
  1730. DP_ERR("invalid input\n");
  1731. rc = -EINVAL;
  1732. goto end;
  1733. }
  1734. dp = container_of(dp_display, struct dp_display_private, dp_display);
  1735. if (IS_ERR_OR_NULL(dp)) {
  1736. DP_ERR("invalid params\n");
  1737. rc = -EINVAL;
  1738. goto end;
  1739. }
  1740. rc = dp_init_sub_modules(dp);
  1741. if (rc)
  1742. goto end;
  1743. dp_display->post_init = NULL;
  1744. end:
  1745. DP_DEBUG("%s\n", rc ? "failed" : "success");
  1746. return rc;
  1747. }
  1748. static int dp_display_set_mode(struct dp_display *dp_display, void *panel,
  1749. struct dp_display_mode *mode)
  1750. {
  1751. const u32 num_components = 3, default_bpp = 24;
  1752. struct dp_display_private *dp;
  1753. struct dp_panel *dp_panel;
  1754. if (!dp_display || !panel) {
  1755. DP_ERR("invalid input\n");
  1756. return -EINVAL;
  1757. }
  1758. dp_panel = panel;
  1759. if (!dp_panel->connector) {
  1760. DP_ERR("invalid connector input\n");
  1761. return -EINVAL;
  1762. }
  1763. dp = container_of(dp_display, struct dp_display_private, dp_display);
  1764. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state,
  1765. mode->timing.h_active, mode->timing.v_active,
  1766. mode->timing.refresh_rate);
  1767. mutex_lock(&dp->session_lock);
  1768. mode->timing.bpp =
  1769. dp_panel->connector->display_info.bpc * num_components;
  1770. if (!mode->timing.bpp)
  1771. mode->timing.bpp = default_bpp;
  1772. mode->timing.bpp = dp->panel->get_mode_bpp(dp->panel,
  1773. mode->timing.bpp, mode->timing.pixel_clk_khz);
  1774. dp_panel->pinfo = mode->timing;
  1775. mutex_unlock(&dp->session_lock);
  1776. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state);
  1777. return 0;
  1778. }
  1779. static int dp_display_prepare(struct dp_display *dp_display, void *panel)
  1780. {
  1781. struct dp_display_private *dp;
  1782. struct dp_panel *dp_panel;
  1783. int rc = 0;
  1784. if (!dp_display || !panel) {
  1785. DP_ERR("invalid input\n");
  1786. return -EINVAL;
  1787. }
  1788. dp_panel = panel;
  1789. if (!dp_panel->connector) {
  1790. DP_ERR("invalid connector input\n");
  1791. return -EINVAL;
  1792. }
  1793. dp = container_of(dp_display, struct dp_display_private, dp_display);
  1794. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  1795. mutex_lock(&dp->session_lock);
  1796. /*
  1797. * If DP video session is restored by the userspace after display
  1798. * disconnect notification from dongle i.e. typeC cable connected to
  1799. * source but disconnected at the display side, the DP controller is
  1800. * not restored to the desired configured state. So, ensure host_init
  1801. * is executed in such a scenario so that all the DP controller
  1802. * resources are enabled for the next connection event.
  1803. */
  1804. if (dp_display_state_is(DP_STATE_SRC_PWRDN) &&
  1805. dp_display_state_is(DP_STATE_CONFIGURED)) {
  1806. rc = dp_display_host_init(dp);
  1807. if (rc) {
  1808. /*
  1809. * Skip all the events that are similar to abort case, just that
  1810. * the stream clks should be enabled so that no commit failure can
  1811. * be seen.
  1812. */
  1813. DP_ERR("Host init failed.\n");
  1814. goto end;
  1815. }
  1816. /*
  1817. * Remove DP_STATE_SRC_PWRDN flag on successful host_init to
  1818. * prevent cases such as below.
  1819. * 1. MST stream 1 failed to do host init then stream 2 can retry again.
  1820. * 2. Resume path fails, now sink sends hpd_high=0 and hpd_high=1.
  1821. */
  1822. dp_display_state_remove(DP_STATE_SRC_PWRDN);
  1823. }
  1824. /*
  1825. * If the physical connection to the sink is already lost by the time
  1826. * we try to set up the connection, we can just skip all the steps
  1827. * here safely.
  1828. */
  1829. if (dp_display_state_is(DP_STATE_ABORTED)) {
  1830. dp_display_state_log("[aborted]");
  1831. goto end;
  1832. }
  1833. /*
  1834. * If DP_STATE_ENABLED, there is nothing left to do.
  1835. * However, this should not happen ideally. So, log this.
  1836. */
  1837. if (dp_display_state_is(DP_STATE_ENABLED)) {
  1838. dp_display_state_show("[already enabled]");
  1839. goto end;
  1840. }
  1841. if (!dp_display_is_ready(dp)) {
  1842. dp_display_state_show("[not ready]");
  1843. goto end;
  1844. }
  1845. /* For supporting DP_PANEL_SRC_INITIATED_POWER_DOWN case */
  1846. dp_display_host_ready(dp);
  1847. if (dp->debug->psm_enabled) {
  1848. dp->link->psm_config(dp->link, &dp->panel->link_info, false);
  1849. dp->debug->psm_enabled = false;
  1850. }
  1851. /*
  1852. * Execute the dp controller power on in shallow mode here.
  1853. * In normal cases, controller should have been powered on
  1854. * by now. In some cases like suspend/resume or framework
  1855. * reboot, we end up here without a powered on controller.
  1856. * Cable may have been removed in suspended state. In that
  1857. * case, link training is bound to fail on system resume.
  1858. * So, we execute in shallow mode here to do only minimal
  1859. * and required things.
  1860. */
  1861. rc = dp->ctrl->on(dp->ctrl, dp->mst.mst_active, dp_panel->fec_en,
  1862. dp_panel->dsc_en, true);
  1863. if (rc)
  1864. goto end;
  1865. end:
  1866. mutex_unlock(&dp->session_lock);
  1867. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state, rc);
  1868. return rc;
  1869. }
  1870. static int dp_display_set_stream_info(struct dp_display *dp_display,
  1871. void *panel, u32 strm_id, u32 start_slot,
  1872. u32 num_slots, u32 pbn, int vcpi)
  1873. {
  1874. int rc = 0;
  1875. struct dp_panel *dp_panel;
  1876. struct dp_display_private *dp;
  1877. const int max_slots = 64;
  1878. if (!dp_display) {
  1879. DP_ERR("invalid input\n");
  1880. return -EINVAL;
  1881. }
  1882. if (strm_id >= DP_STREAM_MAX) {
  1883. DP_ERR("invalid stream id:%d\n", strm_id);
  1884. return -EINVAL;
  1885. }
  1886. if (start_slot + num_slots > max_slots) {
  1887. DP_ERR("invalid channel info received. start:%d, slots:%d\n",
  1888. start_slot, num_slots);
  1889. return -EINVAL;
  1890. }
  1891. dp = container_of(dp_display, struct dp_display_private, dp_display);
  1892. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state, strm_id,
  1893. start_slot, num_slots);
  1894. mutex_lock(&dp->session_lock);
  1895. dp->ctrl->set_mst_channel_info(dp->ctrl, strm_id,
  1896. start_slot, num_slots);
  1897. if (panel) {
  1898. dp_panel = panel;
  1899. dp_panel->set_stream_info(dp_panel, strm_id, start_slot,
  1900. num_slots, pbn, vcpi);
  1901. }
  1902. mutex_unlock(&dp->session_lock);
  1903. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state, rc);
  1904. return rc;
  1905. }
  1906. static int dp_display_enable(struct dp_display *dp_display, void *panel)
  1907. {
  1908. int rc = 0;
  1909. struct dp_display_private *dp;
  1910. if (!dp_display || !panel) {
  1911. DP_ERR("invalid input\n");
  1912. return -EINVAL;
  1913. }
  1914. dp = container_of(dp_display, struct dp_display_private, dp_display);
  1915. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  1916. mutex_lock(&dp->session_lock);
  1917. /*
  1918. * If DP_STATE_READY is not set, we should not do any HW
  1919. * programming.
  1920. */
  1921. if (!dp_display_state_is(DP_STATE_READY)) {
  1922. dp_display_state_show("[host not ready]");
  1923. goto end;
  1924. }
  1925. /*
  1926. * It is possible that by the time we get call back to establish
  1927. * the DP pipeline e2e, the physical DP connection to the sink is
  1928. * already lost. In such cases, the DP_STATE_ABORTED would be set.
  1929. * However, it is necessary to NOT abort the display setup here so as
  1930. * to ensure that the rest of the system is in a stable state prior to
  1931. * handling the disconnect notification.
  1932. */
  1933. if (dp_display_state_is(DP_STATE_ABORTED))
  1934. dp_display_state_log("[aborted, but continue on]");
  1935. rc = dp_display_stream_enable(dp, panel);
  1936. if (rc)
  1937. goto end;
  1938. dp_display_state_add(DP_STATE_ENABLED);
  1939. end:
  1940. mutex_unlock(&dp->session_lock);
  1941. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state, rc);
  1942. return rc;
  1943. }
  1944. static void dp_display_stream_post_enable(struct dp_display_private *dp,
  1945. struct dp_panel *dp_panel)
  1946. {
  1947. dp_panel->spd_config(dp_panel);
  1948. dp_panel->setup_hdr(dp_panel, NULL, false, 0, true);
  1949. }
  1950. static int dp_display_post_enable(struct dp_display *dp_display, void *panel)
  1951. {
  1952. struct dp_display_private *dp;
  1953. struct dp_panel *dp_panel;
  1954. if (!dp_display || !panel) {
  1955. DP_ERR("invalid input\n");
  1956. return -EINVAL;
  1957. }
  1958. dp = container_of(dp_display, struct dp_display_private, dp_display);
  1959. dp_panel = panel;
  1960. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  1961. mutex_lock(&dp->session_lock);
  1962. /*
  1963. * If DP_STATE_READY is not set, we should not do any HW
  1964. * programming.
  1965. */
  1966. if (!dp_display_state_is(DP_STATE_ENABLED)) {
  1967. dp_display_state_show("[not enabled]");
  1968. goto end;
  1969. }
  1970. /*
  1971. * If the physical connection to the sink is already lost by the time
  1972. * we try to set up the connection, we can just skip all the steps
  1973. * here safely.
  1974. */
  1975. if (dp_display_state_is(DP_STATE_ABORTED)) {
  1976. dp_display_state_log("[aborted]");
  1977. goto end;
  1978. }
  1979. if (!dp_display_is_ready(dp) || !dp_display_state_is(DP_STATE_READY)) {
  1980. dp_display_state_show("[not ready]");
  1981. goto end;
  1982. }
  1983. dp_display_stream_post_enable(dp, dp_panel);
  1984. cancel_delayed_work_sync(&dp->hdcp_cb_work);
  1985. queue_delayed_work(dp->wq, &dp->hdcp_cb_work, HZ);
  1986. if (dp_panel->audio_supported) {
  1987. dp_panel->audio->bw_code = dp->link->link_params.bw_code;
  1988. dp_panel->audio->lane_count = dp->link->link_params.lane_count;
  1989. dp_panel->audio->on(dp_panel->audio);
  1990. }
  1991. end:
  1992. dp->aux->state |= DP_STATE_CTRL_POWERED_ON;
  1993. complete_all(&dp->notification_comp);
  1994. mutex_unlock(&dp->session_lock);
  1995. DP_DEBUG("display post enable complete. state: 0x%x\n", dp->state);
  1996. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state);
  1997. return 0;
  1998. }
  1999. static void dp_display_clear_colorspaces(struct dp_display *dp_display)
  2000. {
  2001. struct drm_connector *connector;
  2002. struct sde_connector *sde_conn;
  2003. connector = dp_display->base_connector;
  2004. sde_conn = to_sde_connector(connector);
  2005. sde_conn->color_enc_fmt = 0;
  2006. }
  2007. static int dp_display_pre_disable(struct dp_display *dp_display, void *panel)
  2008. {
  2009. struct dp_display_private *dp;
  2010. struct dp_panel *dp_panel = panel;
  2011. struct dp_link_hdcp_status *status;
  2012. int rc = 0;
  2013. size_t i;
  2014. if (!dp_display || !panel) {
  2015. DP_ERR("invalid input\n");
  2016. return -EINVAL;
  2017. }
  2018. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2019. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  2020. mutex_lock(&dp->session_lock);
  2021. status = &dp->link->hdcp_status;
  2022. if (!dp_display_state_is(DP_STATE_ENABLED)) {
  2023. dp_display_state_show("[not enabled]");
  2024. goto end;
  2025. }
  2026. dp_display_state_add(DP_STATE_HDCP_ABORTED);
  2027. cancel_delayed_work_sync(&dp->hdcp_cb_work);
  2028. if (dp_display_is_hdcp_enabled(dp) &&
  2029. status->hdcp_state != HDCP_STATE_INACTIVE) {
  2030. bool off = true;
  2031. if (dp_display_state_is(DP_STATE_SUSPENDED)) {
  2032. DP_DEBUG("Can't perform HDCP cleanup while suspended. Defer\n");
  2033. dp->hdcp_delayed_off = true;
  2034. goto clean;
  2035. }
  2036. flush_delayed_work(&dp->hdcp_cb_work);
  2037. if (dp->mst.mst_active) {
  2038. dp_display_hdcp_deregister_stream(dp,
  2039. dp_panel->stream_id);
  2040. for (i = DP_STREAM_0; i < DP_STREAM_MAX; i++) {
  2041. if (i != dp_panel->stream_id &&
  2042. dp->active_panels[i]) {
  2043. DP_DEBUG("Streams are still active. Skip disabling HDCP\n");
  2044. off = false;
  2045. }
  2046. }
  2047. }
  2048. if (off) {
  2049. if (dp->hdcp.ops->off)
  2050. dp->hdcp.ops->off(dp->hdcp.data);
  2051. dp_display_update_hdcp_status(dp, true);
  2052. }
  2053. }
  2054. dp_display_clear_colorspaces(dp_display);
  2055. clean:
  2056. if (dp_panel->audio_supported)
  2057. dp_panel->audio->off(dp_panel->audio);
  2058. rc = dp_display_stream_pre_disable(dp, dp_panel);
  2059. end:
  2060. mutex_unlock(&dp->session_lock);
  2061. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state);
  2062. return 0;
  2063. }
  2064. static int dp_display_disable(struct dp_display *dp_display, void *panel)
  2065. {
  2066. int i;
  2067. struct dp_display_private *dp = NULL;
  2068. struct dp_panel *dp_panel = NULL;
  2069. struct dp_link_hdcp_status *status;
  2070. if (!dp_display || !panel) {
  2071. DP_ERR("invalid input\n");
  2072. return -EINVAL;
  2073. }
  2074. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2075. dp_panel = panel;
  2076. status = &dp->link->hdcp_status;
  2077. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  2078. mutex_lock(&dp->session_lock);
  2079. if (!dp_display_state_is(DP_STATE_ENABLED)) {
  2080. dp_display_state_show("[not enabled]");
  2081. goto end;
  2082. }
  2083. if (!dp_display_state_is(DP_STATE_READY)) {
  2084. dp_display_state_show("[not ready]");
  2085. goto end;
  2086. }
  2087. dp_display_stream_disable(dp, dp_panel);
  2088. dp_display_state_remove(DP_STATE_HDCP_ABORTED);
  2089. for (i = DP_STREAM_0; i < DP_STREAM_MAX; i++) {
  2090. if (dp->active_panels[i]) {
  2091. if (status->hdcp_state != HDCP_STATE_AUTHENTICATED)
  2092. queue_delayed_work(dp->wq, &dp->hdcp_cb_work,
  2093. HZ/4);
  2094. break;
  2095. }
  2096. }
  2097. end:
  2098. mutex_unlock(&dp->session_lock);
  2099. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state);
  2100. return 0;
  2101. }
  2102. static int dp_request_irq(struct dp_display *dp_display)
  2103. {
  2104. int rc = 0;
  2105. struct dp_display_private *dp;
  2106. if (!dp_display) {
  2107. DP_ERR("invalid input\n");
  2108. return -EINVAL;
  2109. }
  2110. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2111. dp->irq = irq_of_parse_and_map(dp->pdev->dev.of_node, 0);
  2112. if (dp->irq < 0) {
  2113. rc = dp->irq;
  2114. DP_ERR("failed to get irq: %d\n", rc);
  2115. return rc;
  2116. }
  2117. rc = devm_request_irq(&dp->pdev->dev, dp->irq, dp_display_irq,
  2118. IRQF_TRIGGER_HIGH, "dp_display_isr", dp);
  2119. if (rc < 0) {
  2120. DP_ERR("failed to request IRQ%u: %d\n",
  2121. dp->irq, rc);
  2122. return rc;
  2123. }
  2124. disable_irq(dp->irq);
  2125. return 0;
  2126. }
  2127. static struct dp_debug *dp_get_debug(struct dp_display *dp_display)
  2128. {
  2129. struct dp_display_private *dp;
  2130. if (!dp_display) {
  2131. DP_ERR("invalid input\n");
  2132. return ERR_PTR(-EINVAL);
  2133. }
  2134. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2135. return dp->debug;
  2136. }
  2137. static int dp_display_unprepare(struct dp_display *dp_display, void *panel)
  2138. {
  2139. struct dp_display_private *dp;
  2140. struct dp_panel *dp_panel = panel;
  2141. u32 flags = 0;
  2142. if (!dp_display || !panel) {
  2143. DP_ERR("invalid input\n");
  2144. return -EINVAL;
  2145. }
  2146. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2147. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  2148. mutex_lock(&dp->session_lock);
  2149. /*
  2150. * Check if the power off sequence was triggered
  2151. * by a source initialated action like framework
  2152. * reboot or suspend-resume but not from normal
  2153. * hot plug. If connector is in MST mode, skip
  2154. * powering down host as aux needs to be kept
  2155. * alive to handle hot-plug sideband message.
  2156. */
  2157. if (dp_display_is_ready(dp) &&
  2158. (dp_display_state_is(DP_STATE_SUSPENDED) ||
  2159. !dp->mst.mst_active))
  2160. flags |= DP_PANEL_SRC_INITIATED_POWER_DOWN;
  2161. if (dp->active_stream_cnt)
  2162. goto end;
  2163. if (flags & DP_PANEL_SRC_INITIATED_POWER_DOWN) {
  2164. dp->link->psm_config(dp->link, &dp->panel->link_info, true);
  2165. dp->debug->psm_enabled = true;
  2166. dp->ctrl->off(dp->ctrl);
  2167. dp_display_host_unready(dp);
  2168. dp_display_host_deinit(dp);
  2169. dp_display_state_add(DP_STATE_SRC_PWRDN);
  2170. }
  2171. dp_display_state_remove(DP_STATE_ENABLED);
  2172. dp->aux->state = DP_STATE_CTRL_POWERED_OFF;
  2173. complete_all(&dp->notification_comp);
  2174. /* log this as it results from user action of cable dis-connection */
  2175. DP_INFO("[OK]\n");
  2176. end:
  2177. dp_panel->deinit(dp_panel, flags);
  2178. mutex_unlock(&dp->session_lock);
  2179. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state);
  2180. return 0;
  2181. }
  2182. static int dp_display_validate_link_clock(struct dp_display_private *dp,
  2183. struct drm_display_mode *mode, struct dp_display_mode dp_mode)
  2184. {
  2185. u32 mode_rate_khz = 0, supported_rate_khz = 0, mode_bpp = 0;
  2186. bool dsc_en;
  2187. int rate;
  2188. dsc_en = (dp_mode.timing.comp_info.comp_ratio > 1) ? true : false;
  2189. mode_bpp = dsc_en ?
  2190. DSC_BPP(dp_mode.timing.comp_info.dsc_info.config)
  2191. : dp_mode.timing.bpp;
  2192. mode_rate_khz = mode->clock * mode_bpp;
  2193. rate = drm_dp_bw_code_to_link_rate(dp->link->link_params.bw_code);
  2194. supported_rate_khz = dp->link->link_params.lane_count * rate * 8;
  2195. if (mode_rate_khz > supported_rate_khz) {
  2196. DP_DEBUG("mode_rate: %d kHz, supported_rate: %d kHz\n",
  2197. mode_rate_khz, supported_rate_khz);
  2198. return -EPERM;
  2199. }
  2200. return 0;
  2201. }
  2202. static int dp_display_validate_pixel_clock(struct dp_display_mode dp_mode,
  2203. u32 max_pclk_khz)
  2204. {
  2205. u32 pclk_khz = dp_mode.timing.widebus_en ?
  2206. (dp_mode.timing.pixel_clk_khz >> 1) :
  2207. dp_mode.timing.pixel_clk_khz;
  2208. if (pclk_khz > max_pclk_khz) {
  2209. DP_DEBUG("clk: %d kHz, max: %d kHz\n", pclk_khz, max_pclk_khz);
  2210. return -EPERM;
  2211. }
  2212. return 0;
  2213. }
  2214. static int dp_display_validate_mixers(struct msm_drm_private *priv,
  2215. struct drm_display_mode *mode,
  2216. const struct msm_resource_caps_info *avail_res)
  2217. {
  2218. int rc;
  2219. u32 num_lm = 0;
  2220. rc = msm_get_mixer_count(priv, mode, avail_res, &num_lm);
  2221. if (rc) {
  2222. DP_ERR("error getting mixer count. rc:%d\n", rc);
  2223. return rc;
  2224. }
  2225. if (num_lm > avail_res->num_lm) {
  2226. DP_DEBUG("num lm:%d > available lm:%d\n", num_lm,
  2227. avail_res->num_lm);
  2228. return -EPERM;
  2229. }
  2230. return 0;
  2231. }
  2232. static int dp_display_validate_dscs(struct msm_drm_private *priv,
  2233. struct dp_panel *dp_panel, struct drm_display_mode *mode,
  2234. struct dp_display_mode *dp_mode,
  2235. const struct msm_resource_caps_info *avail_res)
  2236. {
  2237. int rc;
  2238. u32 num_dsc = 0;
  2239. bool dsc_capable = dp_mode->capabilities & DP_PANEL_CAPS_DSC;
  2240. if (!dp_panel->dsc_en || !dsc_capable)
  2241. return 0;
  2242. rc = msm_get_dsc_count(priv, mode->hdisplay, &num_dsc);
  2243. if (rc) {
  2244. DP_ERR("error getting dsc count. rc:%d\n", rc);
  2245. return rc;
  2246. }
  2247. if (num_dsc > avail_res->num_dsc) {
  2248. DP_DEBUG("num dsc:%d > available dsc:%d\n", num_dsc,
  2249. avail_res->num_dsc);
  2250. return -EPERM;
  2251. }
  2252. return 0;
  2253. }
  2254. static int dp_display_validate_topology(struct dp_display_private *dp,
  2255. struct dp_panel *dp_panel, struct drm_display_mode *mode,
  2256. struct dp_display_mode *dp_mode,
  2257. const struct msm_resource_caps_info *avail_res)
  2258. {
  2259. int rc;
  2260. struct msm_drm_private *priv = dp->priv;
  2261. const u32 dual_lm = 2, quad_lm = 4;
  2262. u32 num_lm = 0, num_dsc = 0, num_3dmux = 0;
  2263. bool dsc_capable = dp_mode->capabilities & DP_PANEL_CAPS_DSC;
  2264. rc = msm_get_mixer_count(priv, mode, avail_res, &num_lm);
  2265. if (rc) {
  2266. DP_ERR("error getting mixer count. rc:%d\n", rc);
  2267. return rc;
  2268. }
  2269. num_3dmux = avail_res->num_3dmux;
  2270. if (dp_panel->dsc_en && dsc_capable) {
  2271. rc = msm_get_dsc_count(priv, mode->hdisplay, &num_dsc);
  2272. if (rc) {
  2273. DP_ERR("error getting dsc count. rc:%d\n", rc);
  2274. return rc;
  2275. }
  2276. }
  2277. /* filter out unsupported DP topologies */
  2278. if ((num_lm == dual_lm && (!num_3dmux && !num_dsc)) ||
  2279. (num_lm == quad_lm && (num_dsc != 4))) {
  2280. DP_DEBUG("invalid topology lm:%d dsc:%d 3dmux:%d intf:1\n",
  2281. num_lm, num_dsc, num_3dmux);
  2282. return -EPERM;
  2283. }
  2284. return 0;
  2285. }
  2286. static enum drm_mode_status dp_display_validate_mode(
  2287. struct dp_display *dp_display,
  2288. void *panel, struct drm_display_mode *mode,
  2289. const struct msm_resource_caps_info *avail_res)
  2290. {
  2291. struct dp_display_private *dp;
  2292. struct dp_panel *dp_panel;
  2293. struct dp_debug *debug;
  2294. enum drm_mode_status mode_status = MODE_BAD;
  2295. struct dp_display_mode dp_mode;
  2296. int rc = 0;
  2297. if (!dp_display || !mode || !panel ||
  2298. !avail_res || !avail_res->max_mixer_width) {
  2299. DP_ERR("invalid params\n");
  2300. return mode_status;
  2301. }
  2302. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2303. mutex_lock(&dp->session_lock);
  2304. dp_panel = panel;
  2305. if (!dp_panel->connector) {
  2306. DP_ERR("invalid connector\n");
  2307. goto end;
  2308. }
  2309. debug = dp->debug;
  2310. if (!debug)
  2311. goto end;
  2312. dp_display->convert_to_dp_mode(dp_display, panel, mode, &dp_mode);
  2313. rc = dp_display_validate_link_clock(dp, mode, dp_mode);
  2314. if (rc)
  2315. goto end;
  2316. rc = dp_display_validate_pixel_clock(dp_mode, dp_display->max_pclk_khz);
  2317. if (rc)
  2318. goto end;
  2319. rc = dp_display_validate_mixers(dp->priv, mode, avail_res);
  2320. if (rc)
  2321. goto end;
  2322. rc = dp_display_validate_dscs(dp->priv, panel, mode, &dp_mode,
  2323. avail_res);
  2324. if (rc)
  2325. goto end;
  2326. rc = dp_display_validate_topology(dp, dp_panel, mode,
  2327. &dp_mode, avail_res);
  2328. if (rc)
  2329. goto end;
  2330. mode_status = MODE_OK;
  2331. end:
  2332. mutex_unlock(&dp->session_lock);
  2333. DP_DEBUG("[%s] mode is %s\n", mode->name,
  2334. (mode_status == MODE_OK) ? "valid" : "invalid");
  2335. return mode_status;
  2336. }
  2337. static int dp_display_get_available_dp_resources(struct dp_display *dp_display,
  2338. const struct msm_resource_caps_info *avail_res,
  2339. struct msm_resource_caps_info *max_dp_avail_res)
  2340. {
  2341. if (!dp_display || !avail_res || !max_dp_avail_res) {
  2342. DP_ERR("invalid arguments\n");
  2343. return -EINVAL;
  2344. }
  2345. memcpy(max_dp_avail_res, avail_res,
  2346. sizeof(struct msm_resource_caps_info));
  2347. max_dp_avail_res->num_lm = min(avail_res->num_lm,
  2348. dp_display->max_mixer_count);
  2349. max_dp_avail_res->num_dsc = min(avail_res->num_dsc,
  2350. dp_display->max_dsc_count);
  2351. DP_DEBUG("max_lm:%d, avail_lm:%d, dp_avail_lm:%d\n",
  2352. dp_display->max_mixer_count, avail_res->num_lm,
  2353. max_dp_avail_res->num_lm);
  2354. DP_DEBUG("max_dsc:%d, avail_dsc:%d, dp_avail_dsc:%d\n",
  2355. dp_display->max_dsc_count, avail_res->num_dsc,
  2356. max_dp_avail_res->num_dsc);
  2357. return 0;
  2358. }
  2359. static int dp_display_get_modes(struct dp_display *dp, void *panel,
  2360. struct dp_display_mode *dp_mode)
  2361. {
  2362. struct dp_display_private *dp_display;
  2363. struct dp_panel *dp_panel;
  2364. int ret = 0;
  2365. if (!dp || !panel) {
  2366. DP_ERR("invalid params\n");
  2367. return 0;
  2368. }
  2369. dp_panel = panel;
  2370. if (!dp_panel->connector) {
  2371. DP_ERR("invalid connector\n");
  2372. return 0;
  2373. }
  2374. dp_display = container_of(dp, struct dp_display_private, dp_display);
  2375. ret = dp_panel->get_modes(dp_panel, dp_panel->connector, dp_mode);
  2376. if (dp_mode->timing.pixel_clk_khz)
  2377. dp->max_pclk_khz = dp_mode->timing.pixel_clk_khz;
  2378. return ret;
  2379. }
  2380. static void dp_display_convert_to_dp_mode(struct dp_display *dp_display,
  2381. void *panel,
  2382. const struct drm_display_mode *drm_mode,
  2383. struct dp_display_mode *dp_mode)
  2384. {
  2385. int rc;
  2386. struct dp_display_private *dp;
  2387. struct dp_panel *dp_panel;
  2388. u32 free_dsc_blks = 0, required_dsc_blks = 0;
  2389. if (!dp_display || !drm_mode || !dp_mode || !panel) {
  2390. DP_ERR("invalid input\n");
  2391. return;
  2392. }
  2393. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2394. dp_panel = panel;
  2395. memset(dp_mode, 0, sizeof(*dp_mode));
  2396. free_dsc_blks = dp_display->max_dsc_count -
  2397. dp->tot_dsc_blks_in_use +
  2398. dp_panel->dsc_blks_in_use;
  2399. rc = msm_get_dsc_count(dp->priv, drm_mode->hdisplay,
  2400. &required_dsc_blks);
  2401. if (rc) {
  2402. DP_ERR("error getting dsc count. rc:%d\n", rc);
  2403. return;
  2404. }
  2405. if (free_dsc_blks >= required_dsc_blks)
  2406. dp_mode->capabilities |= DP_PANEL_CAPS_DSC;
  2407. if (dp_mode->capabilities & DP_PANEL_CAPS_DSC)
  2408. DP_DEBUG("in_use:%d, max:%d, free:%d, req:%d, caps:0x%x\n",
  2409. dp->tot_dsc_blks_in_use,
  2410. dp_display->max_dsc_count,
  2411. free_dsc_blks, required_dsc_blks,
  2412. dp_mode->capabilities);
  2413. dp_panel->convert_to_dp_mode(dp_panel, drm_mode, dp_mode);
  2414. }
  2415. static int dp_display_config_hdr(struct dp_display *dp_display, void *panel,
  2416. struct drm_msm_ext_hdr_metadata *hdr, bool dhdr_update)
  2417. {
  2418. struct dp_panel *dp_panel;
  2419. struct sde_connector *sde_conn;
  2420. struct dp_display_private *dp;
  2421. u64 core_clk_rate;
  2422. bool flush_hdr;
  2423. if (!dp_display || !panel) {
  2424. DP_ERR("invalid input\n");
  2425. return -EINVAL;
  2426. }
  2427. dp_panel = panel;
  2428. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2429. sde_conn = to_sde_connector(dp_panel->connector);
  2430. core_clk_rate = dp->power->clk_get_rate(dp->power, "core_clk");
  2431. if (!core_clk_rate) {
  2432. DP_ERR("invalid rate for core_clk\n");
  2433. return -EINVAL;
  2434. }
  2435. if (!dp_display_state_is(DP_STATE_ENABLED)) {
  2436. dp_display_state_show("[not enabled]");
  2437. return 0;
  2438. }
  2439. /*
  2440. * In rare cases where HDR metadata is updated independently
  2441. * flush the HDR metadata immediately instead of relying on
  2442. * the colorspace
  2443. */
  2444. flush_hdr = !sde_conn->colorspace_updated;
  2445. if (flush_hdr)
  2446. DP_DEBUG("flushing the HDR metadata\n");
  2447. else
  2448. DP_DEBUG("piggy-backing with colorspace\n");
  2449. return dp_panel->setup_hdr(dp_panel, hdr, dhdr_update,
  2450. core_clk_rate, flush_hdr);
  2451. }
  2452. static int dp_display_setup_colospace(struct dp_display *dp_display,
  2453. void *panel,
  2454. u32 colorspace)
  2455. {
  2456. struct dp_panel *dp_panel;
  2457. struct dp_display_private *dp;
  2458. if (!dp_display || !panel) {
  2459. pr_err("invalid input\n");
  2460. return -EINVAL;
  2461. }
  2462. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2463. if (!dp_display_state_is(DP_STATE_ENABLED)) {
  2464. dp_display_state_show("[not enabled]");
  2465. return 0;
  2466. }
  2467. dp_panel = panel;
  2468. return dp_panel->set_colorspace(dp_panel, colorspace);
  2469. }
  2470. static int dp_display_create_workqueue(struct dp_display_private *dp)
  2471. {
  2472. dp->wq = create_singlethread_workqueue("drm_dp");
  2473. if (IS_ERR_OR_NULL(dp->wq)) {
  2474. DP_ERR("Error creating wq\n");
  2475. return -EPERM;
  2476. }
  2477. INIT_DELAYED_WORK(&dp->hdcp_cb_work, dp_display_hdcp_cb_work);
  2478. INIT_WORK(&dp->connect_work, dp_display_connect_work);
  2479. INIT_WORK(&dp->attention_work, dp_display_attention_work);
  2480. return 0;
  2481. }
  2482. static int dp_display_fsa4480_callback(struct notifier_block *self,
  2483. unsigned long event, void *data)
  2484. {
  2485. return 0;
  2486. }
  2487. static int dp_display_init_aux_switch(struct dp_display_private *dp)
  2488. {
  2489. int rc = 0;
  2490. const char *phandle = "qcom,dp-aux-switch";
  2491. struct notifier_block nb;
  2492. if (!dp->pdev->dev.of_node) {
  2493. DP_ERR("cannot find dev.of_node\n");
  2494. rc = -ENODEV;
  2495. goto end;
  2496. }
  2497. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY);
  2498. dp->aux_switch_node = of_parse_phandle(dp->pdev->dev.of_node,
  2499. phandle, 0);
  2500. if (!dp->aux_switch_node) {
  2501. DP_WARN("cannot parse %s handle\n", phandle);
  2502. rc = -ENODEV;
  2503. goto end;
  2504. }
  2505. nb.notifier_call = dp_display_fsa4480_callback;
  2506. nb.priority = 0;
  2507. rc = fsa4480_reg_notifier(&nb, dp->aux_switch_node);
  2508. if (rc) {
  2509. DP_ERR("failed to register notifier (%d)\n", rc);
  2510. goto end;
  2511. }
  2512. fsa4480_unreg_notifier(&nb, dp->aux_switch_node);
  2513. end:
  2514. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, rc);
  2515. return rc;
  2516. }
  2517. static int dp_display_bridge_internal_hpd(void *dev, bool hpd, bool hpd_irq)
  2518. {
  2519. struct dp_display_private *dp = dev;
  2520. struct drm_device *drm_dev = dp->dp_display.drm_dev;
  2521. if (!drm_dev || !drm_dev->mode_config.poll_enabled)
  2522. return -EBUSY;
  2523. if (hpd_irq)
  2524. dp_display_mst_attention(dp);
  2525. else
  2526. dp->hpd->simulate_connect(dp->hpd, hpd);
  2527. return 0;
  2528. }
  2529. static int dp_display_init_aux_bridge(struct dp_display_private *dp)
  2530. {
  2531. int rc = 0;
  2532. const char *phandle = "qcom,dp-aux-bridge";
  2533. struct device_node *bridge_node;
  2534. if (!dp->pdev->dev.of_node) {
  2535. pr_err("cannot find dev.of_node\n");
  2536. rc = -ENODEV;
  2537. goto end;
  2538. }
  2539. bridge_node = of_parse_phandle(dp->pdev->dev.of_node,
  2540. phandle, 0);
  2541. if (!bridge_node)
  2542. goto end;
  2543. dp->aux_bridge = of_dp_aux_find_bridge(bridge_node);
  2544. if (!dp->aux_bridge) {
  2545. pr_err("failed to find dp aux bridge\n");
  2546. rc = -EPROBE_DEFER;
  2547. goto end;
  2548. }
  2549. if (dp->aux_bridge->register_hpd &&
  2550. !(dp->aux_bridge->flag & DP_AUX_BRIDGE_HPD))
  2551. dp->aux_bridge->register_hpd(dp->aux_bridge,
  2552. dp_display_bridge_internal_hpd, dp);
  2553. end:
  2554. return rc;
  2555. }
  2556. static int dp_display_mst_install(struct dp_display *dp_display,
  2557. struct dp_mst_drm_install_info *mst_install_info)
  2558. {
  2559. struct dp_display_private *dp;
  2560. if (!dp_display || !mst_install_info) {
  2561. DP_ERR("invalid input\n");
  2562. return -EINVAL;
  2563. }
  2564. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2565. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  2566. if (!mst_install_info->cbs->hpd || !mst_install_info->cbs->hpd_irq) {
  2567. DP_ERR("invalid mst cbs\n");
  2568. return -EINVAL;
  2569. }
  2570. dp_display->dp_mst_prv_info = mst_install_info->dp_mst_prv_info;
  2571. if (!dp->parser->has_mst) {
  2572. DP_DEBUG("mst not enabled\n");
  2573. return -EPERM;
  2574. }
  2575. memcpy(&dp->mst.cbs, mst_install_info->cbs, sizeof(dp->mst.cbs));
  2576. dp->mst.drm_registered = true;
  2577. DP_MST_DEBUG("dp mst drm installed\n");
  2578. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state);
  2579. return 0;
  2580. }
  2581. static int dp_display_mst_uninstall(struct dp_display *dp_display)
  2582. {
  2583. struct dp_display_private *dp;
  2584. if (!dp_display) {
  2585. DP_ERR("invalid input\n");
  2586. return -EINVAL;
  2587. }
  2588. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2589. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  2590. if (!dp->mst.drm_registered) {
  2591. DP_DEBUG("drm mst not registered\n");
  2592. return -EPERM;
  2593. }
  2594. dp = container_of(dp_display, struct dp_display_private,
  2595. dp_display);
  2596. memset(&dp->mst.cbs, 0, sizeof(dp->mst.cbs));
  2597. dp->mst.drm_registered = false;
  2598. DP_MST_DEBUG("dp mst drm uninstalled\n");
  2599. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state);
  2600. return 0;
  2601. }
  2602. static int dp_display_mst_connector_install(struct dp_display *dp_display,
  2603. struct drm_connector *connector)
  2604. {
  2605. int rc = 0;
  2606. struct dp_panel_in panel_in;
  2607. struct dp_panel *dp_panel;
  2608. struct dp_display_private *dp;
  2609. if (!dp_display || !connector) {
  2610. DP_ERR("invalid input\n");
  2611. return -EINVAL;
  2612. }
  2613. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2614. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  2615. mutex_lock(&dp->session_lock);
  2616. if (!dp->mst.drm_registered) {
  2617. DP_DEBUG("drm mst not registered\n");
  2618. rc = -EPERM;
  2619. goto end;
  2620. }
  2621. panel_in.dev = &dp->pdev->dev;
  2622. panel_in.aux = dp->aux;
  2623. panel_in.catalog = &dp->catalog->panel;
  2624. panel_in.link = dp->link;
  2625. panel_in.connector = connector;
  2626. panel_in.base_panel = dp->panel;
  2627. panel_in.parser = dp->parser;
  2628. dp_panel = dp_panel_get(&panel_in);
  2629. if (IS_ERR(dp_panel)) {
  2630. rc = PTR_ERR(dp_panel);
  2631. DP_ERR("failed to initialize panel, rc = %d\n", rc);
  2632. goto end;
  2633. }
  2634. dp_panel->audio = dp_audio_get(dp->pdev, dp_panel, &dp->catalog->audio);
  2635. if (IS_ERR(dp_panel->audio)) {
  2636. rc = PTR_ERR(dp_panel->audio);
  2637. DP_ERR("[mst] failed to initialize audio, rc = %d\n", rc);
  2638. dp_panel->audio = NULL;
  2639. goto end;
  2640. }
  2641. DP_MST_DEBUG("dp mst connector installed. conn:%d\n",
  2642. connector->base.id);
  2643. end:
  2644. mutex_unlock(&dp->session_lock);
  2645. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state, rc);
  2646. return rc;
  2647. }
  2648. static int dp_display_mst_connector_uninstall(struct dp_display *dp_display,
  2649. struct drm_connector *connector)
  2650. {
  2651. int rc = 0;
  2652. struct sde_connector *sde_conn;
  2653. struct dp_panel *dp_panel;
  2654. struct dp_display_private *dp;
  2655. if (!dp_display || !connector) {
  2656. DP_ERR("invalid input\n");
  2657. return -EINVAL;
  2658. }
  2659. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2660. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY, dp->state);
  2661. mutex_lock(&dp->session_lock);
  2662. if (!dp->mst.drm_registered) {
  2663. DP_DEBUG("drm mst not registered\n");
  2664. mutex_unlock(&dp->session_lock);
  2665. return -EPERM;
  2666. }
  2667. sde_conn = to_sde_connector(connector);
  2668. if (!sde_conn->drv_panel) {
  2669. DP_ERR("invalid panel for connector:%d\n", connector->base.id);
  2670. mutex_unlock(&dp->session_lock);
  2671. return -EINVAL;
  2672. }
  2673. dp_panel = sde_conn->drv_panel;
  2674. dp_audio_put(dp_panel->audio);
  2675. dp_panel_put(dp_panel);
  2676. DP_MST_DEBUG("dp mst connector uninstalled. conn:%d\n",
  2677. connector->base.id);
  2678. mutex_unlock(&dp->session_lock);
  2679. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state);
  2680. return rc;
  2681. }
  2682. static int dp_display_mst_connector_update_edid(struct dp_display *dp_display,
  2683. struct drm_connector *connector,
  2684. struct edid *edid)
  2685. {
  2686. int rc = 0;
  2687. struct sde_connector *sde_conn;
  2688. struct dp_panel *dp_panel;
  2689. struct dp_display_private *dp;
  2690. if (!dp_display || !connector || !edid) {
  2691. DP_ERR("invalid input\n");
  2692. return -EINVAL;
  2693. }
  2694. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2695. if (!dp->mst.drm_registered) {
  2696. DP_DEBUG("drm mst not registered\n");
  2697. return -EPERM;
  2698. }
  2699. sde_conn = to_sde_connector(connector);
  2700. if (!sde_conn->drv_panel) {
  2701. DP_ERR("invalid panel for connector:%d\n", connector->base.id);
  2702. return -EINVAL;
  2703. }
  2704. dp_panel = sde_conn->drv_panel;
  2705. rc = dp_panel->update_edid(dp_panel, edid);
  2706. DP_MST_DEBUG("dp mst connector:%d edid updated. mode_cnt:%d\n",
  2707. connector->base.id, rc);
  2708. return rc;
  2709. }
  2710. static int dp_display_update_pps(struct dp_display *dp_display,
  2711. struct drm_connector *connector, char *pps_cmd)
  2712. {
  2713. struct sde_connector *sde_conn;
  2714. struct dp_panel *dp_panel;
  2715. struct dp_display_private *dp;
  2716. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2717. sde_conn = to_sde_connector(connector);
  2718. if (!sde_conn->drv_panel) {
  2719. DP_ERR("invalid panel for connector:%d\n", connector->base.id);
  2720. return -EINVAL;
  2721. }
  2722. if (!dp_display_state_is(DP_STATE_ENABLED)) {
  2723. dp_display_state_show("[not enabled]");
  2724. return 0;
  2725. }
  2726. dp_panel = sde_conn->drv_panel;
  2727. dp_panel->update_pps(dp_panel, pps_cmd);
  2728. return 0;
  2729. }
  2730. static int dp_display_mst_connector_update_link_info(
  2731. struct dp_display *dp_display,
  2732. struct drm_connector *connector)
  2733. {
  2734. int rc = 0;
  2735. struct sde_connector *sde_conn;
  2736. struct dp_panel *dp_panel;
  2737. struct dp_display_private *dp;
  2738. if (!dp_display || !connector) {
  2739. DP_ERR("invalid input\n");
  2740. return -EINVAL;
  2741. }
  2742. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2743. if (!dp->mst.drm_registered) {
  2744. DP_DEBUG("drm mst not registered\n");
  2745. return -EPERM;
  2746. }
  2747. sde_conn = to_sde_connector(connector);
  2748. if (!sde_conn->drv_panel) {
  2749. DP_ERR("invalid panel for connector:%d\n", connector->base.id);
  2750. return -EINVAL;
  2751. }
  2752. dp_panel = sde_conn->drv_panel;
  2753. memcpy(dp_panel->dpcd, dp->panel->dpcd,
  2754. DP_RECEIVER_CAP_SIZE + 1);
  2755. memcpy(dp_panel->dsc_dpcd, dp->panel->dsc_dpcd,
  2756. DP_RECEIVER_DSC_CAP_SIZE + 1);
  2757. memcpy(&dp_panel->link_info, &dp->panel->link_info,
  2758. sizeof(dp_panel->link_info));
  2759. DP_MST_DEBUG("dp mst connector:%d link info updated\n",
  2760. connector->base.id);
  2761. return rc;
  2762. }
  2763. static int dp_display_mst_get_fixed_topology_port(
  2764. struct dp_display *dp_display,
  2765. u32 strm_id, u32 *port_num)
  2766. {
  2767. struct dp_display_private *dp;
  2768. u32 port;
  2769. if (!dp_display) {
  2770. DP_ERR("invalid input\n");
  2771. return -EINVAL;
  2772. }
  2773. if (strm_id >= DP_STREAM_MAX) {
  2774. DP_ERR("invalid stream id:%d\n", strm_id);
  2775. return -EINVAL;
  2776. }
  2777. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2778. port = dp->parser->mst_fixed_port[strm_id];
  2779. if (!port || port > 255)
  2780. return -ENOENT;
  2781. if (port_num)
  2782. *port_num = port;
  2783. return 0;
  2784. }
  2785. static int dp_display_get_mst_caps(struct dp_display *dp_display,
  2786. struct dp_mst_caps *mst_caps)
  2787. {
  2788. int rc = 0;
  2789. struct dp_display_private *dp;
  2790. if (!dp_display || !mst_caps) {
  2791. DP_ERR("invalid input\n");
  2792. return -EINVAL;
  2793. }
  2794. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2795. mst_caps->has_mst = dp->parser->has_mst;
  2796. mst_caps->max_streams_supported = (mst_caps->has_mst) ? 2 : 0;
  2797. mst_caps->max_dpcd_transaction_bytes = (mst_caps->has_mst) ? 16 : 0;
  2798. mst_caps->drm_aux = dp->aux->drm_aux;
  2799. return rc;
  2800. }
  2801. static void dp_display_wakeup_phy_layer(struct dp_display *dp_display,
  2802. bool wakeup)
  2803. {
  2804. struct dp_display_private *dp;
  2805. struct dp_hpd *hpd;
  2806. if (!dp_display) {
  2807. DP_ERR("invalid input\n");
  2808. return;
  2809. }
  2810. dp = container_of(dp_display, struct dp_display_private, dp_display);
  2811. if (!dp->mst.drm_registered) {
  2812. DP_DEBUG("drm mst not registered\n");
  2813. return;
  2814. }
  2815. hpd = dp->hpd;
  2816. if (hpd && hpd->wakeup_phy)
  2817. hpd->wakeup_phy(hpd, wakeup);
  2818. }
  2819. static int dp_display_probe(struct platform_device *pdev)
  2820. {
  2821. int rc = 0;
  2822. struct dp_display_private *dp;
  2823. if (!pdev || !pdev->dev.of_node) {
  2824. DP_ERR("pdev not found\n");
  2825. rc = -ENODEV;
  2826. goto bail;
  2827. }
  2828. dp = devm_kzalloc(&pdev->dev, sizeof(*dp), GFP_KERNEL);
  2829. if (!dp) {
  2830. rc = -ENOMEM;
  2831. goto bail;
  2832. }
  2833. init_completion(&dp->notification_comp);
  2834. init_completion(&dp->attention_comp);
  2835. dp->pdev = pdev;
  2836. dp->name = "drm_dp";
  2837. memset(&dp->mst, 0, sizeof(dp->mst));
  2838. rc = dp_display_init_aux_switch(dp);
  2839. if (rc) {
  2840. rc = -EPROBE_DEFER;
  2841. goto error;
  2842. }
  2843. rc = dp_display_init_aux_bridge(dp);
  2844. if (rc)
  2845. goto error;
  2846. rc = dp_display_create_workqueue(dp);
  2847. if (rc) {
  2848. DP_ERR("Failed to create workqueue\n");
  2849. goto error;
  2850. }
  2851. platform_set_drvdata(pdev, dp);
  2852. g_dp_display = &dp->dp_display;
  2853. g_dp_display->enable = dp_display_enable;
  2854. g_dp_display->post_enable = dp_display_post_enable;
  2855. g_dp_display->pre_disable = dp_display_pre_disable;
  2856. g_dp_display->disable = dp_display_disable;
  2857. g_dp_display->set_mode = dp_display_set_mode;
  2858. g_dp_display->validate_mode = dp_display_validate_mode;
  2859. g_dp_display->get_modes = dp_display_get_modes;
  2860. g_dp_display->prepare = dp_display_prepare;
  2861. g_dp_display->unprepare = dp_display_unprepare;
  2862. g_dp_display->request_irq = dp_request_irq;
  2863. g_dp_display->get_debug = dp_get_debug;
  2864. g_dp_display->post_open = NULL;
  2865. g_dp_display->post_init = dp_display_post_init;
  2866. g_dp_display->config_hdr = dp_display_config_hdr;
  2867. g_dp_display->mst_install = dp_display_mst_install;
  2868. g_dp_display->mst_uninstall = dp_display_mst_uninstall;
  2869. g_dp_display->mst_connector_install = dp_display_mst_connector_install;
  2870. g_dp_display->mst_connector_uninstall =
  2871. dp_display_mst_connector_uninstall;
  2872. g_dp_display->mst_connector_update_edid =
  2873. dp_display_mst_connector_update_edid;
  2874. g_dp_display->mst_connector_update_link_info =
  2875. dp_display_mst_connector_update_link_info;
  2876. g_dp_display->get_mst_caps = dp_display_get_mst_caps;
  2877. g_dp_display->set_stream_info = dp_display_set_stream_info;
  2878. g_dp_display->update_pps = dp_display_update_pps;
  2879. g_dp_display->convert_to_dp_mode = dp_display_convert_to_dp_mode;
  2880. g_dp_display->mst_get_fixed_topology_port =
  2881. dp_display_mst_get_fixed_topology_port;
  2882. g_dp_display->wakeup_phy_layer =
  2883. dp_display_wakeup_phy_layer;
  2884. g_dp_display->set_colorspace = dp_display_setup_colospace;
  2885. g_dp_display->get_available_dp_resources =
  2886. dp_display_get_available_dp_resources;
  2887. rc = component_add(&pdev->dev, &dp_display_comp_ops);
  2888. if (rc) {
  2889. DP_ERR("component add failed, rc=%d\n", rc);
  2890. goto error;
  2891. }
  2892. return 0;
  2893. error:
  2894. devm_kfree(&pdev->dev, dp);
  2895. bail:
  2896. return rc;
  2897. }
  2898. int dp_display_get_displays(void **displays, int count)
  2899. {
  2900. if (!displays) {
  2901. DP_ERR("invalid data\n");
  2902. return -EINVAL;
  2903. }
  2904. if (count != 1) {
  2905. DP_ERR("invalid number of displays\n");
  2906. return -EINVAL;
  2907. }
  2908. displays[0] = g_dp_display;
  2909. return count;
  2910. }
  2911. int dp_display_get_num_of_displays(void)
  2912. {
  2913. if (!g_dp_display)
  2914. return 0;
  2915. return 1;
  2916. }
  2917. int dp_display_get_num_of_streams(void)
  2918. {
  2919. return DP_STREAM_MAX;
  2920. }
  2921. static void dp_display_set_mst_state(void *dp_display,
  2922. enum dp_drv_state mst_state)
  2923. {
  2924. struct dp_display_private *dp;
  2925. if (!g_dp_display) {
  2926. DP_DEBUG("dp display not initialized\n");
  2927. return;
  2928. }
  2929. dp = container_of(g_dp_display, struct dp_display_private, dp_display);
  2930. SDE_EVT32_EXTERNAL(mst_state, dp->mst.mst_active);
  2931. if (dp->mst.mst_active && dp->mst.cbs.set_drv_state)
  2932. dp->mst.cbs.set_drv_state(g_dp_display, mst_state);
  2933. }
  2934. static int dp_display_remove(struct platform_device *pdev)
  2935. {
  2936. struct dp_display_private *dp;
  2937. if (!pdev)
  2938. return -EINVAL;
  2939. dp = platform_get_drvdata(pdev);
  2940. dp_display_deinit_sub_modules(dp);
  2941. if (dp->wq)
  2942. destroy_workqueue(dp->wq);
  2943. platform_set_drvdata(pdev, NULL);
  2944. devm_kfree(&pdev->dev, dp);
  2945. return 0;
  2946. }
  2947. static int dp_pm_prepare(struct device *dev)
  2948. {
  2949. struct dp_display_private *dp = container_of(g_dp_display,
  2950. struct dp_display_private, dp_display);
  2951. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY);
  2952. mutex_lock(&dp->session_lock);
  2953. dp_display_set_mst_state(g_dp_display, PM_SUSPEND);
  2954. /*
  2955. * There are a few instances where the DP is hotplugged when the device
  2956. * is in PM suspend state. After hotplug, it is observed the device
  2957. * enters and exits the PM suspend multiple times while aux transactions
  2958. * are taking place. This may sometimes cause an unclocked register
  2959. * access error. So, abort aux transactions when such a situation
  2960. * arises i.e. when DP is connected but display not enabled yet.
  2961. */
  2962. if (dp_display_state_is(DP_STATE_CONNECTED) &&
  2963. !dp_display_state_is(DP_STATE_ENABLED)) {
  2964. dp->aux->abort(dp->aux, true);
  2965. dp->ctrl->abort(dp->ctrl, true);
  2966. }
  2967. dp_display_state_add(DP_STATE_SUSPENDED);
  2968. mutex_unlock(&dp->session_lock);
  2969. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state);
  2970. return 0;
  2971. }
  2972. static void dp_pm_complete(struct device *dev)
  2973. {
  2974. struct dp_display_private *dp = container_of(g_dp_display,
  2975. struct dp_display_private, dp_display);
  2976. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY);
  2977. mutex_lock(&dp->session_lock);
  2978. dp_display_set_mst_state(g_dp_display, PM_DEFAULT);
  2979. /*
  2980. * There are multiple PM suspend entry and exits observed before
  2981. * the connect uevent is issued to userspace. The aux transactions are
  2982. * aborted during PM suspend entry in dp_pm_prepare to prevent unclocked
  2983. * register access. On PM suspend exit, there will be no host_init call
  2984. * to reset the abort flags for ctrl and aux incase DP is connected
  2985. * but display not enabled. So, resetting abort flags for aux and ctrl.
  2986. */
  2987. if (dp_display_state_is(DP_STATE_CONNECTED) &&
  2988. !dp_display_state_is(DP_STATE_ENABLED)) {
  2989. dp->aux->abort(dp->aux, false);
  2990. dp->ctrl->abort(dp->ctrl, false);
  2991. }
  2992. dp_display_state_remove(DP_STATE_SUSPENDED);
  2993. mutex_unlock(&dp->session_lock);
  2994. SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, dp->state);
  2995. }
  2996. static const struct dev_pm_ops dp_pm_ops = {
  2997. .prepare = dp_pm_prepare,
  2998. .complete = dp_pm_complete,
  2999. };
  3000. static struct platform_driver dp_display_driver = {
  3001. .probe = dp_display_probe,
  3002. .remove = dp_display_remove,
  3003. .driver = {
  3004. .name = "msm-dp-display",
  3005. .of_match_table = dp_dt_match,
  3006. .suppress_bind_attrs = true,
  3007. .pm = &dp_pm_ops,
  3008. },
  3009. };
  3010. void __init dp_display_register(void)
  3011. {
  3012. platform_driver_register(&dp_display_driver);
  3013. }
  3014. void __exit dp_display_unregister(void)
  3015. {
  3016. platform_driver_unregister(&dp_display_driver);
  3017. }