dp_debug.c 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2017-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/debugfs.h>
  6. #include <linux/slab.h>
  7. #include "dp_power.h"
  8. #include "dp_catalog.h"
  9. #include "dp_aux.h"
  10. #include "dp_debug.h"
  11. #include "drm_connector.h"
  12. #include "sde_connector.h"
  13. #include "dp_display.h"
  14. #include "dp_pll.h"
  15. #include "dp_hpd.h"
  16. #define DEBUG_NAME "drm_dp"
  17. struct dp_debug_private {
  18. struct dentry *root;
  19. u8 *edid;
  20. u32 edid_size;
  21. u8 *dpcd;
  22. u32 dpcd_size;
  23. u32 mst_con_id;
  24. bool hotplug;
  25. char exe_mode[SZ_32];
  26. char reg_dump[SZ_32];
  27. struct dp_hpd *hpd;
  28. struct dp_link *link;
  29. struct dp_panel *panel;
  30. struct dp_aux *aux;
  31. struct dp_catalog *catalog;
  32. struct drm_connector **connector;
  33. struct device *dev;
  34. struct dp_debug dp_debug;
  35. struct dp_parser *parser;
  36. struct dp_ctrl *ctrl;
  37. struct dp_pll *pll;
  38. struct mutex lock;
  39. };
  40. static int dp_debug_get_edid_buf(struct dp_debug_private *debug)
  41. {
  42. int rc = 0;
  43. if (!debug->edid) {
  44. debug->edid = devm_kzalloc(debug->dev, SZ_256, GFP_KERNEL);
  45. if (!debug->edid) {
  46. rc = -ENOMEM;
  47. goto end;
  48. }
  49. debug->edid_size = SZ_256;
  50. }
  51. end:
  52. return rc;
  53. }
  54. static int dp_debug_get_dpcd_buf(struct dp_debug_private *debug)
  55. {
  56. int rc = 0;
  57. if (!debug->dpcd) {
  58. debug->dpcd = devm_kzalloc(debug->dev, SZ_4K, GFP_KERNEL);
  59. if (!debug->dpcd) {
  60. rc = -ENOMEM;
  61. goto end;
  62. }
  63. debug->dpcd_size = SZ_4K;
  64. }
  65. end:
  66. return rc;
  67. }
  68. static ssize_t dp_debug_write_edid(struct file *file,
  69. const char __user *user_buff, size_t count, loff_t *ppos)
  70. {
  71. struct dp_debug_private *debug = file->private_data;
  72. u8 *buf = NULL, *buf_t = NULL, *edid = NULL;
  73. const int char_to_nib = 2;
  74. size_t edid_size = 0;
  75. size_t size = 0, edid_buf_index = 0;
  76. ssize_t rc = count;
  77. if (!debug)
  78. return -ENODEV;
  79. mutex_lock(&debug->lock);
  80. if (*ppos)
  81. goto bail;
  82. size = min_t(size_t, count, SZ_1K);
  83. buf = kzalloc(size, GFP_KERNEL);
  84. if (ZERO_OR_NULL_PTR(buf)) {
  85. rc = -ENOMEM;
  86. goto bail;
  87. }
  88. if (copy_from_user(buf, user_buff, size))
  89. goto bail;
  90. edid_size = size / char_to_nib;
  91. buf_t = buf;
  92. if (dp_debug_get_edid_buf(debug))
  93. goto bail;
  94. if (edid_size != debug->edid_size) {
  95. DP_DEBUG("realloc debug edid\n");
  96. if (debug->edid) {
  97. devm_kfree(debug->dev, debug->edid);
  98. debug->edid = devm_kzalloc(debug->dev,
  99. edid_size, GFP_KERNEL);
  100. if (!debug->edid) {
  101. rc = -ENOMEM;
  102. goto bail;
  103. }
  104. debug->edid_size = edid_size;
  105. debug->aux->set_sim_mode(debug->aux,
  106. debug->dp_debug.sim_mode,
  107. debug->edid, debug->dpcd);
  108. }
  109. }
  110. while (edid_size--) {
  111. char t[3];
  112. int d;
  113. memcpy(t, buf_t, sizeof(char) * char_to_nib);
  114. t[char_to_nib] = '\0';
  115. if (kstrtoint(t, 16, &d)) {
  116. DP_ERR("kstrtoint error\n");
  117. goto bail;
  118. }
  119. if (debug->edid && (edid_buf_index < debug->edid_size))
  120. debug->edid[edid_buf_index++] = d;
  121. buf_t += char_to_nib;
  122. }
  123. edid = debug->edid;
  124. bail:
  125. kfree(buf);
  126. debug->panel->set_edid(debug->panel, edid);
  127. /*
  128. * print edid status as this code is executed
  129. * only while running in debug mode which is manually
  130. * triggered by a tester or a script.
  131. */
  132. DP_INFO("[%s]\n", edid ? "SET" : "CLEAR");
  133. mutex_unlock(&debug->lock);
  134. return rc;
  135. }
  136. static ssize_t dp_debug_write_dpcd(struct file *file,
  137. const char __user *user_buff, size_t count, loff_t *ppos)
  138. {
  139. struct dp_debug_private *debug = file->private_data;
  140. u8 *buf = NULL, *buf_t = NULL, *dpcd = NULL;
  141. const int char_to_nib = 2;
  142. size_t dpcd_size = 0;
  143. size_t size = 0, dpcd_buf_index = 0;
  144. ssize_t rc = count;
  145. char offset_ch[5];
  146. u32 offset, data_len;
  147. const u32 dp_receiver_cap_size = 16;
  148. if (!debug)
  149. return -ENODEV;
  150. mutex_lock(&debug->lock);
  151. if (*ppos)
  152. goto bail;
  153. size = min_t(size_t, count, SZ_2K);
  154. if (size <= 4)
  155. goto bail;
  156. buf = kzalloc(size, GFP_KERNEL);
  157. if (ZERO_OR_NULL_PTR(buf)) {
  158. rc = -ENOMEM;
  159. goto bail;
  160. }
  161. if (copy_from_user(buf, user_buff, size))
  162. goto bail;
  163. memcpy(offset_ch, buf, 4);
  164. offset_ch[4] = '\0';
  165. if (kstrtoint(offset_ch, 16, &offset)) {
  166. DP_ERR("offset kstrtoint error\n");
  167. goto bail;
  168. }
  169. if (dp_debug_get_dpcd_buf(debug))
  170. goto bail;
  171. if (offset == 0xFFFF) {
  172. DP_ERR("clearing dpcd\n");
  173. memset(debug->dpcd, 0, debug->dpcd_size);
  174. goto bail;
  175. }
  176. size -= 4;
  177. if (size == 0)
  178. goto bail;
  179. dpcd_size = size / char_to_nib;
  180. data_len = dpcd_size;
  181. buf_t = buf + 4;
  182. dpcd_buf_index = offset;
  183. while (dpcd_size--) {
  184. char t[3];
  185. int d;
  186. memcpy(t, buf_t, sizeof(char) * char_to_nib);
  187. t[char_to_nib] = '\0';
  188. if (kstrtoint(t, 16, &d)) {
  189. DP_ERR("kstrtoint error\n");
  190. goto bail;
  191. }
  192. if (dpcd_buf_index < debug->dpcd_size)
  193. debug->dpcd[dpcd_buf_index++] = d;
  194. buf_t += char_to_nib;
  195. }
  196. dpcd = debug->dpcd;
  197. bail:
  198. kfree(buf);
  199. if (!dpcd || (size / char_to_nib) >= dp_receiver_cap_size ||
  200. offset == 0xffff) {
  201. debug->panel->set_dpcd(debug->panel, dpcd);
  202. /*
  203. * print dpcd status as this code is executed
  204. * only while running in debug mode which is manually
  205. * triggered by a tester or a script.
  206. */
  207. if (!dpcd || (offset == 0xffff))
  208. DP_INFO("[%s]\n", "CLEAR");
  209. else
  210. DP_INFO("[%s]\n", "SET");
  211. }
  212. mutex_unlock(&debug->lock);
  213. debug->aux->dpcd_updated(debug->aux);
  214. return rc;
  215. }
  216. static ssize_t dp_debug_read_dpcd(struct file *file,
  217. char __user *user_buff, size_t count, loff_t *ppos)
  218. {
  219. struct dp_debug_private *debug = file->private_data;
  220. char *buf;
  221. int const buf_size = SZ_4K;
  222. u32 offset = 0;
  223. u32 len = 0;
  224. bool notify = false;
  225. if (!debug || !debug->aux || !debug->dpcd)
  226. return -ENODEV;
  227. mutex_lock(&debug->lock);
  228. if (*ppos)
  229. goto end;
  230. buf = kzalloc(buf_size, GFP_KERNEL);
  231. if (!buf)
  232. goto end;
  233. len += snprintf(buf, buf_size, "0x%x", debug->aux->reg);
  234. if (!debug->aux->read) {
  235. while (1) {
  236. if (debug->aux->reg + offset >= buf_size ||
  237. offset >= debug->aux->size)
  238. break;
  239. len += snprintf(buf + len, buf_size - len, "0x%x",
  240. debug->dpcd[debug->aux->reg + offset++]);
  241. }
  242. notify = true;
  243. }
  244. len = min_t(size_t, count, len);
  245. if (!copy_to_user(user_buff, buf, len))
  246. *ppos += len;
  247. kfree(buf);
  248. end:
  249. mutex_unlock(&debug->lock);
  250. if (notify)
  251. debug->aux->dpcd_updated(debug->aux);
  252. return len;
  253. }
  254. static ssize_t dp_debug_write_hpd(struct file *file,
  255. const char __user *user_buff, size_t count, loff_t *ppos)
  256. {
  257. struct dp_debug_private *debug = file->private_data;
  258. char buf[SZ_8];
  259. size_t len = 0;
  260. int const hpd_data_mask = 0x7;
  261. int hpd = 0;
  262. if (!debug)
  263. return -ENODEV;
  264. if (*ppos)
  265. return 0;
  266. /* Leave room for termination char */
  267. len = min_t(size_t, count, SZ_8 - 1);
  268. if (copy_from_user(buf, user_buff, len))
  269. goto end;
  270. buf[len] = '\0';
  271. if (kstrtoint(buf, 10, &hpd) != 0)
  272. goto end;
  273. hpd &= hpd_data_mask;
  274. debug->hotplug = !!(hpd & BIT(0));
  275. debug->dp_debug.psm_enabled = !!(hpd & BIT(1));
  276. /*
  277. * print hotplug value as this code is executed
  278. * only while running in debug mode which is manually
  279. * triggered by a tester or a script.
  280. */
  281. DP_INFO("%s\n", debug->hotplug ? "[CONNECT]" : "[DISCONNECT]");
  282. debug->hpd->simulate_connect(debug->hpd, debug->hotplug);
  283. end:
  284. return len;
  285. }
  286. static ssize_t dp_debug_write_edid_modes(struct file *file,
  287. const char __user *user_buff, size_t count, loff_t *ppos)
  288. {
  289. struct dp_debug_private *debug = file->private_data;
  290. char buf[SZ_32];
  291. size_t len = 0;
  292. int hdisplay = 0, vdisplay = 0, vrefresh = 0, aspect_ratio;
  293. if (!debug)
  294. return -ENODEV;
  295. if (*ppos)
  296. goto end;
  297. /* Leave room for termination char */
  298. len = min_t(size_t, count, SZ_32 - 1);
  299. if (copy_from_user(buf, user_buff, len))
  300. goto clear;
  301. buf[len] = '\0';
  302. if (sscanf(buf, "%d %d %d %d", &hdisplay, &vdisplay, &vrefresh,
  303. &aspect_ratio) != 4)
  304. goto clear;
  305. if (!hdisplay || !vdisplay || !vrefresh)
  306. goto clear;
  307. debug->dp_debug.debug_en = true;
  308. debug->dp_debug.hdisplay = hdisplay;
  309. debug->dp_debug.vdisplay = vdisplay;
  310. debug->dp_debug.vrefresh = vrefresh;
  311. debug->dp_debug.aspect_ratio = aspect_ratio;
  312. goto end;
  313. clear:
  314. DP_DEBUG("clearing debug modes\n");
  315. debug->dp_debug.debug_en = false;
  316. end:
  317. return len;
  318. }
  319. static ssize_t dp_debug_write_edid_modes_mst(struct file *file,
  320. const char __user *user_buff, size_t count, loff_t *ppos)
  321. {
  322. struct dp_debug_private *debug = file->private_data;
  323. struct dp_mst_connector *mst_connector;
  324. char buf[SZ_512];
  325. char *read_buf;
  326. size_t len = 0;
  327. int hdisplay = 0, vdisplay = 0, vrefresh = 0, aspect_ratio = 0;
  328. int con_id = 0, offset = 0, debug_en = 0;
  329. bool in_list = false;
  330. if (!debug)
  331. return -ENODEV;
  332. if (*ppos)
  333. goto end;
  334. len = min_t(size_t, count, SZ_512 - 1);
  335. if (copy_from_user(buf, user_buff, len))
  336. goto end;
  337. buf[len] = '\0';
  338. read_buf = buf;
  339. mutex_lock(&debug->dp_debug.dp_mst_connector_list.lock);
  340. while (sscanf(read_buf, "%d %d %d %d %d %d%n", &debug_en, &con_id,
  341. &hdisplay, &vdisplay, &vrefresh, &aspect_ratio,
  342. &offset) == 6) {
  343. list_for_each_entry(mst_connector,
  344. &debug->dp_debug.dp_mst_connector_list.list,
  345. list) {
  346. if (mst_connector->con_id == con_id) {
  347. in_list = true;
  348. mst_connector->debug_en = (bool) debug_en;
  349. mst_connector->hdisplay = hdisplay;
  350. mst_connector->vdisplay = vdisplay;
  351. mst_connector->vrefresh = vrefresh;
  352. mst_connector->aspect_ratio = aspect_ratio;
  353. DP_INFO("Setting %dx%dp%d on conn %d\n",
  354. hdisplay, vdisplay, vrefresh, con_id);
  355. }
  356. }
  357. if (!in_list)
  358. DP_DEBUG("dp connector id %d is invalid\n", con_id);
  359. in_list = false;
  360. read_buf += offset;
  361. }
  362. mutex_unlock(&debug->dp_debug.dp_mst_connector_list.lock);
  363. end:
  364. return len;
  365. }
  366. static ssize_t dp_debug_write_mst_con_id(struct file *file,
  367. const char __user *user_buff, size_t count, loff_t *ppos)
  368. {
  369. struct dp_debug_private *debug = file->private_data;
  370. struct dp_mst_connector *mst_connector;
  371. char buf[SZ_32];
  372. size_t len = 0;
  373. int con_id = 0, status;
  374. bool in_list = false;
  375. const int dp_en = BIT(3), hpd_high = BIT(7), hpd_irq = BIT(8);
  376. int vdo = dp_en | hpd_high | hpd_irq;
  377. if (!debug)
  378. return -ENODEV;
  379. if (*ppos)
  380. goto end;
  381. /* Leave room for termination char */
  382. len = min_t(size_t, count, SZ_32 - 1);
  383. if (copy_from_user(buf, user_buff, len))
  384. goto clear;
  385. buf[len] = '\0';
  386. if (sscanf(buf, "%d %d", &con_id, &status) != 2) {
  387. len = 0;
  388. goto end;
  389. }
  390. if (!con_id)
  391. goto clear;
  392. /* Verify that the connector id is for a valid mst connector. */
  393. mutex_lock(&debug->dp_debug.dp_mst_connector_list.lock);
  394. list_for_each_entry(mst_connector,
  395. &debug->dp_debug.dp_mst_connector_list.list, list) {
  396. if (mst_connector->con_id == con_id) {
  397. in_list = true;
  398. debug->mst_con_id = con_id;
  399. mst_connector->state = status;
  400. break;
  401. }
  402. }
  403. mutex_unlock(&debug->dp_debug.dp_mst_connector_list.lock);
  404. if (!in_list && status != connector_status_connected) {
  405. DP_ERR("invalid connector id %u\n", con_id);
  406. goto end;
  407. }
  408. if (status == connector_status_unknown)
  409. goto end;
  410. debug->dp_debug.mst_hpd_sim = true;
  411. if (status == connector_status_connected) {
  412. DP_INFO("plug mst connector\n", con_id, status);
  413. debug->dp_debug.mst_sim_add_con = true;
  414. } else {
  415. DP_INFO("unplug mst connector %d\n", con_id, status);
  416. }
  417. debug->hpd->simulate_attention(debug->hpd, vdo);
  418. goto end;
  419. clear:
  420. DP_DEBUG("clearing mst_con_id\n");
  421. debug->mst_con_id = 0;
  422. end:
  423. return len;
  424. }
  425. static ssize_t dp_debug_write_mst_con_add(struct file *file,
  426. const char __user *user_buff, size_t count, loff_t *ppos)
  427. {
  428. struct dp_debug_private *debug = file->private_data;
  429. char buf[SZ_32];
  430. size_t len = 0;
  431. const int dp_en = BIT(3), hpd_high = BIT(7), hpd_irq = BIT(8);
  432. int vdo = dp_en | hpd_high | hpd_irq;
  433. if (!debug)
  434. return -ENODEV;
  435. if (*ppos)
  436. return 0;
  437. /* Leave room for termination char */
  438. len = min_t(size_t, count, SZ_32 - 1);
  439. if (copy_from_user(buf, user_buff, len))
  440. goto end;
  441. debug->dp_debug.mst_hpd_sim = true;
  442. debug->dp_debug.mst_sim_add_con = true;
  443. debug->hpd->simulate_attention(debug->hpd, vdo);
  444. end:
  445. return len;
  446. }
  447. static ssize_t dp_debug_write_mst_con_remove(struct file *file,
  448. const char __user *user_buff, size_t count, loff_t *ppos)
  449. {
  450. struct dp_debug_private *debug = file->private_data;
  451. struct dp_mst_connector *mst_connector;
  452. char buf[SZ_32];
  453. size_t len = 0;
  454. int con_id = 0;
  455. bool in_list = false;
  456. const int dp_en = BIT(3), hpd_high = BIT(7), hpd_irq = BIT(8);
  457. int vdo = dp_en | hpd_high | hpd_irq;
  458. if (!debug)
  459. return -ENODEV;
  460. if (*ppos)
  461. return 0;
  462. /* Leave room for termination char */
  463. len = min_t(size_t, count, SZ_32 - 1);
  464. if (copy_from_user(buf, user_buff, len))
  465. goto end;
  466. buf[len] = '\0';
  467. if (sscanf(buf, "%d", &con_id) != 1) {
  468. len = 0;
  469. goto end;
  470. }
  471. if (!con_id)
  472. goto end;
  473. /* Verify that the connector id is for a valid mst connector. */
  474. mutex_lock(&debug->dp_debug.dp_mst_connector_list.lock);
  475. list_for_each_entry(mst_connector,
  476. &debug->dp_debug.dp_mst_connector_list.list, list) {
  477. if (mst_connector->con_id == con_id) {
  478. in_list = true;
  479. break;
  480. }
  481. }
  482. mutex_unlock(&debug->dp_debug.dp_mst_connector_list.lock);
  483. if (!in_list) {
  484. DRM_ERROR("invalid connector id %u\n", con_id);
  485. goto end;
  486. }
  487. debug->dp_debug.mst_hpd_sim = true;
  488. debug->dp_debug.mst_sim_remove_con = true;
  489. debug->dp_debug.mst_sim_remove_con_id = con_id;
  490. debug->hpd->simulate_attention(debug->hpd, vdo);
  491. end:
  492. return len;
  493. }
  494. static ssize_t dp_debug_bw_code_write(struct file *file,
  495. const char __user *user_buff, size_t count, loff_t *ppos)
  496. {
  497. struct dp_debug_private *debug = file->private_data;
  498. char buf[SZ_8];
  499. size_t len = 0;
  500. u32 max_bw_code = 0;
  501. if (!debug)
  502. return -ENODEV;
  503. if (*ppos)
  504. return 0;
  505. /* Leave room for termination char */
  506. len = min_t(size_t, count, SZ_8 - 1);
  507. if (copy_from_user(buf, user_buff, len))
  508. return 0;
  509. buf[len] = '\0';
  510. if (kstrtoint(buf, 10, &max_bw_code) != 0)
  511. return 0;
  512. if (!is_link_rate_valid(max_bw_code)) {
  513. DP_ERR("Unsupported bw code %d\n", max_bw_code);
  514. return len;
  515. }
  516. debug->panel->max_bw_code = max_bw_code;
  517. DP_DEBUG("max_bw_code: %d\n", max_bw_code);
  518. return len;
  519. }
  520. static ssize_t dp_debug_mst_mode_read(struct file *file,
  521. char __user *user_buff, size_t count, loff_t *ppos)
  522. {
  523. struct dp_debug_private *debug = file->private_data;
  524. char buf[64];
  525. ssize_t len;
  526. len = scnprintf(buf, sizeof(buf),
  527. "mst_mode = %d, mst_state = %d\n",
  528. debug->parser->has_mst,
  529. debug->panel->mst_state);
  530. return simple_read_from_buffer(user_buff, count, ppos, buf, len);
  531. }
  532. static ssize_t dp_debug_mst_mode_write(struct file *file,
  533. const char __user *user_buff, size_t count, loff_t *ppos)
  534. {
  535. struct dp_debug_private *debug = file->private_data;
  536. char buf[SZ_8];
  537. size_t len = 0;
  538. u32 mst_mode = 0;
  539. if (!debug)
  540. return -ENODEV;
  541. if (*ppos)
  542. return 0;
  543. len = min_t(size_t, count, SZ_8 - 1);
  544. if (copy_from_user(buf, user_buff, len))
  545. return 0;
  546. buf[len] = '\0';
  547. if (kstrtoint(buf, 10, &mst_mode) != 0)
  548. return 0;
  549. debug->parser->has_mst = mst_mode ? true : false;
  550. DP_DEBUG("mst_enable: %d\n", mst_mode);
  551. return len;
  552. }
  553. static ssize_t dp_debug_max_pclk_khz_write(struct file *file,
  554. const char __user *user_buff, size_t count, loff_t *ppos)
  555. {
  556. struct dp_debug_private *debug = file->private_data;
  557. char buf[SZ_8];
  558. size_t len = 0;
  559. u32 max_pclk = 0;
  560. if (!debug)
  561. return -ENODEV;
  562. if (*ppos)
  563. return 0;
  564. len = min_t(size_t, count, SZ_8 - 1);
  565. if (copy_from_user(buf, user_buff, len))
  566. return 0;
  567. buf[len] = '\0';
  568. if (kstrtoint(buf, 10, &max_pclk) != 0)
  569. return 0;
  570. if (max_pclk > debug->parser->max_pclk_khz)
  571. DP_ERR("requested: %d, max_pclk_khz:%d\n", max_pclk,
  572. debug->parser->max_pclk_khz);
  573. else
  574. debug->dp_debug.max_pclk_khz = max_pclk;
  575. DP_DEBUG("max_pclk_khz: %d\n", max_pclk);
  576. return len;
  577. }
  578. static ssize_t dp_debug_max_pclk_khz_read(struct file *file,
  579. char __user *user_buff, size_t count, loff_t *ppos)
  580. {
  581. struct dp_debug_private *debug = file->private_data;
  582. char *buf;
  583. u32 len = 0;
  584. if (!debug)
  585. return -ENODEV;
  586. if (*ppos)
  587. return 0;
  588. buf = kzalloc(SZ_4K, GFP_KERNEL);
  589. if (ZERO_OR_NULL_PTR(buf))
  590. return -ENOMEM;
  591. len += snprintf(buf + len, (SZ_4K - len),
  592. "max_pclk_khz = %d, org: %d\n",
  593. debug->dp_debug.max_pclk_khz,
  594. debug->parser->max_pclk_khz);
  595. len = min_t(size_t, count, len);
  596. if (copy_to_user(user_buff, buf, len)) {
  597. kfree(buf);
  598. return -EFAULT;
  599. }
  600. *ppos += len;
  601. kfree(buf);
  602. return len;
  603. }
  604. static ssize_t dp_debug_mst_sideband_mode_write(struct file *file,
  605. const char __user *user_buff, size_t count, loff_t *ppos)
  606. {
  607. struct dp_debug_private *debug = file->private_data;
  608. char buf[SZ_8];
  609. size_t len = 0;
  610. int mst_sideband_mode = 0;
  611. u32 mst_port_cnt = 0;
  612. if (!debug)
  613. return -ENODEV;
  614. /* Leave room for termination char */
  615. len = min_t(size_t, count, SZ_8 - 1);
  616. if (copy_from_user(buf, user_buff, len))
  617. return -EFAULT;
  618. buf[len] = '\0';
  619. if (sscanf(buf, "%d %u", &mst_sideband_mode, &mst_port_cnt) != 2) {
  620. DP_ERR("invalid input\n");
  621. return -EINVAL;
  622. }
  623. if (mst_port_cnt > DP_MST_SIM_MAX_PORTS) {
  624. DP_ERR("port cnt:%d exceeding max:%d\n", mst_port_cnt,
  625. DP_MST_SIM_MAX_PORTS);
  626. return -EINVAL;
  627. }
  628. debug->parser->has_mst_sideband = mst_sideband_mode ? true : false;
  629. debug->dp_debug.mst_port_cnt = mst_port_cnt;
  630. DP_DEBUG("mst_sideband_mode: %d port_cnt:%d\n",
  631. mst_sideband_mode, mst_port_cnt);
  632. return count;
  633. }
  634. static ssize_t dp_debug_tpg_write(struct file *file,
  635. const char __user *user_buff, size_t count, loff_t *ppos)
  636. {
  637. struct dp_debug_private *debug = file->private_data;
  638. char buf[SZ_8];
  639. size_t len = 0;
  640. u32 tpg_state = 0;
  641. if (!debug)
  642. return -ENODEV;
  643. if (*ppos)
  644. return 0;
  645. /* Leave room for termination char */
  646. len = min_t(size_t, count, SZ_8 - 1);
  647. if (copy_from_user(buf, user_buff, len))
  648. goto bail;
  649. buf[len] = '\0';
  650. if (kstrtoint(buf, 10, &tpg_state) != 0)
  651. goto bail;
  652. tpg_state &= 0x1;
  653. DP_DEBUG("tpg_state: %d\n", tpg_state);
  654. if (tpg_state == debug->dp_debug.tpg_state)
  655. goto bail;
  656. if (debug->panel)
  657. debug->panel->tpg_config(debug->panel, tpg_state);
  658. debug->dp_debug.tpg_state = tpg_state;
  659. bail:
  660. return len;
  661. }
  662. static ssize_t dp_debug_write_exe_mode(struct file *file,
  663. const char __user *user_buff, size_t count, loff_t *ppos)
  664. {
  665. struct dp_debug_private *debug = file->private_data;
  666. char buf[SZ_32];
  667. size_t len = 0;
  668. if (!debug)
  669. return -ENODEV;
  670. if (*ppos)
  671. return 0;
  672. len = min_t(size_t, count, SZ_32 - 1);
  673. if (copy_from_user(buf, user_buff, len))
  674. goto end;
  675. buf[len] = '\0';
  676. if (sscanf(buf, "%3s", debug->exe_mode) != 1)
  677. goto end;
  678. if (strcmp(debug->exe_mode, "hw") &&
  679. strcmp(debug->exe_mode, "sw") &&
  680. strcmp(debug->exe_mode, "all"))
  681. goto end;
  682. debug->catalog->set_exe_mode(debug->catalog, debug->exe_mode);
  683. end:
  684. return len;
  685. }
  686. static ssize_t dp_debug_read_connected(struct file *file,
  687. char __user *user_buff, size_t count, loff_t *ppos)
  688. {
  689. struct dp_debug_private *debug = file->private_data;
  690. char buf[SZ_8];
  691. u32 len = 0;
  692. if (!debug)
  693. return -ENODEV;
  694. if (*ppos)
  695. return 0;
  696. len += snprintf(buf, SZ_8, "%d\n", debug->hpd->hpd_high);
  697. len = min_t(size_t, count, len);
  698. if (copy_to_user(user_buff, buf, len))
  699. return -EFAULT;
  700. *ppos += len;
  701. return len;
  702. }
  703. static ssize_t dp_debug_write_hdcp(struct file *file,
  704. const char __user *user_buff, size_t count, loff_t *ppos)
  705. {
  706. struct dp_debug_private *debug = file->private_data;
  707. char buf[SZ_8];
  708. size_t len = 0;
  709. int hdcp = 0;
  710. if (!debug)
  711. return -ENODEV;
  712. if (*ppos)
  713. return 0;
  714. /* Leave room for termination char */
  715. len = min_t(size_t, count, SZ_8 - 1);
  716. if (copy_from_user(buf, user_buff, len))
  717. goto end;
  718. buf[len] = '\0';
  719. if (kstrtoint(buf, 10, &hdcp) != 0)
  720. goto end;
  721. debug->dp_debug.hdcp_disabled = !hdcp;
  722. end:
  723. return len;
  724. }
  725. static ssize_t dp_debug_read_hdcp(struct file *file,
  726. char __user *user_buff, size_t count, loff_t *ppos)
  727. {
  728. struct dp_debug_private *debug = file->private_data;
  729. u32 len = 0;
  730. if (!debug)
  731. return -ENODEV;
  732. if (*ppos)
  733. return 0;
  734. len = sizeof(debug->dp_debug.hdcp_status);
  735. len = min_t(size_t, count, len);
  736. if (copy_to_user(user_buff, debug->dp_debug.hdcp_status, len))
  737. return -EFAULT;
  738. *ppos += len;
  739. return len;
  740. }
  741. static int dp_debug_check_buffer_overflow(int rc, int *max_size, int *len)
  742. {
  743. if (rc >= *max_size) {
  744. DP_ERR("buffer overflow\n");
  745. return -EINVAL;
  746. }
  747. *len += rc;
  748. *max_size = SZ_4K - *len;
  749. return 0;
  750. }
  751. static ssize_t dp_debug_read_edid_modes(struct file *file,
  752. char __user *user_buff, size_t count, loff_t *ppos)
  753. {
  754. struct dp_debug_private *debug = file->private_data;
  755. char *buf;
  756. u32 len = 0, ret = 0, max_size = SZ_4K;
  757. int rc = 0;
  758. struct drm_connector *connector;
  759. struct drm_display_mode *mode;
  760. if (!debug) {
  761. DP_ERR("invalid data\n");
  762. rc = -ENODEV;
  763. goto error;
  764. }
  765. connector = *debug->connector;
  766. if (!connector) {
  767. DP_ERR("connector is NULL\n");
  768. rc = -EINVAL;
  769. goto error;
  770. }
  771. if (*ppos)
  772. goto error;
  773. buf = kzalloc(SZ_4K, GFP_KERNEL);
  774. if (ZERO_OR_NULL_PTR(buf)) {
  775. rc = -ENOMEM;
  776. goto error;
  777. }
  778. mutex_lock(&connector->dev->mode_config.mutex);
  779. list_for_each_entry(mode, &connector->modes, head) {
  780. ret = snprintf(buf + len, max_size,
  781. "%s %d %d %d %d %d 0x%x\n",
  782. mode->name, mode->vrefresh, mode->picture_aspect_ratio,
  783. mode->htotal, mode->vtotal, mode->clock, mode->flags);
  784. if (dp_debug_check_buffer_overflow(ret, &max_size, &len))
  785. break;
  786. }
  787. mutex_unlock(&connector->dev->mode_config.mutex);
  788. len = min_t(size_t, count, len);
  789. if (copy_to_user(user_buff, buf, len)) {
  790. kfree(buf);
  791. rc = -EFAULT;
  792. goto error;
  793. }
  794. *ppos += len;
  795. kfree(buf);
  796. return len;
  797. error:
  798. return rc;
  799. }
  800. static ssize_t dp_debug_read_edid_modes_mst(struct file *file,
  801. char __user *user_buff, size_t count, loff_t *ppos)
  802. {
  803. struct dp_debug_private *debug = file->private_data;
  804. struct dp_mst_connector *mst_connector;
  805. char *buf;
  806. u32 len = 0, ret = 0, max_size = SZ_4K;
  807. int rc = 0;
  808. struct drm_connector *connector;
  809. struct drm_display_mode *mode;
  810. bool in_list = false;
  811. if (!debug) {
  812. DP_ERR("invalid data\n");
  813. rc = -ENODEV;
  814. goto error;
  815. }
  816. mutex_lock(&debug->dp_debug.dp_mst_connector_list.lock);
  817. list_for_each_entry(mst_connector,
  818. &debug->dp_debug.dp_mst_connector_list.list, list) {
  819. if (mst_connector->con_id == debug->mst_con_id) {
  820. connector = mst_connector->conn;
  821. in_list = true;
  822. }
  823. }
  824. mutex_unlock(&debug->dp_debug.dp_mst_connector_list.lock);
  825. if (!in_list) {
  826. DP_ERR("connector %u not in mst list\n", debug->mst_con_id);
  827. rc = -EINVAL;
  828. goto error;
  829. }
  830. if (!connector) {
  831. DP_ERR("connector is NULL\n");
  832. rc = -EINVAL;
  833. goto error;
  834. }
  835. if (*ppos)
  836. goto error;
  837. buf = kzalloc(SZ_4K, GFP_KERNEL);
  838. if (!buf) {
  839. rc = -ENOMEM;
  840. goto error;
  841. }
  842. mutex_lock(&connector->dev->mode_config.mutex);
  843. list_for_each_entry(mode, &connector->modes, head) {
  844. ret = snprintf(buf + len, max_size,
  845. "%s %d %d %d %d %d 0x%x\n",
  846. mode->name, mode->vrefresh,
  847. mode->picture_aspect_ratio, mode->htotal,
  848. mode->vtotal, mode->clock, mode->flags);
  849. if (dp_debug_check_buffer_overflow(ret, &max_size, &len))
  850. break;
  851. }
  852. mutex_unlock(&connector->dev->mode_config.mutex);
  853. len = min_t(size_t, count, len);
  854. if (copy_to_user(user_buff, buf, len)) {
  855. kfree(buf);
  856. rc = -EFAULT;
  857. goto error;
  858. }
  859. *ppos += len;
  860. kfree(buf);
  861. return len;
  862. error:
  863. return rc;
  864. }
  865. static ssize_t dp_debug_read_mst_con_id(struct file *file,
  866. char __user *user_buff, size_t count, loff_t *ppos)
  867. {
  868. struct dp_debug_private *debug = file->private_data;
  869. char *buf;
  870. u32 len = 0, ret = 0, max_size = SZ_4K;
  871. int rc = 0;
  872. if (!debug) {
  873. DP_ERR("invalid data\n");
  874. rc = -ENODEV;
  875. goto error;
  876. }
  877. if (*ppos)
  878. goto error;
  879. buf = kzalloc(SZ_4K, GFP_KERNEL);
  880. if (!buf) {
  881. rc = -ENOMEM;
  882. goto error;
  883. }
  884. ret = snprintf(buf, max_size, "%u\n", debug->mst_con_id);
  885. len += ret;
  886. len = min_t(size_t, count, len);
  887. if (copy_to_user(user_buff, buf, len)) {
  888. kfree(buf);
  889. rc = -EFAULT;
  890. goto error;
  891. }
  892. *ppos += len;
  893. kfree(buf);
  894. return len;
  895. error:
  896. return rc;
  897. }
  898. static ssize_t dp_debug_read_mst_conn_info(struct file *file,
  899. char __user *user_buff, size_t count, loff_t *ppos)
  900. {
  901. struct dp_debug_private *debug = file->private_data;
  902. struct dp_mst_connector *mst_connector;
  903. char *buf;
  904. u32 len = 0, ret = 0, max_size = SZ_4K;
  905. int rc = 0;
  906. struct drm_connector *connector;
  907. if (!debug) {
  908. DP_ERR("invalid data\n");
  909. rc = -ENODEV;
  910. goto error;
  911. }
  912. if (*ppos)
  913. goto error;
  914. buf = kzalloc(SZ_4K, GFP_KERNEL);
  915. if (!buf) {
  916. rc = -ENOMEM;
  917. goto error;
  918. }
  919. mutex_lock(&debug->dp_debug.dp_mst_connector_list.lock);
  920. list_for_each_entry(mst_connector,
  921. &debug->dp_debug.dp_mst_connector_list.list, list) {
  922. /* Do not print info for head node */
  923. if (mst_connector->con_id == -1)
  924. continue;
  925. connector = mst_connector->conn;
  926. if (!connector) {
  927. DP_ERR("connector for id %d is NULL\n",
  928. mst_connector->con_id);
  929. continue;
  930. }
  931. ret = scnprintf(buf + len, max_size,
  932. "conn name:%s, conn id:%d state:%d\n",
  933. connector->name, connector->base.id,
  934. connector->status);
  935. if (dp_debug_check_buffer_overflow(ret, &max_size, &len))
  936. break;
  937. }
  938. mutex_unlock(&debug->dp_debug.dp_mst_connector_list.lock);
  939. len = min_t(size_t, count, len);
  940. if (copy_to_user(user_buff, buf, len)) {
  941. kfree(buf);
  942. rc = -EFAULT;
  943. goto error;
  944. }
  945. *ppos += len;
  946. kfree(buf);
  947. return len;
  948. error:
  949. return rc;
  950. }
  951. static ssize_t dp_debug_read_info(struct file *file, char __user *user_buff,
  952. size_t count, loff_t *ppos)
  953. {
  954. struct dp_debug_private *debug = file->private_data;
  955. char *buf;
  956. u32 len = 0, rc = 0;
  957. u32 max_size = SZ_4K;
  958. if (!debug)
  959. return -ENODEV;
  960. if (*ppos)
  961. return 0;
  962. buf = kzalloc(SZ_4K, GFP_KERNEL);
  963. if (ZERO_OR_NULL_PTR(buf))
  964. return -ENOMEM;
  965. rc = snprintf(buf + len, max_size, "\tstate=0x%x\n", debug->aux->state);
  966. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  967. goto error;
  968. rc = snprintf(buf + len, max_size, "\tlink_rate=%u\n",
  969. debug->panel->link_info.rate);
  970. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  971. goto error;
  972. rc = snprintf(buf + len, max_size, "\tnum_lanes=%u\n",
  973. debug->panel->link_info.num_lanes);
  974. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  975. goto error;
  976. rc = snprintf(buf + len, max_size, "\tresolution=%dx%d@%dHz\n",
  977. debug->panel->pinfo.h_active,
  978. debug->panel->pinfo.v_active,
  979. debug->panel->pinfo.refresh_rate);
  980. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  981. goto error;
  982. rc = snprintf(buf + len, max_size, "\tpclock=%dKHz\n",
  983. debug->panel->pinfo.pixel_clk_khz);
  984. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  985. goto error;
  986. rc = snprintf(buf + len, max_size, "\tbpp=%d\n",
  987. debug->panel->pinfo.bpp);
  988. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  989. goto error;
  990. /* Link Information */
  991. rc = snprintf(buf + len, max_size, "\ttest_req=%s\n",
  992. dp_link_get_test_name(debug->link->sink_request));
  993. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  994. goto error;
  995. rc = snprintf(buf + len, max_size,
  996. "\tlane_count=%d\n", debug->link->link_params.lane_count);
  997. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  998. goto error;
  999. rc = snprintf(buf + len, max_size,
  1000. "\tbw_code=%d\n", debug->link->link_params.bw_code);
  1001. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1002. goto error;
  1003. rc = snprintf(buf + len, max_size,
  1004. "\tv_level=%d\n", debug->link->phy_params.v_level);
  1005. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1006. goto error;
  1007. rc = snprintf(buf + len, max_size,
  1008. "\tp_level=%d\n", debug->link->phy_params.p_level);
  1009. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1010. goto error;
  1011. len = min_t(size_t, count, len);
  1012. if (copy_to_user(user_buff, buf, len))
  1013. goto error;
  1014. *ppos += len;
  1015. kfree(buf);
  1016. return len;
  1017. error:
  1018. kfree(buf);
  1019. return -EINVAL;
  1020. }
  1021. static ssize_t dp_debug_bw_code_read(struct file *file,
  1022. char __user *user_buff, size_t count, loff_t *ppos)
  1023. {
  1024. struct dp_debug_private *debug = file->private_data;
  1025. char *buf;
  1026. u32 len = 0;
  1027. if (!debug)
  1028. return -ENODEV;
  1029. if (*ppos)
  1030. return 0;
  1031. buf = kzalloc(SZ_4K, GFP_KERNEL);
  1032. if (ZERO_OR_NULL_PTR(buf))
  1033. return -ENOMEM;
  1034. len += snprintf(buf + len, (SZ_4K - len),
  1035. "max_bw_code = %d\n", debug->panel->max_bw_code);
  1036. len = min_t(size_t, count, len);
  1037. if (copy_to_user(user_buff, buf, len)) {
  1038. kfree(buf);
  1039. return -EFAULT;
  1040. }
  1041. *ppos += len;
  1042. kfree(buf);
  1043. return len;
  1044. }
  1045. static ssize_t dp_debug_tpg_read(struct file *file,
  1046. char __user *user_buff, size_t count, loff_t *ppos)
  1047. {
  1048. struct dp_debug_private *debug = file->private_data;
  1049. char buf[SZ_8];
  1050. u32 len = 0;
  1051. if (!debug)
  1052. return -ENODEV;
  1053. if (*ppos)
  1054. return 0;
  1055. len += snprintf(buf, SZ_8, "%d\n", debug->dp_debug.tpg_state);
  1056. len = min_t(size_t, count, len);
  1057. if (copy_to_user(user_buff, buf, len))
  1058. return -EFAULT;
  1059. *ppos += len;
  1060. return len;
  1061. }
  1062. static int dp_debug_print_hdr_params_to_buf(struct drm_connector *connector,
  1063. char *buf, u32 size)
  1064. {
  1065. int rc;
  1066. u32 i, len = 0, max_size = size;
  1067. struct sde_connector *c_conn;
  1068. struct sde_connector_state *c_state;
  1069. struct drm_msm_ext_hdr_metadata *hdr;
  1070. c_conn = to_sde_connector(connector);
  1071. c_state = to_sde_connector_state(connector->state);
  1072. hdr = &c_state->hdr_meta;
  1073. rc = snprintf(buf + len, max_size,
  1074. "============SINK HDR PARAMETERS===========\n");
  1075. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1076. goto error;
  1077. rc = snprintf(buf + len, max_size, "eotf = %d\n",
  1078. c_conn->hdr_eotf);
  1079. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1080. goto error;
  1081. rc = snprintf(buf + len, max_size, "type_one = %d\n",
  1082. c_conn->hdr_metadata_type_one);
  1083. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1084. goto error;
  1085. rc = snprintf(buf + len, max_size, "hdr_plus_app_ver = %d\n",
  1086. c_conn->hdr_plus_app_ver);
  1087. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1088. goto error;
  1089. rc = snprintf(buf + len, max_size, "max_luminance = %d\n",
  1090. c_conn->hdr_max_luminance);
  1091. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1092. goto error;
  1093. rc = snprintf(buf + len, max_size, "avg_luminance = %d\n",
  1094. c_conn->hdr_avg_luminance);
  1095. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1096. goto error;
  1097. rc = snprintf(buf + len, max_size, "min_luminance = %d\n",
  1098. c_conn->hdr_min_luminance);
  1099. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1100. goto error;
  1101. rc = snprintf(buf + len, max_size,
  1102. "============VIDEO HDR PARAMETERS===========\n");
  1103. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1104. goto error;
  1105. rc = snprintf(buf + len, max_size, "hdr_state = %d\n", hdr->hdr_state);
  1106. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1107. goto error;
  1108. rc = snprintf(buf + len, max_size, "hdr_supported = %d\n",
  1109. hdr->hdr_supported);
  1110. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1111. goto error;
  1112. rc = snprintf(buf + len, max_size, "eotf = %d\n", hdr->eotf);
  1113. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1114. goto error;
  1115. rc = snprintf(buf + len, max_size, "white_point_x = %d\n",
  1116. hdr->white_point_x);
  1117. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1118. goto error;
  1119. rc = snprintf(buf + len, max_size, "white_point_y = %d\n",
  1120. hdr->white_point_y);
  1121. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1122. goto error;
  1123. rc = snprintf(buf + len, max_size, "max_luminance = %d\n",
  1124. hdr->max_luminance);
  1125. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1126. goto error;
  1127. rc = snprintf(buf + len, max_size, "min_luminance = %d\n",
  1128. hdr->min_luminance);
  1129. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1130. goto error;
  1131. rc = snprintf(buf + len, max_size, "max_content_light_level = %d\n",
  1132. hdr->max_content_light_level);
  1133. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1134. goto error;
  1135. rc = snprintf(buf + len, max_size, "min_content_light_level = %d\n",
  1136. hdr->max_average_light_level);
  1137. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1138. goto error;
  1139. for (i = 0; i < HDR_PRIMARIES_COUNT; i++) {
  1140. rc = snprintf(buf + len, max_size, "primaries_x[%d] = %d\n",
  1141. i, hdr->display_primaries_x[i]);
  1142. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1143. goto error;
  1144. rc = snprintf(buf + len, max_size, "primaries_y[%d] = %d\n",
  1145. i, hdr->display_primaries_y[i]);
  1146. if (dp_debug_check_buffer_overflow(rc, &max_size, &len))
  1147. goto error;
  1148. }
  1149. if (hdr->hdr_plus_payload && hdr->hdr_plus_payload_size) {
  1150. u32 rowsize = 16, rem;
  1151. struct sde_connector_dyn_hdr_metadata *dhdr =
  1152. &c_state->dyn_hdr_meta;
  1153. /**
  1154. * Do not use user pointer from hdr->hdr_plus_payload directly,
  1155. * instead use kernel's cached copy of payload data.
  1156. */
  1157. for (i = 0; i < dhdr->dynamic_hdr_payload_size; i += rowsize) {
  1158. rc = snprintf(buf + len, max_size, "DHDR: ");
  1159. if (dp_debug_check_buffer_overflow(rc, &max_size,
  1160. &len))
  1161. goto error;
  1162. rem = dhdr->dynamic_hdr_payload_size - i;
  1163. rc = hex_dump_to_buffer(&dhdr->dynamic_hdr_payload[i],
  1164. min(rowsize, rem), rowsize, 1, buf + len,
  1165. max_size, false);
  1166. if (dp_debug_check_buffer_overflow(rc, &max_size,
  1167. &len))
  1168. goto error;
  1169. rc = snprintf(buf + len, max_size, "\n");
  1170. if (dp_debug_check_buffer_overflow(rc, &max_size,
  1171. &len))
  1172. goto error;
  1173. }
  1174. }
  1175. return len;
  1176. error:
  1177. return -EOVERFLOW;
  1178. }
  1179. static ssize_t dp_debug_read_hdr(struct file *file,
  1180. char __user *user_buff, size_t count, loff_t *ppos)
  1181. {
  1182. struct dp_debug_private *debug = file->private_data;
  1183. char *buf = NULL;
  1184. u32 len = 0;
  1185. u32 max_size = SZ_4K;
  1186. struct drm_connector *connector;
  1187. if (!debug) {
  1188. DP_ERR("invalid data\n");
  1189. return -ENODEV;
  1190. }
  1191. connector = *debug->connector;
  1192. if (!connector) {
  1193. DP_ERR("connector is NULL\n");
  1194. return -EINVAL;
  1195. }
  1196. if (*ppos)
  1197. return 0;
  1198. buf = kzalloc(max_size, GFP_KERNEL);
  1199. if (ZERO_OR_NULL_PTR(buf))
  1200. return -ENOMEM;
  1201. len = dp_debug_print_hdr_params_to_buf(connector, buf, max_size);
  1202. if (len == -EOVERFLOW) {
  1203. kfree(buf);
  1204. return len;
  1205. }
  1206. len = min_t(size_t, count, len);
  1207. if (copy_to_user(user_buff, buf, len)) {
  1208. kfree(buf);
  1209. return -EFAULT;
  1210. }
  1211. *ppos += len;
  1212. kfree(buf);
  1213. return len;
  1214. }
  1215. static ssize_t dp_debug_read_hdr_mst(struct file *file,
  1216. char __user *user_buff, size_t count, loff_t *ppos)
  1217. {
  1218. struct dp_debug_private *debug = file->private_data;
  1219. char *buf = NULL;
  1220. u32 len = 0, max_size = SZ_4K;
  1221. struct dp_mst_connector *mst_connector;
  1222. struct drm_connector *connector;
  1223. bool in_list = false;
  1224. if (!debug) {
  1225. DP_ERR("invalid data\n");
  1226. return -ENODEV;
  1227. }
  1228. mutex_lock(&debug->dp_debug.dp_mst_connector_list.lock);
  1229. list_for_each_entry(mst_connector,
  1230. &debug->dp_debug.dp_mst_connector_list.list, list) {
  1231. if (mst_connector->con_id == debug->mst_con_id) {
  1232. connector = mst_connector->conn;
  1233. in_list = true;
  1234. }
  1235. }
  1236. mutex_unlock(&debug->dp_debug.dp_mst_connector_list.lock);
  1237. if (!in_list) {
  1238. DP_ERR("connector %u not in mst list\n", debug->mst_con_id);
  1239. return -EINVAL;
  1240. }
  1241. if (!connector) {
  1242. DP_ERR("connector is NULL\n");
  1243. return -EINVAL;
  1244. }
  1245. if (*ppos)
  1246. return 0;
  1247. buf = kzalloc(max_size, GFP_KERNEL);
  1248. if (ZERO_OR_NULL_PTR(buf))
  1249. return -ENOMEM;
  1250. len = dp_debug_print_hdr_params_to_buf(connector, buf, max_size);
  1251. if (len == -EOVERFLOW) {
  1252. kfree(buf);
  1253. return len;
  1254. }
  1255. len = min_t(size_t, count, len);
  1256. if (copy_to_user(user_buff, buf, len)) {
  1257. kfree(buf);
  1258. return -EFAULT;
  1259. }
  1260. *ppos += len;
  1261. kfree(buf);
  1262. return len;
  1263. }
  1264. static void dp_debug_set_sim_mode(struct dp_debug_private *debug, bool sim)
  1265. {
  1266. if (sim) {
  1267. if (dp_debug_get_edid_buf(debug))
  1268. return;
  1269. if (dp_debug_get_dpcd_buf(debug)) {
  1270. devm_kfree(debug->dev, debug->edid);
  1271. debug->edid = NULL;
  1272. return;
  1273. }
  1274. debug->dp_debug.sim_mode = true;
  1275. debug->aux->set_sim_mode(debug->aux, true,
  1276. debug->edid, debug->dpcd);
  1277. debug->ctrl->set_sim_mode(debug->ctrl, true);
  1278. } else {
  1279. if (debug->hotplug) {
  1280. DP_WARN("sim mode off before hotplug disconnect\n");
  1281. debug->hpd->simulate_connect(debug->hpd, false);
  1282. debug->hotplug = false;
  1283. }
  1284. debug->aux->abort(debug->aux, true);
  1285. debug->ctrl->abort(debug->ctrl, true);
  1286. debug->aux->set_sim_mode(debug->aux, false, NULL, NULL);
  1287. debug->ctrl->set_sim_mode(debug->ctrl, false);
  1288. debug->dp_debug.sim_mode = false;
  1289. debug->panel->set_edid(debug->panel, 0);
  1290. if (debug->edid) {
  1291. devm_kfree(debug->dev, debug->edid);
  1292. debug->edid = NULL;
  1293. }
  1294. debug->panel->set_dpcd(debug->panel, 0);
  1295. if (debug->dpcd) {
  1296. devm_kfree(debug->dev, debug->dpcd);
  1297. debug->dpcd = NULL;
  1298. }
  1299. }
  1300. /*
  1301. * print simulation status as this code is executed
  1302. * only while running in debug mode which is manually
  1303. * triggered by a tester or a script.
  1304. */
  1305. DP_INFO("%s\n", sim ? "[ON]" : "[OFF]");
  1306. }
  1307. static ssize_t dp_debug_write_sim(struct file *file,
  1308. const char __user *user_buff, size_t count, loff_t *ppos)
  1309. {
  1310. struct dp_debug_private *debug = file->private_data;
  1311. char buf[SZ_8];
  1312. size_t len = 0;
  1313. int sim;
  1314. if (!debug)
  1315. return -ENODEV;
  1316. if (*ppos)
  1317. return 0;
  1318. mutex_lock(&debug->lock);
  1319. /* Leave room for termination char */
  1320. len = min_t(size_t, count, SZ_8 - 1);
  1321. if (copy_from_user(buf, user_buff, len))
  1322. goto end;
  1323. buf[len] = '\0';
  1324. if (kstrtoint(buf, 10, &sim) != 0)
  1325. goto end;
  1326. dp_debug_set_sim_mode(debug, sim);
  1327. end:
  1328. mutex_unlock(&debug->lock);
  1329. return len;
  1330. }
  1331. static ssize_t dp_debug_write_attention(struct file *file,
  1332. const char __user *user_buff, size_t count, loff_t *ppos)
  1333. {
  1334. struct dp_debug_private *debug = file->private_data;
  1335. char buf[SZ_8];
  1336. size_t len = 0;
  1337. int vdo;
  1338. if (!debug)
  1339. return -ENODEV;
  1340. if (*ppos)
  1341. return 0;
  1342. /* Leave room for termination char */
  1343. len = min_t(size_t, count, SZ_8 - 1);
  1344. if (copy_from_user(buf, user_buff, len))
  1345. goto end;
  1346. buf[len] = '\0';
  1347. if (kstrtoint(buf, 10, &vdo) != 0)
  1348. goto end;
  1349. debug->hpd->simulate_attention(debug->hpd, vdo);
  1350. end:
  1351. return len;
  1352. }
  1353. static ssize_t dp_debug_write_dump(struct file *file,
  1354. const char __user *user_buff, size_t count, loff_t *ppos)
  1355. {
  1356. struct dp_debug_private *debug = file->private_data;
  1357. char buf[SZ_32];
  1358. size_t len = 0;
  1359. if (!debug)
  1360. return -ENODEV;
  1361. if (*ppos)
  1362. return 0;
  1363. /* Leave room for termination char */
  1364. len = min_t(size_t, count, SZ_32 - 1);
  1365. if (copy_from_user(buf, user_buff, len))
  1366. goto end;
  1367. buf[len] = '\0';
  1368. if (sscanf(buf, "%31s", debug->reg_dump) != 1)
  1369. goto end;
  1370. /* qfprom register dump not supported */
  1371. if (!strcmp(debug->reg_dump, "qfprom_physical"))
  1372. strlcpy(debug->reg_dump, "clear", sizeof(debug->reg_dump));
  1373. end:
  1374. return len;
  1375. }
  1376. static ssize_t dp_debug_read_dump(struct file *file,
  1377. char __user *user_buff, size_t count, loff_t *ppos)
  1378. {
  1379. int rc = 0;
  1380. struct dp_debug_private *debug = file->private_data;
  1381. u8 *buf = NULL;
  1382. u32 len = 0;
  1383. char prefix[SZ_32];
  1384. if (!debug)
  1385. return -ENODEV;
  1386. if (*ppos)
  1387. return 0;
  1388. if (!debug->hpd->hpd_high || !strlen(debug->reg_dump))
  1389. goto end;
  1390. rc = debug->catalog->get_reg_dump(debug->catalog,
  1391. debug->reg_dump, &buf, &len);
  1392. if (rc)
  1393. goto end;
  1394. snprintf(prefix, sizeof(prefix), "%s: ", debug->reg_dump);
  1395. print_hex_dump_debug(prefix, DUMP_PREFIX_NONE,
  1396. 16, 4, buf, len, false);
  1397. len = min_t(size_t, count, len);
  1398. if (copy_to_user(user_buff, buf, len))
  1399. return -EFAULT;
  1400. *ppos += len;
  1401. end:
  1402. return len;
  1403. }
  1404. static const struct file_operations dp_debug_fops = {
  1405. .open = simple_open,
  1406. .read = dp_debug_read_info,
  1407. };
  1408. static const struct file_operations edid_modes_fops = {
  1409. .open = simple_open,
  1410. .read = dp_debug_read_edid_modes,
  1411. .write = dp_debug_write_edid_modes,
  1412. };
  1413. static const struct file_operations edid_modes_mst_fops = {
  1414. .open = simple_open,
  1415. .read = dp_debug_read_edid_modes_mst,
  1416. .write = dp_debug_write_edid_modes_mst,
  1417. };
  1418. static const struct file_operations mst_conn_info_fops = {
  1419. .open = simple_open,
  1420. .read = dp_debug_read_mst_conn_info,
  1421. };
  1422. static const struct file_operations mst_con_id_fops = {
  1423. .open = simple_open,
  1424. .read = dp_debug_read_mst_con_id,
  1425. .write = dp_debug_write_mst_con_id,
  1426. };
  1427. static const struct file_operations mst_con_add_fops = {
  1428. .open = simple_open,
  1429. .write = dp_debug_write_mst_con_add,
  1430. };
  1431. static const struct file_operations mst_con_remove_fops = {
  1432. .open = simple_open,
  1433. .write = dp_debug_write_mst_con_remove,
  1434. };
  1435. static const struct file_operations hpd_fops = {
  1436. .open = simple_open,
  1437. .write = dp_debug_write_hpd,
  1438. };
  1439. static const struct file_operations edid_fops = {
  1440. .open = simple_open,
  1441. .write = dp_debug_write_edid,
  1442. };
  1443. static const struct file_operations dpcd_fops = {
  1444. .open = simple_open,
  1445. .write = dp_debug_write_dpcd,
  1446. .read = dp_debug_read_dpcd,
  1447. };
  1448. static const struct file_operations connected_fops = {
  1449. .open = simple_open,
  1450. .read = dp_debug_read_connected,
  1451. };
  1452. static const struct file_operations bw_code_fops = {
  1453. .open = simple_open,
  1454. .read = dp_debug_bw_code_read,
  1455. .write = dp_debug_bw_code_write,
  1456. };
  1457. static const struct file_operations exe_mode_fops = {
  1458. .open = simple_open,
  1459. .write = dp_debug_write_exe_mode,
  1460. };
  1461. static const struct file_operations tpg_fops = {
  1462. .open = simple_open,
  1463. .read = dp_debug_tpg_read,
  1464. .write = dp_debug_tpg_write,
  1465. };
  1466. static const struct file_operations hdr_fops = {
  1467. .open = simple_open,
  1468. .read = dp_debug_read_hdr,
  1469. };
  1470. static const struct file_operations hdr_mst_fops = {
  1471. .open = simple_open,
  1472. .read = dp_debug_read_hdr_mst,
  1473. };
  1474. static const struct file_operations sim_fops = {
  1475. .open = simple_open,
  1476. .write = dp_debug_write_sim,
  1477. };
  1478. static const struct file_operations attention_fops = {
  1479. .open = simple_open,
  1480. .write = dp_debug_write_attention,
  1481. };
  1482. static const struct file_operations dump_fops = {
  1483. .open = simple_open,
  1484. .write = dp_debug_write_dump,
  1485. .read = dp_debug_read_dump,
  1486. };
  1487. static const struct file_operations mst_mode_fops = {
  1488. .open = simple_open,
  1489. .write = dp_debug_mst_mode_write,
  1490. .read = dp_debug_mst_mode_read,
  1491. };
  1492. static const struct file_operations mst_sideband_mode_fops = {
  1493. .open = simple_open,
  1494. .write = dp_debug_mst_sideband_mode_write,
  1495. };
  1496. static const struct file_operations max_pclk_khz_fops = {
  1497. .open = simple_open,
  1498. .write = dp_debug_max_pclk_khz_write,
  1499. .read = dp_debug_max_pclk_khz_read,
  1500. };
  1501. static const struct file_operations hdcp_fops = {
  1502. .open = simple_open,
  1503. .write = dp_debug_write_hdcp,
  1504. .read = dp_debug_read_hdcp,
  1505. };
  1506. static int dp_debug_init_mst(struct dp_debug_private *debug, struct dentry *dir)
  1507. {
  1508. int rc = 0;
  1509. struct dentry *file;
  1510. file = debugfs_create_file("mst_con_id", 0644, dir,
  1511. debug, &mst_con_id_fops);
  1512. if (IS_ERR_OR_NULL(file)) {
  1513. rc = PTR_ERR(file);
  1514. DP_ERR("[%s] debugfs create mst_con_id failed, rc=%d\n",
  1515. DEBUG_NAME, rc);
  1516. return rc;
  1517. }
  1518. file = debugfs_create_file("mst_con_info", 0644, dir,
  1519. debug, &mst_conn_info_fops);
  1520. if (IS_ERR_OR_NULL(file)) {
  1521. rc = PTR_ERR(file);
  1522. DP_ERR("[%s] debugfs create mst_conn_info failed, rc=%d\n",
  1523. DEBUG_NAME, rc);
  1524. return rc;
  1525. }
  1526. file = debugfs_create_file("mst_con_add", 0644, dir,
  1527. debug, &mst_con_add_fops);
  1528. if (IS_ERR_OR_NULL(file)) {
  1529. rc = PTR_ERR(file);
  1530. DRM_ERROR("[%s] debugfs create mst_con_add failed, rc=%d\n",
  1531. DEBUG_NAME, rc);
  1532. return rc;
  1533. }
  1534. file = debugfs_create_file("mst_con_remove", 0644, dir,
  1535. debug, &mst_con_remove_fops);
  1536. if (IS_ERR_OR_NULL(file)) {
  1537. rc = PTR_ERR(file);
  1538. DRM_ERROR("[%s] debugfs create mst_con_remove failed, rc=%d\n",
  1539. DEBUG_NAME, rc);
  1540. return rc;
  1541. }
  1542. file = debugfs_create_file("mst_mode", 0644, dir,
  1543. debug, &mst_mode_fops);
  1544. if (IS_ERR_OR_NULL(file)) {
  1545. rc = PTR_ERR(file);
  1546. DP_ERR("[%s] debugfs mst_mode failed, rc=%d\n",
  1547. DEBUG_NAME, rc);
  1548. return rc;
  1549. }
  1550. file = debugfs_create_file("mst_sideband_mode", 0644, dir,
  1551. debug, &mst_sideband_mode_fops);
  1552. if (IS_ERR_OR_NULL(file)) {
  1553. rc = PTR_ERR(file);
  1554. DP_ERR("[%s] debugfs mst_sideband_mode failed, rc=%d\n",
  1555. DEBUG_NAME, rc);
  1556. return rc;
  1557. }
  1558. return rc;
  1559. }
  1560. static int dp_debug_init_link(struct dp_debug_private *debug,
  1561. struct dentry *dir)
  1562. {
  1563. int rc = 0;
  1564. struct dentry *file;
  1565. file = debugfs_create_file("max_bw_code", 0644, dir,
  1566. debug, &bw_code_fops);
  1567. if (IS_ERR_OR_NULL(file)) {
  1568. rc = PTR_ERR(file);
  1569. DP_ERR("[%s] debugfs max_bw_code failed, rc=%d\n",
  1570. DEBUG_NAME, rc);
  1571. return rc;
  1572. }
  1573. file = debugfs_create_file("max_pclk_khz", 0644, dir,
  1574. debug, &max_pclk_khz_fops);
  1575. if (IS_ERR_OR_NULL(file)) {
  1576. rc = PTR_ERR(file);
  1577. DP_ERR("[%s] debugfs max_pclk_khz failed, rc=%d\n",
  1578. DEBUG_NAME, rc);
  1579. return rc;
  1580. }
  1581. file = debugfs_create_u32("max_lclk_khz", 0644, dir,
  1582. &debug->parser->max_lclk_khz);
  1583. if (IS_ERR_OR_NULL(file)) {
  1584. rc = PTR_ERR(file);
  1585. DP_ERR("[%s] debugfs max_lclk_khz failed, rc=%d\n",
  1586. DEBUG_NAME, rc);
  1587. return rc;
  1588. }
  1589. file = debugfs_create_u32("lane_count", 0644, dir,
  1590. &debug->panel->lane_count);
  1591. if (IS_ERR_OR_NULL(file)) {
  1592. rc = PTR_ERR(file);
  1593. DP_ERR("[%s] debugfs lane_count failed, rc=%d\n",
  1594. DEBUG_NAME, rc);
  1595. return rc;
  1596. }
  1597. file = debugfs_create_u32("link_bw_code", 0644, dir,
  1598. &debug->panel->link_bw_code);
  1599. if (IS_ERR_OR_NULL(file)) {
  1600. rc = PTR_ERR(file);
  1601. DP_ERR("[%s] debugfs link_bw_code failed, rc=%d\n",
  1602. DEBUG_NAME, rc);
  1603. return rc;
  1604. }
  1605. return rc;
  1606. }
  1607. static int dp_debug_init_hdcp(struct dp_debug_private *debug,
  1608. struct dentry *dir)
  1609. {
  1610. int rc = 0;
  1611. struct dentry *file;
  1612. file = debugfs_create_bool("hdcp_wait_sink_sync", 0644, dir,
  1613. &debug->dp_debug.hdcp_wait_sink_sync);
  1614. if (IS_ERR_OR_NULL(file)) {
  1615. rc = PTR_ERR(file);
  1616. DP_ERR("[%s] debugfs hdcp_wait_sink_sync failed, rc=%d\n",
  1617. DEBUG_NAME, rc);
  1618. return rc;
  1619. }
  1620. file = debugfs_create_bool("force_encryption", 0644, dir,
  1621. &debug->dp_debug.force_encryption);
  1622. if (IS_ERR_OR_NULL(file)) {
  1623. rc = PTR_ERR(file);
  1624. DP_ERR("[%s] debugfs force_encryption failed, rc=%d\n",
  1625. DEBUG_NAME, rc);
  1626. return rc;
  1627. }
  1628. return rc;
  1629. }
  1630. static int dp_debug_init_sink_caps(struct dp_debug_private *debug,
  1631. struct dentry *dir)
  1632. {
  1633. int rc = 0;
  1634. struct dentry *file;
  1635. file = debugfs_create_file("edid_modes", 0644, dir,
  1636. debug, &edid_modes_fops);
  1637. if (IS_ERR_OR_NULL(file)) {
  1638. rc = PTR_ERR(file);
  1639. DP_ERR("[%s] debugfs create edid_modes failed, rc=%d\n",
  1640. DEBUG_NAME, rc);
  1641. return rc;
  1642. }
  1643. file = debugfs_create_file("edid_modes_mst", 0644, dir,
  1644. debug, &edid_modes_mst_fops);
  1645. if (IS_ERR_OR_NULL(file)) {
  1646. rc = PTR_ERR(file);
  1647. DP_ERR("[%s] debugfs create edid_modes_mst failed, rc=%d\n",
  1648. DEBUG_NAME, rc);
  1649. return rc;
  1650. }
  1651. file = debugfs_create_file("edid", 0644, dir,
  1652. debug, &edid_fops);
  1653. if (IS_ERR_OR_NULL(file)) {
  1654. rc = PTR_ERR(file);
  1655. DP_ERR("[%s] debugfs edid failed, rc=%d\n",
  1656. DEBUG_NAME, rc);
  1657. return rc;
  1658. }
  1659. file = debugfs_create_file("dpcd", 0644, dir,
  1660. debug, &dpcd_fops);
  1661. if (IS_ERR_OR_NULL(file)) {
  1662. rc = PTR_ERR(file);
  1663. DP_ERR("[%s] debugfs dpcd failed, rc=%d\n",
  1664. DEBUG_NAME, rc);
  1665. return rc;
  1666. }
  1667. return rc;
  1668. }
  1669. static int dp_debug_init_status(struct dp_debug_private *debug,
  1670. struct dentry *dir)
  1671. {
  1672. int rc = 0;
  1673. struct dentry *file;
  1674. file = debugfs_create_file("dp_debug", 0444, dir,
  1675. debug, &dp_debug_fops);
  1676. if (IS_ERR_OR_NULL(file)) {
  1677. rc = PTR_ERR(file);
  1678. DP_ERR("[%s] debugfs create file failed, rc=%d\n",
  1679. DEBUG_NAME, rc);
  1680. return rc;
  1681. }
  1682. file = debugfs_create_file("connected", 0444, dir,
  1683. debug, &connected_fops);
  1684. if (IS_ERR_OR_NULL(file)) {
  1685. rc = PTR_ERR(file);
  1686. DP_ERR("[%s] debugfs connected failed, rc=%d\n",
  1687. DEBUG_NAME, rc);
  1688. return rc;
  1689. }
  1690. file = debugfs_create_file("hdr", 0400, dir, debug, &hdr_fops);
  1691. if (IS_ERR_OR_NULL(file)) {
  1692. rc = PTR_ERR(file);
  1693. DP_ERR("[%s] debugfs hdr failed, rc=%d\n",
  1694. DEBUG_NAME, rc);
  1695. return rc;
  1696. }
  1697. file = debugfs_create_file("hdr_mst", 0400, dir, debug, &hdr_mst_fops);
  1698. if (IS_ERR_OR_NULL(file)) {
  1699. rc = PTR_ERR(file);
  1700. DP_ERR("[%s] debugfs hdr_mst failed, rc=%d\n",
  1701. DEBUG_NAME, rc);
  1702. return rc;
  1703. }
  1704. file = debugfs_create_file("hdcp", 0644, dir, debug, &hdcp_fops);
  1705. if (IS_ERR_OR_NULL(file)) {
  1706. rc = PTR_ERR(file);
  1707. DP_ERR("[%s] debugfs hdcp failed, rc=%d\n",
  1708. DEBUG_NAME, rc);
  1709. return rc;
  1710. }
  1711. return rc;
  1712. }
  1713. static int dp_debug_init_sim(struct dp_debug_private *debug, struct dentry *dir)
  1714. {
  1715. int rc = 0;
  1716. struct dentry *file;
  1717. file = debugfs_create_file("hpd", 0644, dir, debug, &hpd_fops);
  1718. if (IS_ERR_OR_NULL(file)) {
  1719. rc = PTR_ERR(file);
  1720. DP_ERR("[%s] debugfs hpd failed, rc=%d\n",
  1721. DEBUG_NAME, rc);
  1722. return rc;
  1723. }
  1724. file = debugfs_create_file("sim", 0644, dir, debug, &sim_fops);
  1725. if (IS_ERR_OR_NULL(file)) {
  1726. rc = PTR_ERR(file);
  1727. DP_ERR("[%s] debugfs sim failed, rc=%d\n",
  1728. DEBUG_NAME, rc);
  1729. return rc;
  1730. }
  1731. file = debugfs_create_file("attention", 0644, dir,
  1732. debug, &attention_fops);
  1733. if (IS_ERR_OR_NULL(file)) {
  1734. rc = PTR_ERR(file);
  1735. DP_ERR("[%s] debugfs attention failed, rc=%d\n",
  1736. DEBUG_NAME, rc);
  1737. return rc;
  1738. }
  1739. file = debugfs_create_bool("skip_uevent", 0644, dir,
  1740. &debug->dp_debug.skip_uevent);
  1741. if (IS_ERR_OR_NULL(file)) {
  1742. rc = PTR_ERR(file);
  1743. DP_ERR("[%s] debugfs skip_uevent failed, rc=%d\n",
  1744. DEBUG_NAME, rc);
  1745. return rc;
  1746. }
  1747. file = debugfs_create_bool("force_multi_func", 0644, dir,
  1748. &debug->hpd->force_multi_func);
  1749. if (IS_ERR_OR_NULL(file)) {
  1750. rc = PTR_ERR(file);
  1751. DP_ERR("[%s] debugfs force_multi_func failed, rc=%d\n",
  1752. DEBUG_NAME, rc);
  1753. return rc;
  1754. }
  1755. return rc;
  1756. }
  1757. static int dp_debug_init_dsc_fec(struct dp_debug_private *debug,
  1758. struct dentry *dir)
  1759. {
  1760. int rc = 0;
  1761. struct dentry *file;
  1762. file = debugfs_create_bool("dsc_feature_enable", 0644, dir,
  1763. &debug->parser->dsc_feature_enable);
  1764. if (IS_ERR_OR_NULL(file)) {
  1765. rc = PTR_ERR(file);
  1766. DP_ERR("[%s] debugfs dsc_feature failed, rc=%d\n",
  1767. DEBUG_NAME, rc);
  1768. return rc;
  1769. }
  1770. file = debugfs_create_bool("fec_feature_enable", 0644, dir,
  1771. &debug->parser->fec_feature_enable);
  1772. if (IS_ERR_OR_NULL(file)) {
  1773. rc = PTR_ERR(file);
  1774. DP_ERR("[%s] debugfs fec_feature_enable failed, rc=%d\n",
  1775. DEBUG_NAME, rc);
  1776. return rc;
  1777. }
  1778. return rc;
  1779. }
  1780. static int dp_debug_init_tpg(struct dp_debug_private *debug, struct dentry *dir)
  1781. {
  1782. int rc = 0;
  1783. struct dentry *file;
  1784. file = debugfs_create_file("tpg_ctrl", 0644, dir,
  1785. debug, &tpg_fops);
  1786. if (IS_ERR_OR_NULL(file)) {
  1787. rc = PTR_ERR(file);
  1788. DP_ERR("[%s] debugfs tpg failed, rc=%d\n",
  1789. DEBUG_NAME, rc);
  1790. return rc;
  1791. }
  1792. return rc;
  1793. }
  1794. static int dp_debug_init_reg_dump(struct dp_debug_private *debug,
  1795. struct dentry *dir)
  1796. {
  1797. int rc = 0;
  1798. struct dentry *file;
  1799. file = debugfs_create_file("exe_mode", 0644, dir,
  1800. debug, &exe_mode_fops);
  1801. if (IS_ERR_OR_NULL(file)) {
  1802. rc = PTR_ERR(file);
  1803. DP_ERR("[%s] debugfs register failed, rc=%d\n",
  1804. DEBUG_NAME, rc);
  1805. return rc;
  1806. }
  1807. file = debugfs_create_file("dump", 0644, dir,
  1808. debug, &dump_fops);
  1809. if (IS_ERR_OR_NULL(file)) {
  1810. rc = PTR_ERR(file);
  1811. DP_ERR("[%s] debugfs dump failed, rc=%d\n",
  1812. DEBUG_NAME, rc);
  1813. return rc;
  1814. }
  1815. return rc;
  1816. }
  1817. static int dp_debug_init_feature_toggle(struct dp_debug_private *debug,
  1818. struct dentry *dir)
  1819. {
  1820. int rc = 0;
  1821. struct dentry *file;
  1822. file = debugfs_create_bool("ssc_enable", 0644, dir,
  1823. &debug->pll->ssc_en);
  1824. if (IS_ERR_OR_NULL(file)) {
  1825. rc = PTR_ERR(file);
  1826. DP_ERR("[%s] debugfs ssc_enable failed, rc=%d\n",
  1827. DEBUG_NAME, rc);
  1828. return rc;
  1829. }
  1830. file = debugfs_create_bool("widebus_mode", 0644, dir,
  1831. &debug->parser->has_widebus);
  1832. if (IS_ERR_OR_NULL(file)) {
  1833. rc = PTR_ERR(file);
  1834. DP_ERR("[%s] debugfs widebus_mode failed, rc=%d\n",
  1835. DEBUG_NAME, rc);
  1836. return rc;
  1837. }
  1838. return rc;
  1839. }
  1840. static int dp_debug_init(struct dp_debug *dp_debug)
  1841. {
  1842. int rc = 0;
  1843. struct dp_debug_private *debug = container_of(dp_debug,
  1844. struct dp_debug_private, dp_debug);
  1845. struct dentry *dir;
  1846. if (!IS_ENABLED(CONFIG_DEBUG_FS)) {
  1847. DP_WARN("Not creating debug root dir.");
  1848. debug->root = NULL;
  1849. return 0;
  1850. }
  1851. dir = debugfs_create_dir(DEBUG_NAME, NULL);
  1852. if (IS_ERR_OR_NULL(dir)) {
  1853. if (!dir)
  1854. rc = -EINVAL;
  1855. else
  1856. rc = PTR_ERR(dir);
  1857. DP_ERR("[%s] debugfs create dir failed, rc = %d\n",
  1858. DEBUG_NAME, rc);
  1859. goto error;
  1860. }
  1861. debug->root = dir;
  1862. rc = dp_debug_init_status(debug, dir);
  1863. if (rc)
  1864. goto error_remove_dir;
  1865. rc = dp_debug_init_sink_caps(debug, dir);
  1866. if (rc)
  1867. goto error_remove_dir;
  1868. rc = dp_debug_init_mst(debug, dir);
  1869. if (rc)
  1870. goto error_remove_dir;
  1871. rc = dp_debug_init_link(debug, dir);
  1872. if (rc)
  1873. goto error_remove_dir;
  1874. rc = dp_debug_init_hdcp(debug, dir);
  1875. if (rc)
  1876. goto error_remove_dir;
  1877. rc = dp_debug_init_sim(debug, dir);
  1878. if (rc)
  1879. goto error_remove_dir;
  1880. rc = dp_debug_init_dsc_fec(debug, dir);
  1881. if (rc)
  1882. goto error_remove_dir;
  1883. rc = dp_debug_init_tpg(debug, dir);
  1884. if (rc)
  1885. goto error_remove_dir;
  1886. rc = dp_debug_init_reg_dump(debug, dir);
  1887. if (rc)
  1888. goto error_remove_dir;
  1889. rc = dp_debug_init_feature_toggle(debug, dir);
  1890. if (rc)
  1891. goto error_remove_dir;
  1892. return 0;
  1893. error_remove_dir:
  1894. debugfs_remove_recursive(dir);
  1895. error:
  1896. return rc;
  1897. }
  1898. u8 *dp_debug_get_edid(struct dp_debug *dp_debug)
  1899. {
  1900. struct dp_debug_private *debug;
  1901. if (!dp_debug)
  1902. return NULL;
  1903. debug = container_of(dp_debug, struct dp_debug_private, dp_debug);
  1904. return debug->edid;
  1905. }
  1906. static void dp_debug_abort(struct dp_debug *dp_debug)
  1907. {
  1908. struct dp_debug_private *debug;
  1909. if (!dp_debug)
  1910. return;
  1911. debug = container_of(dp_debug, struct dp_debug_private, dp_debug);
  1912. mutex_lock(&debug->lock);
  1913. dp_debug_set_sim_mode(debug, false);
  1914. mutex_unlock(&debug->lock);
  1915. }
  1916. static void dp_debug_set_mst_con(struct dp_debug *dp_debug, int con_id)
  1917. {
  1918. struct dp_debug_private *debug;
  1919. if (!dp_debug)
  1920. return;
  1921. debug = container_of(dp_debug, struct dp_debug_private, dp_debug);
  1922. mutex_lock(&debug->lock);
  1923. debug->mst_con_id = con_id;
  1924. mutex_unlock(&debug->lock);
  1925. DP_INFO("Selecting mst connector %d\n", con_id);
  1926. }
  1927. struct dp_debug *dp_debug_get(struct dp_debug_in *in)
  1928. {
  1929. int rc = 0;
  1930. struct dp_debug_private *debug;
  1931. struct dp_debug *dp_debug;
  1932. if (!in->dev || !in->panel || !in->hpd || !in->link ||
  1933. !in->catalog || !in->ctrl || !in->pll) {
  1934. DP_ERR("invalid input\n");
  1935. rc = -EINVAL;
  1936. goto error;
  1937. }
  1938. debug = devm_kzalloc(in->dev, sizeof(*debug), GFP_KERNEL);
  1939. if (!debug) {
  1940. rc = -ENOMEM;
  1941. goto error;
  1942. }
  1943. debug->dp_debug.debug_en = false;
  1944. debug->hpd = in->hpd;
  1945. debug->link = in->link;
  1946. debug->panel = in->panel;
  1947. debug->aux = in->aux;
  1948. debug->dev = in->dev;
  1949. debug->connector = in->connector;
  1950. debug->catalog = in->catalog;
  1951. debug->parser = in->parser;
  1952. debug->ctrl = in->ctrl;
  1953. debug->pll = in->pll;
  1954. dp_debug = &debug->dp_debug;
  1955. dp_debug->vdisplay = 0;
  1956. dp_debug->hdisplay = 0;
  1957. dp_debug->vrefresh = 0;
  1958. mutex_init(&debug->lock);
  1959. rc = dp_debug_init(dp_debug);
  1960. if (rc) {
  1961. devm_kfree(in->dev, debug);
  1962. goto error;
  1963. }
  1964. debug->aux->access_lock = &debug->lock;
  1965. dp_debug->get_edid = dp_debug_get_edid;
  1966. dp_debug->abort = dp_debug_abort;
  1967. dp_debug->set_mst_con = dp_debug_set_mst_con;
  1968. INIT_LIST_HEAD(&dp_debug->dp_mst_connector_list.list);
  1969. /*
  1970. * Do not associate the head of the list with any connector in order to
  1971. * maintain backwards compatibility with the SST use case.
  1972. */
  1973. dp_debug->dp_mst_connector_list.con_id = -1;
  1974. dp_debug->dp_mst_connector_list.conn = NULL;
  1975. dp_debug->dp_mst_connector_list.debug_en = false;
  1976. mutex_init(&dp_debug->dp_mst_connector_list.lock);
  1977. dp_debug->max_pclk_khz = debug->parser->max_pclk_khz;
  1978. return dp_debug;
  1979. error:
  1980. return ERR_PTR(rc);
  1981. }
  1982. static int dp_debug_deinit(struct dp_debug *dp_debug)
  1983. {
  1984. struct dp_debug_private *debug;
  1985. if (!dp_debug)
  1986. return -EINVAL;
  1987. debug = container_of(dp_debug, struct dp_debug_private, dp_debug);
  1988. debugfs_remove_recursive(debug->root);
  1989. return 0;
  1990. }
  1991. void dp_debug_put(struct dp_debug *dp_debug)
  1992. {
  1993. struct dp_debug_private *debug;
  1994. if (!dp_debug)
  1995. return;
  1996. debug = container_of(dp_debug, struct dp_debug_private, dp_debug);
  1997. dp_debug_deinit(dp_debug);
  1998. mutex_destroy(&dp_debug->dp_mst_connector_list.lock);
  1999. mutex_destroy(&debug->lock);
  2000. if (debug->edid)
  2001. devm_kfree(debug->dev, debug->edid);
  2002. if (debug->dpcd)
  2003. devm_kfree(debug->dev, debug->dpcd);
  2004. devm_kfree(debug->dev, debug);
  2005. }