gsi_dbg.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  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. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  183. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_8,
  184. gsi_ctx->per.ee, arg1);
  185. TERR("CH%2d CTX8 0x%x\n", arg1, val);
  186. }
  187. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_RE_FETCH_READ_PTR,
  188. gsi_ctx->per.ee, arg1);
  189. TERR("CH%2d REFRP 0x%x\n", arg1, val);
  190. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_RE_FETCH_WRITE_PTR,
  191. gsi_ctx->per.ee, arg1);
  192. TERR("CH%2d REFWP 0x%x\n", arg1, val);
  193. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_QOS,
  194. gsi_ctx->per.ee, arg1);
  195. TERR("CH%2d QOS 0x%x\n", arg1, val);
  196. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_0,
  197. gsi_ctx->per.ee, arg1);
  198. TERR("CH%2d SCR0 0x%x\n", arg1, val);
  199. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_1,
  200. gsi_ctx->per.ee, arg1);
  201. TERR("CH%2d SCR1 0x%x\n", arg1, val);
  202. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_2,
  203. gsi_ctx->per.ee, arg1);
  204. TERR("CH%2d SCR2 0x%x\n", arg1, val);
  205. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_3,
  206. gsi_ctx->per.ee, arg1);
  207. TERR("CH%2d SCR3 0x%x\n", arg1, val);
  208. if (gsi_ctx->per.ver >= GSI_VER_3_0) {
  209. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_4,
  210. gsi_ctx->per.ee, arg1);
  211. TERR("CH%2d SCR4 0x%x\n", arg1, val);
  212. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_5,
  213. gsi_ctx->per.ee, arg1);
  214. TERR("CH%2d SCR5 0x%x\n", arg1, val);
  215. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_6,
  216. gsi_ctx->per.ee, arg1);
  217. TERR("CH%2d SCR6 0x%x\n", arg1, val);
  218. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_7,
  219. gsi_ctx->per.ee, arg1);
  220. TERR("CH%2d SCR7 0x%x\n", arg1, val);
  221. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_8,
  222. gsi_ctx->per.ee, arg1);
  223. TERR("CH%2d SCR8 0x%x\n", arg1, val);
  224. val = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_SCRATCH_9,
  225. gsi_ctx->per.ee, arg1);
  226. TERR("CH%2d SCR9 0x%x\n", arg1, val);
  227. }
  228. if (arg2) {
  229. ctx = &gsi_ctx->chan[arg1];
  230. if (ctx->props.ring_base_vaddr) {
  231. for (i = 0; i < ctx->props.ring_len / 16; i++)
  232. TERR("CH%2d (0x%08llx) %08x %08x %08x %08x\n",
  233. arg1, ctx->props.ring_base_addr + i * 16,
  234. *(u32 *)((u8 *)ctx->props.ring_base_vaddr +
  235. i * 16 + 0),
  236. *(u32 *)((u8 *)ctx->props.ring_base_vaddr +
  237. i * 16 + 4),
  238. *(u32 *)((u8 *)ctx->props.ring_base_vaddr +
  239. i * 16 + 8),
  240. *(u32 *)((u8 *)ctx->props.ring_base_vaddr +
  241. i * 16 + 12));
  242. } else {
  243. TERR("No VA supplied for chan id %u\n", arg1);
  244. }
  245. }
  246. return count;
  247. }
  248. static void gsi_dump_ch_stats(struct gsi_chan_ctx *ctx)
  249. {
  250. if (!ctx->allocated)
  251. return;
  252. PRT_STAT("CH%2d:\n", ctx->props.ch_id);
  253. PRT_STAT("queued=%lu compl=%lu\n",
  254. ctx->stats.queued,
  255. ctx->stats.completed);
  256. PRT_STAT("cb->poll=%lu poll->cb=%lu poll_pend_irq=%lu\n",
  257. ctx->stats.callback_to_poll,
  258. ctx->stats.poll_to_callback,
  259. ctx->stats.poll_pending_irq);
  260. PRT_STAT("invalid_tre_error=%lu\n",
  261. ctx->stats.invalid_tre_error);
  262. PRT_STAT("poll_ok=%lu poll_empty=%lu\n",
  263. ctx->stats.poll_ok, ctx->stats.poll_empty);
  264. if (ctx->evtr)
  265. PRT_STAT("compl_evt=%lu\n",
  266. ctx->evtr->stats.completed);
  267. PRT_STAT("userdata_in_use=%lu\n", ctx->stats.userdata_in_use);
  268. PRT_STAT("ch_below_lo=%lu\n", ctx->stats.dp.ch_below_lo);
  269. PRT_STAT("ch_below_hi=%lu\n", ctx->stats.dp.ch_below_hi);
  270. PRT_STAT("ch_above_hi=%lu\n", ctx->stats.dp.ch_above_hi);
  271. PRT_STAT("time_empty=%lums\n", ctx->stats.dp.empty_time);
  272. PRT_STAT("\n");
  273. }
  274. static ssize_t gsi_dump_stats(struct file *file,
  275. const char __user *buf, size_t count, loff_t *ppos)
  276. {
  277. int ch_id;
  278. int min, max, ret;
  279. ret = kstrtos32_from_user(buf, count, 0, &ch_id);
  280. if (ret)
  281. return ret;
  282. if (ch_id == -1) {
  283. min = 0;
  284. max = gsi_ctx->max_ch;
  285. } else if (ch_id < 0 || ch_id >= gsi_ctx->max_ch ||
  286. !gsi_ctx->chan[ch_id].allocated) {
  287. goto error;
  288. } else {
  289. min = ch_id;
  290. max = ch_id + 1;
  291. }
  292. for (ch_id = min; ch_id < max; ch_id++)
  293. gsi_dump_ch_stats(&gsi_ctx->chan[ch_id]);
  294. return count;
  295. error:
  296. TERR("Usage: echo ch_id > stats. Use -1 for all\n");
  297. return -EINVAL;
  298. }
  299. static int gsi_dbg_create_stats_wq(void)
  300. {
  301. gsi_ctx->dp_stat_wq =
  302. create_singlethread_workqueue("gsi_stat");
  303. if (!gsi_ctx->dp_stat_wq) {
  304. TERR("failed create workqueue\n");
  305. return -ENOMEM;
  306. }
  307. return 0;
  308. }
  309. static void gsi_dbg_destroy_stats_wq(void)
  310. {
  311. cancel_delayed_work_sync(&gsi_update_dp_stats_work);
  312. cancel_delayed_work_sync(&gsi_print_dp_stats_work);
  313. flush_workqueue(gsi_ctx->dp_stat_wq);
  314. destroy_workqueue(gsi_ctx->dp_stat_wq);
  315. gsi_ctx->dp_stat_wq = NULL;
  316. }
  317. static ssize_t gsi_enable_dp_stats(struct file *file,
  318. const char __user *buf, size_t count, loff_t *ppos)
  319. {
  320. int ch_id;
  321. bool enable;
  322. int ret;
  323. if (count >= sizeof(dbg_buff))
  324. goto error;
  325. if (copy_from_user(dbg_buff, buf, count))
  326. goto error;
  327. dbg_buff[count] = '\0';
  328. if (dbg_buff[0] != '+' && dbg_buff[0] != '-')
  329. goto error;
  330. enable = (dbg_buff[0] == '+');
  331. if (kstrtos32(dbg_buff + 1, 0, &ch_id))
  332. goto error;
  333. if (ch_id < 0 || ch_id >= gsi_ctx->max_ch ||
  334. !gsi_ctx->chan[ch_id].allocated) {
  335. goto error;
  336. }
  337. if (gsi_ctx->chan[ch_id].enable_dp_stats == enable) {
  338. TERR("ch_%d: already enabled/disabled\n", ch_id);
  339. return -EINVAL;
  340. }
  341. gsi_ctx->chan[ch_id].enable_dp_stats = enable;
  342. if (enable)
  343. gsi_ctx->num_ch_dp_stats++;
  344. else
  345. gsi_ctx->num_ch_dp_stats--;
  346. if (enable) {
  347. if (gsi_ctx->num_ch_dp_stats == 1) {
  348. ret = gsi_dbg_create_stats_wq();
  349. if (ret)
  350. return ret;
  351. }
  352. cancel_delayed_work_sync(&gsi_update_dp_stats_work);
  353. queue_delayed_work(gsi_ctx->dp_stat_wq,
  354. &gsi_update_dp_stats_work, msecs_to_jiffies(10));
  355. } else if (!enable && gsi_ctx->num_ch_dp_stats == 0) {
  356. gsi_dbg_destroy_stats_wq();
  357. }
  358. return count;
  359. error:
  360. TERR("Usage: echo [+-]ch_id > enable_dp_stats\n");
  361. return -EINVAL;
  362. }
  363. static ssize_t gsi_set_max_elem_dp_stats(struct file *file,
  364. const char __user *buf, size_t count, loff_t *ppos)
  365. {
  366. u32 ch_id;
  367. u32 max_elem;
  368. unsigned long missing;
  369. char *sptr, *token;
  370. if (count >= sizeof(dbg_buff))
  371. goto error;
  372. missing = copy_from_user(dbg_buff, buf, count);
  373. if (missing)
  374. goto error;
  375. dbg_buff[count] = '\0';
  376. sptr = dbg_buff;
  377. token = strsep(&sptr, " ");
  378. if (!token) {
  379. TERR("\n");
  380. goto error;
  381. }
  382. if (kstrtou32(token, 0, &ch_id)) {
  383. TERR("\n");
  384. goto error;
  385. }
  386. token = strsep(&sptr, " ");
  387. if (!token) {
  388. /* get */
  389. if (kstrtou32(dbg_buff, 0, &ch_id))
  390. goto error;
  391. if (ch_id >= gsi_ctx->max_ch)
  392. goto error;
  393. PRT_STAT("ch %d: max_re_expected=%d\n", ch_id,
  394. gsi_ctx->chan[ch_id].props.max_re_expected);
  395. return count;
  396. }
  397. if (kstrtou32(token, 0, &max_elem)) {
  398. TERR("\n");
  399. goto error;
  400. }
  401. TDBG("ch_id=%u max_elem=%u\n", ch_id, max_elem);
  402. if (ch_id >= gsi_ctx->max_ch) {
  403. TERR("invalid chan id %u\n", ch_id);
  404. goto error;
  405. }
  406. gsi_ctx->chan[ch_id].props.max_re_expected = max_elem;
  407. return count;
  408. error:
  409. TERR("Usage: (set) echo <ch_id> <max_elem> > max_elem_dp_stats\n");
  410. TERR("Usage: (get) echo <ch_id> > max_elem_dp_stats\n");
  411. return -EINVAL;
  412. }
  413. static void gsi_wq_print_dp_stats(struct work_struct *work)
  414. {
  415. int ch_id;
  416. for (ch_id = 0; ch_id < gsi_ctx->max_ch; ch_id++) {
  417. if (gsi_ctx->chan[ch_id].print_dp_stats)
  418. gsi_dump_ch_stats(&gsi_ctx->chan[ch_id]);
  419. }
  420. queue_delayed_work(gsi_ctx->dp_stat_wq, &gsi_print_dp_stats_work,
  421. msecs_to_jiffies(1000));
  422. }
  423. static void gsi_dbg_update_ch_dp_stats(struct gsi_chan_ctx *ctx)
  424. {
  425. uint16_t start_hw;
  426. uint16_t end_hw;
  427. uint64_t rp_hw;
  428. uint64_t wp_hw;
  429. int ee = gsi_ctx->per.ee;
  430. uint16_t used_hw;
  431. rp_hw = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_4,
  432. ee, ctx->props.ch_id);
  433. rp_hw |= ((uint64_t)gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_5,
  434. ee, ctx->props.ch_id)) << 32;
  435. wp_hw = gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_6,
  436. ee, ctx->props.ch_id);
  437. wp_hw |= ((uint64_t)gsihal_read_reg_nk(GSI_EE_n_GSI_CH_k_CNTXT_7,
  438. ee, ctx->props.ch_id)) << 32;
  439. start_hw = gsi_find_idx_from_addr(&ctx->ring, rp_hw);
  440. end_hw = gsi_find_idx_from_addr(&ctx->ring, wp_hw);
  441. if (end_hw >= start_hw)
  442. used_hw = end_hw - start_hw;
  443. else
  444. used_hw = ctx->ring.max_num_elem + 1 - (start_hw - end_hw);
  445. TDBG("ch %d used %d\n", ctx->props.ch_id, used_hw);
  446. gsi_update_ch_dp_stats(ctx, used_hw);
  447. }
  448. static void gsi_wq_update_dp_stats(struct work_struct *work)
  449. {
  450. int ch_id;
  451. for (ch_id = 0; ch_id < gsi_ctx->max_ch; ch_id++) {
  452. if (gsi_ctx->chan[ch_id].allocated &&
  453. gsi_ctx->chan[ch_id].enable_dp_stats)
  454. gsi_dbg_update_ch_dp_stats(&gsi_ctx->chan[ch_id]);
  455. }
  456. queue_delayed_work(gsi_ctx->dp_stat_wq, &gsi_update_dp_stats_work,
  457. msecs_to_jiffies(10));
  458. }
  459. static ssize_t gsi_rst_stats(struct file *file,
  460. const char __user *buf, size_t count, loff_t *ppos)
  461. {
  462. int ch_id;
  463. int min, max, ret;
  464. ret = kstrtos32_from_user(buf, count, 0, &ch_id);
  465. if (ret)
  466. return ret;
  467. if (ch_id == -1) {
  468. min = 0;
  469. max = gsi_ctx->max_ch;
  470. } else if (ch_id < 0 || ch_id >= gsi_ctx->max_ch ||
  471. !gsi_ctx->chan[ch_id].allocated) {
  472. goto error;
  473. } else {
  474. min = ch_id;
  475. max = ch_id + 1;
  476. }
  477. for (ch_id = min; ch_id < max; ch_id++)
  478. memset(&gsi_ctx->chan[ch_id].stats, 0,
  479. sizeof(gsi_ctx->chan[ch_id].stats));
  480. return count;
  481. error:
  482. TERR("Usage: echo ch_id > rst_stats. Use -1 for all\n");
  483. return -EINVAL;
  484. }
  485. static ssize_t gsi_print_dp_stats(struct file *file,
  486. const char __user *buf, size_t count, loff_t *ppos)
  487. {
  488. int ch_id;
  489. bool enable;
  490. int ret;
  491. if (count >= sizeof(dbg_buff))
  492. goto error;
  493. if (copy_from_user(dbg_buff, buf, count))
  494. goto error;
  495. dbg_buff[count] = '\0';
  496. if (dbg_buff[0] != '+' && dbg_buff[0] != '-')
  497. goto error;
  498. enable = (dbg_buff[0] == '+');
  499. if (kstrtos32(dbg_buff + 1, 0, &ch_id))
  500. goto error;
  501. if (ch_id < 0 || ch_id >= gsi_ctx->max_ch ||
  502. !gsi_ctx->chan[ch_id].allocated) {
  503. goto error;
  504. }
  505. if (gsi_ctx->chan[ch_id].print_dp_stats == enable) {
  506. TERR("ch_%d: already enabled/disabled\n", ch_id);
  507. return -EINVAL;
  508. }
  509. gsi_ctx->chan[ch_id].print_dp_stats = enable;
  510. if (enable)
  511. gsi_ctx->num_ch_dp_stats++;
  512. else
  513. gsi_ctx->num_ch_dp_stats--;
  514. if (enable) {
  515. if (gsi_ctx->num_ch_dp_stats == 1) {
  516. ret = gsi_dbg_create_stats_wq();
  517. if (ret)
  518. return ret;
  519. }
  520. cancel_delayed_work_sync(&gsi_print_dp_stats_work);
  521. queue_delayed_work(gsi_ctx->dp_stat_wq,
  522. &gsi_print_dp_stats_work, msecs_to_jiffies(10));
  523. } else if (!enable && gsi_ctx->num_ch_dp_stats == 0) {
  524. gsi_dbg_destroy_stats_wq();
  525. }
  526. return count;
  527. error:
  528. TERR("Usage: echo [+-]ch_id > print_dp_stats\n");
  529. return -EINVAL;
  530. }
  531. static ssize_t gsi_enable_ipc_low(struct file *file,
  532. const char __user *ubuf, size_t count, loff_t *ppos)
  533. {
  534. s8 option = 0;
  535. int ret;
  536. ret = kstrtos8_from_user(ubuf, count, 0, &option);
  537. if (ret)
  538. return ret;
  539. mutex_lock(&gsi_ctx->mlock);
  540. if (option) {
  541. if (!gsi_ipc_logbuf_low) {
  542. gsi_ipc_logbuf_low =
  543. ipc_log_context_create(GSI_IPC_LOG_PAGES,
  544. "gsi_low", 0);
  545. if (gsi_ipc_logbuf_low == NULL)
  546. TERR("failed to get ipc_logbuf_low\n");
  547. }
  548. gsi_ctx->ipc_logbuf_low = gsi_ipc_logbuf_low;
  549. } else {
  550. gsi_ctx->ipc_logbuf_low = NULL;
  551. }
  552. mutex_unlock(&gsi_ctx->mlock);
  553. return count;
  554. }
  555. static const struct file_operations gsi_ev_dump_ops = {
  556. .write = gsi_dump_evt,
  557. };
  558. static const struct file_operations gsi_ch_dump_ops = {
  559. .write = gsi_dump_ch,
  560. };
  561. static const struct file_operations gsi_stats_ops = {
  562. .write = gsi_dump_stats,
  563. };
  564. static const struct file_operations gsi_enable_dp_stats_ops = {
  565. .write = gsi_enable_dp_stats,
  566. };
  567. static const struct file_operations gsi_max_elem_dp_stats_ops = {
  568. .write = gsi_set_max_elem_dp_stats,
  569. };
  570. static const struct file_operations gsi_rst_stats_ops = {
  571. .write = gsi_rst_stats,
  572. };
  573. static const struct file_operations gsi_print_dp_stats_ops = {
  574. .write = gsi_print_dp_stats,
  575. };
  576. static const struct file_operations gsi_ipc_low_ops = {
  577. .write = gsi_enable_ipc_low,
  578. };
  579. void gsi_debugfs_init(void)
  580. {
  581. static struct dentry *dfile;
  582. const mode_t write_only_mode = 0220;
  583. dent = debugfs_create_dir("gsi", 0);
  584. if (IS_ERR(dent)) {
  585. TERR("fail to create dir\n");
  586. return;
  587. }
  588. dfile = debugfs_create_file("ev_dump", write_only_mode,
  589. dent, 0, &gsi_ev_dump_ops);
  590. if (!dfile || IS_ERR(dfile)) {
  591. TERR("fail to create ev_dump file\n");
  592. goto fail;
  593. }
  594. dfile = debugfs_create_file("ch_dump", write_only_mode,
  595. dent, 0, &gsi_ch_dump_ops);
  596. if (!dfile || IS_ERR(dfile)) {
  597. TERR("fail to create ch_dump file\n");
  598. goto fail;
  599. }
  600. dfile = debugfs_create_file("stats", write_only_mode, dent,
  601. 0, &gsi_stats_ops);
  602. if (!dfile || IS_ERR(dfile)) {
  603. TERR("fail to create stats file\n");
  604. goto fail;
  605. }
  606. dfile = debugfs_create_file("enable_dp_stats", write_only_mode, dent,
  607. 0, &gsi_enable_dp_stats_ops);
  608. if (!dfile || IS_ERR(dfile)) {
  609. TERR("fail to create stats file\n");
  610. goto fail;
  611. }
  612. dfile = debugfs_create_file("max_elem_dp_stats", write_only_mode,
  613. dent, 0, &gsi_max_elem_dp_stats_ops);
  614. if (!dfile || IS_ERR(dfile)) {
  615. TERR("fail to create stats file\n");
  616. goto fail;
  617. }
  618. dfile = debugfs_create_file("rst_stats", write_only_mode,
  619. dent, 0, &gsi_rst_stats_ops);
  620. if (!dfile || IS_ERR(dfile)) {
  621. TERR("fail to create stats file\n");
  622. goto fail;
  623. }
  624. dfile = debugfs_create_file("print_dp_stats",
  625. write_only_mode, dent, 0, &gsi_print_dp_stats_ops);
  626. if (!dfile || IS_ERR(dfile)) {
  627. TERR("fail to create stats file\n");
  628. goto fail;
  629. }
  630. dfile = debugfs_create_file("ipc_low", write_only_mode,
  631. dent, 0, &gsi_ipc_low_ops);
  632. if (!dfile || IS_ERR(dfile)) {
  633. TERR("could not create ipc_low\n");
  634. goto fail;
  635. }
  636. return;
  637. fail:
  638. debugfs_remove_recursive(dent);
  639. }