gsi_dbg.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2015-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/completion.h>
  6. #include <linux/debugfs.h>
  7. #include <linux/dma-mapping.h>
  8. #include <linux/random.h>
  9. #include <linux/uaccess.h>
  10. #include <linux/msm_gsi.h>
  11. #include "gsi.h"
  12. #include "gsihal.h"
  13. #define TERR(fmt, args...) \
  14. pr_err("%s:%d " fmt, __func__, __LINE__, ## args)
  15. #define TDBG(fmt, args...) \
  16. pr_debug("%s:%d " fmt, __func__, __LINE__, ## args)
  17. #define PRT_STAT(fmt, args...) \
  18. pr_err(fmt, ## args)
  19. static struct dentry *dent;
  20. static char dbg_buff[4096];
  21. static void *gsi_ipc_logbuf_low;
  22. static void gsi_wq_print_dp_stats(struct work_struct *work);
  23. static DECLARE_DELAYED_WORK(gsi_print_dp_stats_work, gsi_wq_print_dp_stats);
  24. static void gsi_wq_update_dp_stats(struct work_struct *work);
  25. static DECLARE_DELAYED_WORK(gsi_update_dp_stats_work, gsi_wq_update_dp_stats);
  26. static ssize_t gsi_dump_evt(struct file *file,
  27. const char __user *buf, size_t count, loff_t *ppos)
  28. {
  29. u32 arg1;
  30. u32 arg2;
  31. unsigned long missing;
  32. char *sptr, *token;
  33. uint32_t val;
  34. struct gsi_evt_ctx *ctx;
  35. uint16_t i;
  36. if (count >= sizeof(dbg_buff))
  37. return -EINVAL;
  38. missing = copy_from_user(dbg_buff, buf, count);
  39. if (missing)
  40. return -EFAULT;
  41. dbg_buff[count] = '\0';
  42. sptr = dbg_buff;
  43. token = strsep(&sptr, " ");
  44. if (!token)
  45. return -EINVAL;
  46. if (kstrtou32(token, 0, &arg1))
  47. return -EINVAL;
  48. token = strsep(&sptr, " ");
  49. if (!token)
  50. return -EINVAL;
  51. if (kstrtou32(token, 0, &arg2))
  52. return -EINVAL;
  53. TDBG("arg1=%u arg2=%u\n", arg1, arg2);
  54. if (arg1 >= gsi_ctx->max_ev) {
  55. TERR("invalid evt ring id %u\n", arg1);
  56. return -EINVAL;
  57. }
  58. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_0,
  59. gsi_ctx->per.ee, arg1);
  60. TERR("EV%2d CTX0 0x%x\n", arg1, val);
  61. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_1,
  62. gsi_ctx->per.ee, arg1);
  63. TERR("EV%2d CTX1 0x%x\n", arg1, val);
  64. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_2,
  65. gsi_ctx->per.ee, arg1);
  66. TERR("EV%2d CTX2 0x%x\n", arg1, val);
  67. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_3,
  68. gsi_ctx->per.ee, arg1);
  69. TERR("EV%2d CTX3 0x%x\n", arg1, val);
  70. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_4,
  71. gsi_ctx->per.ee, arg1);
  72. TERR("EV%2d CTX4 0x%x\n", arg1, val);
  73. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_5,
  74. gsi_ctx->per.ee, arg1);
  75. TERR("EV%2d CTX5 0x%x\n", arg1, val);
  76. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_6,
  77. gsi_ctx->per.ee, arg1);
  78. TERR("EV%2d CTX6 0x%x\n", arg1, val);
  79. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_7,
  80. gsi_ctx->per.ee, arg1);
  81. TERR("EV%2d CTX7 0x%x\n", arg1, val);
  82. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_8,
  83. gsi_ctx->per.ee, arg1);
  84. TERR("EV%2d CTX8 0x%x\n", arg1, val);
  85. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_9,
  86. gsi_ctx->per.ee, arg1);
  87. TERR("EV%2d CTX9 0x%x\n", arg1, val);
  88. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_10,
  89. gsi_ctx->per.ee, arg1);
  90. TERR("EV%2d CTX10 0x%x\n", arg1, val);
  91. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_11,
  92. gsi_ctx->per.ee, arg1);
  93. TERR("EV%2d CTX11 0x%x\n", arg1, val);
  94. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_12,
  95. gsi_ctx->per.ee, arg1);
  96. TERR("EV%2d CTX12 0x%x\n", arg1, val);
  97. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_CNTXT_13,
  98. gsi_ctx->per.ee, arg1);
  99. TERR("EV%2d CTX13 0x%x\n", arg1, val);
  100. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_SCRATCH_0,
  101. gsi_ctx->per.ee, arg1);
  102. TERR("EV%2d SCR0 0x%x\n", arg1, val);
  103. val = gsihal_read_reg_nk(GSI_EE_n_EV_CH_k_SCRATCH_1,
  104. gsi_ctx->per.ee, arg1);
  105. TERR("EV%2d SCR1 0x%x\n", arg1, val);
  106. if (arg2) {
  107. ctx = &gsi_ctx->evtr[arg1];
  108. if (ctx->props.ring_base_vaddr) {
  109. for (i = 0; i < ctx->props.ring_len / 16; i++)
  110. TERR("EV%2d (0x%08llx) %08x %08x %08x %08x\n",
  111. arg1, ctx->props.ring_base_addr + i * 16,
  112. *(u32 *)((u8 *)ctx->props.ring_base_vaddr +
  113. i * 16 + 0),
  114. *(u32 *)((u8 *)ctx->props.ring_base_vaddr +
  115. i * 16 + 4),
  116. *(u32 *)((u8 *)ctx->props.ring_base_vaddr +
  117. i * 16 + 8),
  118. *(u32 *)((u8 *)ctx->props.ring_base_vaddr +
  119. i * 16 + 12));
  120. } else {
  121. TERR("No VA supplied for event ring id %u\n", arg1);
  122. }
  123. }
  124. return count;
  125. }
  126. static ssize_t gsi_dump_ch(struct file *file,
  127. const char __user *buf, size_t count, loff_t *ppos)
  128. {
  129. u32 arg1;
  130. u32 arg2;
  131. unsigned long missing;
  132. char *sptr, *token;
  133. uint32_t val;
  134. struct gsi_chan_ctx *ctx;
  135. uint16_t i;
  136. if (count >= sizeof(dbg_buff))
  137. return -EINVAL;
  138. missing = copy_from_user(dbg_buff, buf, count);
  139. if (missing)
  140. return -EFAULT;
  141. dbg_buff[count] = '\0';
  142. sptr = dbg_buff;
  143. token = strsep(&sptr, " ");
  144. if (!token)
  145. return -EINVAL;
  146. if (kstrtou32(token, 0, &arg1))
  147. return -EINVAL;
  148. token = strsep(&sptr, " ");
  149. if (!token)
  150. return -EINVAL;
  151. if (kstrtou32(token, 0, &arg2))
  152. return -EINVAL;
  153. TDBG("arg1=%u arg2=%u\n", arg1, arg2);
  154. if (arg1 >= gsi_ctx->max_ch) {
  155. TERR("invalid chan id %u\n", arg1);
  156. return -EINVAL;
  157. }
  158. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_0,
  159. gsi_ctx->per.ee, arg1);
  160. TERR("CH%2d CTX0 0x%x\n", arg1, val);
  161. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_1,
  162. gsi_ctx->per.ee, arg1);
  163. TERR("CH%2d CTX1 0x%x\n", arg1, val);
  164. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_2,
  165. gsi_ctx->per.ee, arg1);
  166. TERR("CH%2d CTX2 0x%x\n", arg1, val);
  167. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_3,
  168. gsi_ctx->per.ee, arg1);
  169. TERR("CH%2d CTX3 0x%x\n", arg1, val);
  170. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_4,
  171. gsi_ctx->per.ee, arg1);
  172. TERR("CH%2d CTX4 0x%x\n", arg1, val);
  173. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_5,
  174. gsi_ctx->per.ee, arg1);
  175. TERR("CH%2d CTX5 0x%x\n", arg1, val);
  176. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_6,
  177. gsi_ctx->per.ee, arg1);
  178. TERR("CH%2d CTX6 0x%x\n", arg1, val);
  179. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_7,
  180. gsi_ctx->per.ee, arg1);
  181. TERR("CH%2d CTX7 0x%x\n", arg1, val);
  182. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_RE_FETCH_READ_PTR,
  183. gsi_ctx->per.ee, arg1);
  184. TERR("CH%2d REFRP 0x%x\n", arg1, val);
  185. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_RE_FETCH_WRITE_PTR,
  186. gsi_ctx->per.ee, arg1);
  187. TERR("CH%2d REFWP 0x%x\n", arg1, val);
  188. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_QOS,
  189. gsi_ctx->per.ee, arg1);
  190. TERR("CH%2d QOS 0x%x\n", arg1, val);
  191. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_0,
  192. gsi_ctx->per.ee, arg1);
  193. TERR("CH%2d SCR0 0x%x\n", arg1, val);
  194. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_1,
  195. gsi_ctx->per.ee, arg1);
  196. TERR("CH%2d SCR1 0x%x\n", arg1, val);
  197. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_2,
  198. gsi_ctx->per.ee, arg1);
  199. TERR("CH%2d SCR2 0x%x\n", arg1, val);
  200. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_3,
  201. gsi_ctx->per.ee, arg1);
  202. TERR("CH%2d SCR3 0x%x\n", arg1, val);
  203. if (arg2) {
  204. ctx = &gsi_ctx->chan[arg1];
  205. if (ctx->props.ring_base_vaddr) {
  206. for (i = 0; i < ctx->props.ring_len / 16; i++)
  207. TERR("CH%2d (0x%08llx) %08x %08x %08x %08x\n",
  208. arg1, ctx->props.ring_base_addr + i * 16,
  209. *(u32 *)((u8 *)ctx->props.ring_base_vaddr +
  210. i * 16 + 0),
  211. *(u32 *)((u8 *)ctx->props.ring_base_vaddr +
  212. i * 16 + 4),
  213. *(u32 *)((u8 *)ctx->props.ring_base_vaddr +
  214. i * 16 + 8),
  215. *(u32 *)((u8 *)ctx->props.ring_base_vaddr +
  216. i * 16 + 12));
  217. } else {
  218. TERR("No VA supplied for chan id %u\n", arg1);
  219. }
  220. }
  221. return count;
  222. }
  223. static void gsi_dump_ch_stats(struct gsi_chan_ctx *ctx)
  224. {
  225. if (!ctx->allocated)
  226. return;
  227. PRT_STAT("CH%2d:\n", ctx->props.ch_id);
  228. PRT_STAT("queued=%lu compl=%lu\n",
  229. ctx->stats.queued,
  230. ctx->stats.completed);
  231. PRT_STAT("cb->poll=%lu poll->cb=%lu poll_pend_irq=%lu\n",
  232. ctx->stats.callback_to_poll,
  233. ctx->stats.poll_to_callback,
  234. ctx->stats.poll_pending_irq);
  235. PRT_STAT("invalid_tre_error=%lu\n",
  236. ctx->stats.invalid_tre_error);
  237. PRT_STAT("poll_ok=%lu poll_empty=%lu\n",
  238. ctx->stats.poll_ok, ctx->stats.poll_empty);
  239. if (ctx->evtr)
  240. PRT_STAT("compl_evt=%lu\n",
  241. ctx->evtr->stats.completed);
  242. PRT_STAT("userdata_in_use=%lu\n", ctx->stats.userdata_in_use);
  243. PRT_STAT("ch_below_lo=%lu\n", ctx->stats.dp.ch_below_lo);
  244. PRT_STAT("ch_below_hi=%lu\n", ctx->stats.dp.ch_below_hi);
  245. PRT_STAT("ch_above_hi=%lu\n", ctx->stats.dp.ch_above_hi);
  246. PRT_STAT("time_empty=%lums\n", ctx->stats.dp.empty_time);
  247. PRT_STAT("\n");
  248. }
  249. static ssize_t gsi_dump_stats(struct file *file,
  250. const char __user *buf, size_t count, loff_t *ppos)
  251. {
  252. int ch_id;
  253. int min, max, ret;
  254. ret = kstrtos32_from_user(buf, count, 0, &ch_id);
  255. if (ret)
  256. return ret;
  257. if (ch_id == -1) {
  258. min = 0;
  259. max = gsi_ctx->max_ch;
  260. } else if (ch_id < 0 || ch_id >= gsi_ctx->max_ch ||
  261. !gsi_ctx->chan[ch_id].allocated) {
  262. goto error;
  263. } else {
  264. min = ch_id;
  265. max = ch_id + 1;
  266. }
  267. for (ch_id = min; ch_id < max; ch_id++)
  268. gsi_dump_ch_stats(&gsi_ctx->chan[ch_id]);
  269. return count;
  270. error:
  271. TERR("Usage: echo ch_id > stats. Use -1 for all\n");
  272. return -EINVAL;
  273. }
  274. static int gsi_dbg_create_stats_wq(void)
  275. {
  276. gsi_ctx->dp_stat_wq =
  277. create_singlethread_workqueue("gsi_stat");
  278. if (!gsi_ctx->dp_stat_wq) {
  279. TERR("failed create workqueue\n");
  280. return -ENOMEM;
  281. }
  282. return 0;
  283. }
  284. static void gsi_dbg_destroy_stats_wq(void)
  285. {
  286. cancel_delayed_work_sync(&gsi_update_dp_stats_work);
  287. cancel_delayed_work_sync(&gsi_print_dp_stats_work);
  288. flush_workqueue(gsi_ctx->dp_stat_wq);
  289. destroy_workqueue(gsi_ctx->dp_stat_wq);
  290. gsi_ctx->dp_stat_wq = NULL;
  291. }
  292. static ssize_t gsi_enable_dp_stats(struct file *file,
  293. const char __user *buf, size_t count, loff_t *ppos)
  294. {
  295. int ch_id;
  296. bool enable;
  297. int ret;
  298. if (count >= sizeof(dbg_buff))
  299. goto error;
  300. if (copy_from_user(dbg_buff, buf, count))
  301. goto error;
  302. dbg_buff[count] = '\0';
  303. if (dbg_buff[0] != '+' && dbg_buff[0] != '-')
  304. goto error;
  305. enable = (dbg_buff[0] == '+');
  306. if (kstrtos32(dbg_buff + 1, 0, &ch_id))
  307. goto error;
  308. if (ch_id < 0 || ch_id >= gsi_ctx->max_ch ||
  309. !gsi_ctx->chan[ch_id].allocated) {
  310. goto error;
  311. }
  312. if (gsi_ctx->chan[ch_id].enable_dp_stats == enable) {
  313. TERR("ch_%d: already enabled/disabled\n", ch_id);
  314. return -EINVAL;
  315. }
  316. gsi_ctx->chan[ch_id].enable_dp_stats = enable;
  317. if (enable)
  318. gsi_ctx->num_ch_dp_stats++;
  319. else
  320. gsi_ctx->num_ch_dp_stats--;
  321. if (enable) {
  322. if (gsi_ctx->num_ch_dp_stats == 1) {
  323. ret = gsi_dbg_create_stats_wq();
  324. if (ret)
  325. return ret;
  326. }
  327. cancel_delayed_work_sync(&gsi_update_dp_stats_work);
  328. queue_delayed_work(gsi_ctx->dp_stat_wq,
  329. &gsi_update_dp_stats_work, msecs_to_jiffies(10));
  330. } else if (!enable && gsi_ctx->num_ch_dp_stats == 0) {
  331. gsi_dbg_destroy_stats_wq();
  332. }
  333. return count;
  334. error:
  335. TERR("Usage: echo [+-]ch_id > enable_dp_stats\n");
  336. return -EINVAL;
  337. }
  338. static ssize_t gsi_set_max_elem_dp_stats(struct file *file,
  339. const char __user *buf, size_t count, loff_t *ppos)
  340. {
  341. u32 ch_id;
  342. u32 max_elem;
  343. unsigned long missing;
  344. char *sptr, *token;
  345. if (count >= sizeof(dbg_buff))
  346. goto error;
  347. missing = copy_from_user(dbg_buff, buf, count);
  348. if (missing)
  349. goto error;
  350. dbg_buff[count] = '\0';
  351. sptr = dbg_buff;
  352. token = strsep(&sptr, " ");
  353. if (!token) {
  354. TERR("\n");
  355. goto error;
  356. }
  357. if (kstrtou32(token, 0, &ch_id)) {
  358. TERR("\n");
  359. goto error;
  360. }
  361. token = strsep(&sptr, " ");
  362. if (!token) {
  363. /* get */
  364. if (kstrtou32(dbg_buff, 0, &ch_id))
  365. goto error;
  366. if (ch_id >= gsi_ctx->max_ch)
  367. goto error;
  368. PRT_STAT("ch %d: max_re_expected=%d\n", ch_id,
  369. gsi_ctx->chan[ch_id].props.max_re_expected);
  370. return count;
  371. }
  372. if (kstrtou32(token, 0, &max_elem)) {
  373. TERR("\n");
  374. goto error;
  375. }
  376. TDBG("ch_id=%u max_elem=%u\n", ch_id, max_elem);
  377. if (ch_id >= gsi_ctx->max_ch) {
  378. TERR("invalid chan id %u\n", ch_id);
  379. goto error;
  380. }
  381. gsi_ctx->chan[ch_id].props.max_re_expected = max_elem;
  382. return count;
  383. error:
  384. TERR("Usage: (set) echo <ch_id> <max_elem> > max_elem_dp_stats\n");
  385. TERR("Usage: (get) echo <ch_id> > max_elem_dp_stats\n");
  386. return -EINVAL;
  387. }
  388. static void gsi_wq_print_dp_stats(struct work_struct *work)
  389. {
  390. int ch_id;
  391. for (ch_id = 0; ch_id < gsi_ctx->max_ch; ch_id++) {
  392. if (gsi_ctx->chan[ch_id].print_dp_stats)
  393. gsi_dump_ch_stats(&gsi_ctx->chan[ch_id]);
  394. }
  395. queue_delayed_work(gsi_ctx->dp_stat_wq, &gsi_print_dp_stats_work,
  396. msecs_to_jiffies(1000));
  397. }
  398. static void gsi_dbg_update_ch_dp_stats(struct gsi_chan_ctx *ctx)
  399. {
  400. uint16_t start_hw;
  401. uint16_t end_hw;
  402. uint64_t rp_hw;
  403. uint64_t wp_hw;
  404. int ee = gsi_ctx->per.ee;
  405. uint16_t used_hw;
  406. rp_hw = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_4,
  407. ee, ctx->props.ch_id);
  408. rp_hw |= ((uint64_t)gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_5,
  409. ee, ctx->props.ch_id)) << 32;
  410. wp_hw = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_6,
  411. ee, ctx->props.ch_id);
  412. wp_hw |= ((uint64_t)gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_7,
  413. ee, ctx->props.ch_id)) << 32;
  414. start_hw = gsi_find_idx_from_addr(&ctx->ring, rp_hw);
  415. end_hw = gsi_find_idx_from_addr(&ctx->ring, wp_hw);
  416. if (end_hw >= start_hw)
  417. used_hw = end_hw - start_hw;
  418. else
  419. used_hw = ctx->ring.max_num_elem + 1 - (start_hw - end_hw);
  420. TDBG("ch %d used %d\n", ctx->props.ch_id, used_hw);
  421. gsi_update_ch_dp_stats(ctx, used_hw);
  422. }
  423. static void gsi_wq_update_dp_stats(struct work_struct *work)
  424. {
  425. int ch_id;
  426. for (ch_id = 0; ch_id < gsi_ctx->max_ch; ch_id++) {
  427. if (gsi_ctx->chan[ch_id].allocated &&
  428. gsi_ctx->chan[ch_id].enable_dp_stats)
  429. gsi_dbg_update_ch_dp_stats(&gsi_ctx->chan[ch_id]);
  430. }
  431. queue_delayed_work(gsi_ctx->dp_stat_wq, &gsi_update_dp_stats_work,
  432. msecs_to_jiffies(10));
  433. }
  434. static ssize_t gsi_rst_stats(struct file *file,
  435. const char __user *buf, size_t count, loff_t *ppos)
  436. {
  437. int ch_id;
  438. int min, max, ret;
  439. ret = kstrtos32_from_user(buf, count, 0, &ch_id);
  440. if (ret)
  441. return ret;
  442. if (ch_id == -1) {
  443. min = 0;
  444. max = gsi_ctx->max_ch;
  445. } else if (ch_id < 0 || ch_id >= gsi_ctx->max_ch ||
  446. !gsi_ctx->chan[ch_id].allocated) {
  447. goto error;
  448. } else {
  449. min = ch_id;
  450. max = ch_id + 1;
  451. }
  452. for (ch_id = min; ch_id < max; ch_id++)
  453. memset(&gsi_ctx->chan[ch_id].stats, 0,
  454. sizeof(gsi_ctx->chan[ch_id].stats));
  455. return count;
  456. error:
  457. TERR("Usage: echo ch_id > rst_stats. Use -1 for all\n");
  458. return -EINVAL;
  459. }
  460. static ssize_t gsi_print_dp_stats(struct file *file,
  461. const char __user *buf, size_t count, loff_t *ppos)
  462. {
  463. int ch_id;
  464. bool enable;
  465. int ret;
  466. if (count >= sizeof(dbg_buff))
  467. goto error;
  468. if (copy_from_user(dbg_buff, buf, count))
  469. goto error;
  470. dbg_buff[count] = '\0';
  471. if (dbg_buff[0] != '+' && dbg_buff[0] != '-')
  472. goto error;
  473. enable = (dbg_buff[0] == '+');
  474. if (kstrtos32(dbg_buff + 1, 0, &ch_id))
  475. goto error;
  476. if (ch_id < 0 || ch_id >= gsi_ctx->max_ch ||
  477. !gsi_ctx->chan[ch_id].allocated) {
  478. goto error;
  479. }
  480. if (gsi_ctx->chan[ch_id].print_dp_stats == enable) {
  481. TERR("ch_%d: already enabled/disabled\n", ch_id);
  482. return -EINVAL;
  483. }
  484. gsi_ctx->chan[ch_id].print_dp_stats = enable;
  485. if (enable)
  486. gsi_ctx->num_ch_dp_stats++;
  487. else
  488. gsi_ctx->num_ch_dp_stats--;
  489. if (enable) {
  490. if (gsi_ctx->num_ch_dp_stats == 1) {
  491. ret = gsi_dbg_create_stats_wq();
  492. if (ret)
  493. return ret;
  494. }
  495. cancel_delayed_work_sync(&gsi_print_dp_stats_work);
  496. queue_delayed_work(gsi_ctx->dp_stat_wq,
  497. &gsi_print_dp_stats_work, msecs_to_jiffies(10));
  498. } else if (!enable && gsi_ctx->num_ch_dp_stats == 0) {
  499. gsi_dbg_destroy_stats_wq();
  500. }
  501. return count;
  502. error:
  503. TERR("Usage: echo [+-]ch_id > print_dp_stats\n");
  504. return -EINVAL;
  505. }
  506. static ssize_t gsi_enable_ipc_low(struct file *file,
  507. const char __user *ubuf, size_t count, loff_t *ppos)
  508. {
  509. s8 option = 0;
  510. int ret;
  511. ret = kstrtos8_from_user(ubuf, count, 0, &option);
  512. if (ret)
  513. return ret;
  514. mutex_lock(&gsi_ctx->mlock);
  515. if (option) {
  516. if (!gsi_ipc_logbuf_low) {
  517. gsi_ipc_logbuf_low =
  518. ipc_log_context_create(GSI_IPC_LOG_PAGES,
  519. "gsi_low", 0);
  520. if (gsi_ipc_logbuf_low == NULL)
  521. TERR("failed to get ipc_logbuf_low\n");
  522. }
  523. gsi_ctx->ipc_logbuf_low = gsi_ipc_logbuf_low;
  524. } else {
  525. gsi_ctx->ipc_logbuf_low = NULL;
  526. }
  527. mutex_unlock(&gsi_ctx->mlock);
  528. return count;
  529. }
  530. static const struct file_operations gsi_ev_dump_ops = {
  531. .write = gsi_dump_evt,
  532. };
  533. static const struct file_operations gsi_ch_dump_ops = {
  534. .write = gsi_dump_ch,
  535. };
  536. static const struct file_operations gsi_stats_ops = {
  537. .write = gsi_dump_stats,
  538. };
  539. static const struct file_operations gsi_enable_dp_stats_ops = {
  540. .write = gsi_enable_dp_stats,
  541. };
  542. static const struct file_operations gsi_max_elem_dp_stats_ops = {
  543. .write = gsi_set_max_elem_dp_stats,
  544. };
  545. static const struct file_operations gsi_rst_stats_ops = {
  546. .write = gsi_rst_stats,
  547. };
  548. static const struct file_operations gsi_print_dp_stats_ops = {
  549. .write = gsi_print_dp_stats,
  550. };
  551. static const struct file_operations gsi_ipc_low_ops = {
  552. .write = gsi_enable_ipc_low,
  553. };
  554. void gsi_debugfs_init(void)
  555. {
  556. static struct dentry *dfile;
  557. const mode_t write_only_mode = 0220;
  558. dent = debugfs_create_dir("gsi", 0);
  559. if (IS_ERR(dent)) {
  560. TERR("fail to create dir\n");
  561. return;
  562. }
  563. dfile = debugfs_create_file("ev_dump", write_only_mode,
  564. dent, 0, &gsi_ev_dump_ops);
  565. if (!dfile || IS_ERR(dfile)) {
  566. TERR("fail to create ev_dump file\n");
  567. goto fail;
  568. }
  569. dfile = debugfs_create_file("ch_dump", write_only_mode,
  570. dent, 0, &gsi_ch_dump_ops);
  571. if (!dfile || IS_ERR(dfile)) {
  572. TERR("fail to create ch_dump file\n");
  573. goto fail;
  574. }
  575. dfile = debugfs_create_file("stats", write_only_mode, dent,
  576. 0, &gsi_stats_ops);
  577. if (!dfile || IS_ERR(dfile)) {
  578. TERR("fail to create stats file\n");
  579. goto fail;
  580. }
  581. dfile = debugfs_create_file("enable_dp_stats", write_only_mode, dent,
  582. 0, &gsi_enable_dp_stats_ops);
  583. if (!dfile || IS_ERR(dfile)) {
  584. TERR("fail to create stats file\n");
  585. goto fail;
  586. }
  587. dfile = debugfs_create_file("max_elem_dp_stats", write_only_mode,
  588. dent, 0, &gsi_max_elem_dp_stats_ops);
  589. if (!dfile || IS_ERR(dfile)) {
  590. TERR("fail to create stats file\n");
  591. goto fail;
  592. }
  593. dfile = debugfs_create_file("rst_stats", write_only_mode,
  594. dent, 0, &gsi_rst_stats_ops);
  595. if (!dfile || IS_ERR(dfile)) {
  596. TERR("fail to create stats file\n");
  597. goto fail;
  598. }
  599. dfile = debugfs_create_file("print_dp_stats",
  600. write_only_mode, dent, 0, &gsi_print_dp_stats_ops);
  601. if (!dfile || IS_ERR(dfile)) {
  602. TERR("fail to create stats file\n");
  603. goto fail;
  604. }
  605. dfile = debugfs_create_file("ipc_low", write_only_mode,
  606. dent, 0, &gsi_ipc_low_ops);
  607. if (!dfile || IS_ERR(dfile)) {
  608. TERR("could not create ipc_low\n");
  609. goto fail;
  610. }
  611. return;
  612. fail:
  613. debugfs_remove_recursive(dent);
  614. }