msm_cvp_debug.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2018-2021, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/debugfs.h>
  6. #include "msm_cvp_debug.h"
  7. #include "msm_cvp_common.h"
  8. #include "cvp_core_hfi.h"
  9. #include "cvp_hfi_api.h"
  10. #define CREATE_TRACE_POINTS
  11. #define MAX_SSR_STRING_LEN 10
  12. int msm_cvp_debug = CVP_ERR | CVP_WARN | CVP_FW;
  13. EXPORT_SYMBOL(msm_cvp_debug);
  14. int msm_cvp_debug_out = CVP_OUT_PRINTK;
  15. EXPORT_SYMBOL(msm_cvp_debug_out);
  16. int msm_cvp_fw_debug = 0x18;
  17. int msm_cvp_fw_debug_mode = 1;
  18. int msm_cvp_fw_low_power_mode = 1;
  19. bool msm_cvp_fw_coverage = !true;
  20. bool msm_cvp_cacheop_enabled = true;
  21. bool msm_cvp_thermal_mitigation_disabled = !true;
  22. bool msm_cvp_cacheop_disabled = !true;
  23. int msm_cvp_clock_voting = !1;
  24. bool msm_cvp_syscache_disable = !true;
  25. bool msm_cvp_dsp_disable = !true;
  26. bool msm_cvp_mmrm_enabled = true;
  27. bool msm_cvp_dcvs_disable = !true;
  28. #define MAX_DBG_BUF_SIZE 4096
  29. struct cvp_core_inst_pair {
  30. struct msm_cvp_core *core;
  31. struct msm_cvp_inst *inst;
  32. };
  33. static int core_info_open(struct inode *inode, struct file *file)
  34. {
  35. file->private_data = inode->i_private;
  36. dprintk(CVP_INFO, "%s: Enter\n", __func__);
  37. return 0;
  38. }
  39. static u32 write_str(char *buffer,
  40. size_t size, const char *fmt, ...)
  41. {
  42. va_list args;
  43. u32 len;
  44. va_start(args, fmt);
  45. len = vscnprintf(buffer, size, fmt, args);
  46. va_end(args);
  47. return len;
  48. }
  49. static ssize_t core_info_read(struct file *file, char __user *buf,
  50. size_t count, loff_t *ppos)
  51. {
  52. struct msm_cvp_core *core = file->private_data;
  53. struct cvp_hfi_device *hdev;
  54. struct cvp_hal_fw_info fw_info = { {0} };
  55. char *dbuf, *cur, *end;
  56. int i = 0, rc = 0;
  57. ssize_t len = 0;
  58. if (!core || !core->device) {
  59. dprintk(CVP_ERR, "Invalid params, core: %pK\n", core);
  60. return 0;
  61. }
  62. dbuf = kzalloc(MAX_DBG_BUF_SIZE, GFP_KERNEL);
  63. if (!dbuf) {
  64. dprintk(CVP_ERR, "%s: Allocation failed!\n", __func__);
  65. return -ENOMEM;
  66. }
  67. cur = dbuf;
  68. end = cur + MAX_DBG_BUF_SIZE;
  69. hdev = core->device;
  70. cur += write_str(cur, end - cur, "===============================\n");
  71. cur += write_str(cur, end - cur, "CORE %d: %pK\n", core->id, core);
  72. cur += write_str(cur, end - cur, "===============================\n");
  73. cur += write_str(cur, end - cur, "Core state: %d\n", core->state);
  74. rc = call_hfi_op(hdev, get_fw_info, hdev->hfi_device_data, &fw_info);
  75. if (rc) {
  76. dprintk(CVP_WARN, "Failed to read FW info\n");
  77. goto err_fw_info;
  78. }
  79. cur += write_str(cur, end - cur,
  80. "FW version : %s\n", &fw_info.version);
  81. cur += write_str(cur, end - cur,
  82. "base addr: 0x%x\n", fw_info.base_addr);
  83. cur += write_str(cur, end - cur,
  84. "register_base: 0x%x\n", fw_info.register_base);
  85. cur += write_str(cur, end - cur,
  86. "register_size: %u\n", fw_info.register_size);
  87. cur += write_str(cur, end - cur, "irq: %u\n", fw_info.irq);
  88. err_fw_info:
  89. for (i = SYS_MSG_START; i < SYS_MSG_END; i++) {
  90. cur += write_str(cur, end - cur, "completions[%d]: %s\n", i,
  91. completion_done(&core->completions[SYS_MSG_INDEX(i)]) ?
  92. "pending" : "done");
  93. }
  94. len = simple_read_from_buffer(buf, count, ppos,
  95. dbuf, cur - dbuf);
  96. kfree(dbuf);
  97. return len;
  98. }
  99. static const struct file_operations core_info_fops = {
  100. .open = core_info_open,
  101. .read = core_info_read,
  102. };
  103. static int trigger_ssr_open(struct inode *inode, struct file *file)
  104. {
  105. file->private_data = inode->i_private;
  106. dprintk(CVP_INFO, "%s: Enter\n", __func__);
  107. return 0;
  108. }
  109. static ssize_t trigger_ssr_write(struct file *filp, const char __user *buf,
  110. size_t count, loff_t *ppos)
  111. {
  112. unsigned long ssr_trigger_val = 0;
  113. int rc = 0;
  114. struct msm_cvp_core *core = filp->private_data;
  115. size_t size = MAX_SSR_STRING_LEN;
  116. char kbuf[MAX_SSR_STRING_LEN + 1] = {0};
  117. if (!buf)
  118. return -EINVAL;
  119. if (!count)
  120. goto exit;
  121. if (count < size)
  122. size = count;
  123. if (copy_from_user(kbuf, buf, size)) {
  124. dprintk(CVP_WARN, "%s User memory fault\n", __func__);
  125. rc = -EFAULT;
  126. goto exit;
  127. }
  128. rc = kstrtoul(kbuf, 0, &ssr_trigger_val);
  129. if (rc) {
  130. dprintk(CVP_WARN, "returning error err %d\n", rc);
  131. rc = -EINVAL;
  132. } else {
  133. msm_cvp_trigger_ssr(core, ssr_trigger_val);
  134. rc = count;
  135. }
  136. exit:
  137. return rc;
  138. }
  139. static const struct file_operations ssr_fops = {
  140. .open = trigger_ssr_open,
  141. .write = trigger_ssr_write,
  142. };
  143. static int cvp_power_get(void *data, u64 *val)
  144. {
  145. struct cvp_hfi_device *hfi_ops;
  146. struct msm_cvp_core *core;
  147. struct iris_hfi_device *hfi_device;
  148. core = list_first_entry(&cvp_driver->cores, struct msm_cvp_core, list);
  149. if (!core)
  150. return 0;
  151. hfi_ops = core->device;
  152. if (!hfi_ops)
  153. return 0;
  154. hfi_device = hfi_ops->hfi_device_data;
  155. if (!hfi_device)
  156. return 0;
  157. *val = hfi_device->power_enabled;
  158. return 0;
  159. }
  160. #define MIN_PC_INTERVAL 1000
  161. #define MAX_PC_INTERVAL 1000000
  162. static int cvp_power_set(void *data, u64 val)
  163. {
  164. struct cvp_hfi_device *hfi_ops;
  165. struct msm_cvp_core *core;
  166. struct iris_hfi_device *hfi_device;
  167. int rc = 0;
  168. core = list_first_entry(&cvp_driver->cores, struct msm_cvp_core, list);
  169. if (!core)
  170. return -EINVAL;
  171. hfi_ops = core->device;
  172. if (!hfi_ops)
  173. return -EINVAL;
  174. hfi_device = hfi_ops->hfi_device_data;
  175. if (!hfi_device)
  176. return -EINVAL;
  177. if (val >= MAX_PC_INTERVAL) {
  178. hfi_device->res->sw_power_collapsible = 0;
  179. } else if (val > MIN_PC_INTERVAL) {
  180. hfi_device->res->sw_power_collapsible = 1;
  181. hfi_device->res->msm_cvp_pwr_collapse_delay =
  182. (unsigned int)val;
  183. }
  184. if (core->state == CVP_CORE_UNINIT)
  185. return -EINVAL;
  186. if (val > 0) {
  187. rc = call_hfi_op(hfi_ops, resume, hfi_ops->hfi_device_data);
  188. if (rc)
  189. dprintk(CVP_ERR, "debugfs fail to power on cvp\n");
  190. }
  191. return rc;
  192. }
  193. DEFINE_DEBUGFS_ATTRIBUTE(cvp_pwr_fops, cvp_power_get, cvp_power_set, "%llu\n");
  194. struct dentry *msm_cvp_debugfs_init_drv(void)
  195. {
  196. struct dentry *dir = NULL, *f;
  197. dir = debugfs_create_dir("msm_cvp", NULL);
  198. if (IS_ERR_OR_NULL(dir)) {
  199. dir = NULL;
  200. goto failed_create_dir;
  201. }
  202. debugfs_create_x32("debug_level", 0644, dir, &msm_cvp_debug);
  203. debugfs_create_x32("fw_level", 0644, dir, &msm_cvp_fw_debug);
  204. debugfs_create_u32("fw_debug_mode", 0644, dir, &msm_cvp_fw_debug_mode);
  205. debugfs_create_u32("fw_low_power_mode", 0644, dir,
  206. &msm_cvp_fw_low_power_mode);
  207. debugfs_create_u32("debug_output", 0644, dir, &msm_cvp_debug_out);
  208. f = debugfs_create_bool("fw_coverage", 0644, dir, &msm_cvp_fw_coverage);
  209. if (IS_ERR_OR_NULL(f))
  210. goto failed_create_dir;
  211. f = debugfs_create_bool("disable_thermal_mitigation", 0644, dir,
  212. &msm_cvp_thermal_mitigation_disabled);
  213. if (IS_ERR_OR_NULL(f))
  214. goto failed_create_dir;
  215. f = debugfs_create_bool("enable_cacheop", 0644, dir,
  216. &msm_cvp_cacheop_enabled);
  217. if (IS_ERR_OR_NULL(f))
  218. goto failed_create_dir;
  219. f = debugfs_create_bool("disable_cvp_syscache", 0644, dir,
  220. &msm_cvp_syscache_disable);
  221. if (IS_ERR_OR_NULL(f))
  222. goto failed_create_dir;
  223. f = debugfs_create_bool("disable_dcvs", 0644, dir,
  224. &msm_cvp_dcvs_disable);
  225. if (IS_ERR_OR_NULL(f))
  226. goto failed_create_dir;
  227. debugfs_create_file("cvp_power", 0644, dir, NULL, &cvp_pwr_fops);
  228. return dir;
  229. failed_create_dir:
  230. if (dir)
  231. debugfs_remove_recursive(cvp_driver->debugfs_root);
  232. dprintk(CVP_WARN, "Failed to create debugfs\n");
  233. return NULL;
  234. }
  235. static int _clk_rate_set(void *data, u64 val)
  236. {
  237. struct msm_cvp_core *core;
  238. struct cvp_hfi_device *dev;
  239. struct allowed_clock_rates_table *tbl = NULL;
  240. unsigned int tbl_size, i;
  241. core = list_first_entry(&cvp_driver->cores, struct msm_cvp_core, list);
  242. dev = core->device;
  243. tbl = core->resources.allowed_clks_tbl;
  244. tbl_size = core->resources.allowed_clks_tbl_size;
  245. if (val == 0) {
  246. struct iris_hfi_device *hdev = dev->hfi_device_data;
  247. msm_cvp_clock_voting = 0;
  248. call_hfi_op(dev, scale_clocks, hdev, hdev->clk_freq);
  249. return 0;
  250. }
  251. for (i = 0; i < tbl_size; i++)
  252. if (val <= tbl[i].clock_rate)
  253. break;
  254. if (i == tbl_size)
  255. msm_cvp_clock_voting = tbl[tbl_size-1].clock_rate;
  256. else
  257. msm_cvp_clock_voting = tbl[i].clock_rate;
  258. dprintk(CVP_WARN, "Override cvp_clk_rate with %d\n",
  259. msm_cvp_clock_voting);
  260. call_hfi_op(dev, scale_clocks, dev->hfi_device_data,
  261. msm_cvp_clock_voting);
  262. return 0;
  263. }
  264. static int _clk_rate_get(void *data, u64 *val)
  265. {
  266. struct msm_cvp_core *core;
  267. struct iris_hfi_device *hdev;
  268. core = list_first_entry(&cvp_driver->cores, struct msm_cvp_core, list);
  269. hdev = core->device->hfi_device_data;
  270. if (msm_cvp_clock_voting)
  271. *val = msm_cvp_clock_voting;
  272. else
  273. *val = hdev->clk_freq;
  274. return 0;
  275. }
  276. DEFINE_DEBUGFS_ATTRIBUTE(clk_rate_fops, _clk_rate_get, _clk_rate_set, "%llu\n");
  277. struct dentry *msm_cvp_debugfs_init_core(struct msm_cvp_core *core,
  278. struct dentry *parent)
  279. {
  280. struct dentry *dir = NULL;
  281. char debugfs_name[MAX_DEBUGFS_NAME];
  282. if (!core) {
  283. dprintk(CVP_ERR, "Invalid params, core: %pK\n", core);
  284. goto failed_create_dir;
  285. }
  286. snprintf(debugfs_name, MAX_DEBUGFS_NAME, "core%d", core->id);
  287. dir = debugfs_create_dir(debugfs_name, parent);
  288. if (IS_ERR_OR_NULL(dir)) {
  289. dir = NULL;
  290. dprintk(CVP_ERR, "Failed to create debugfs for msm_cvp\n");
  291. goto failed_create_dir;
  292. }
  293. if (!debugfs_create_file("info", 0444, dir, core, &core_info_fops)) {
  294. dprintk(CVP_ERR, "debugfs_create_file: fail\n");
  295. goto failed_create_dir;
  296. }
  297. if (!debugfs_create_file("trigger_ssr", 0200,
  298. dir, core, &ssr_fops)) {
  299. dprintk(CVP_ERR, "debugfs_create_file: fail\n");
  300. goto failed_create_dir;
  301. }
  302. if (!debugfs_create_file("clock_rate", 0644, dir,
  303. NULL, &clk_rate_fops)) {
  304. dprintk(CVP_ERR, "debugfs_create_file: clock_rate fail\n");
  305. goto failed_create_dir;
  306. }
  307. failed_create_dir:
  308. return dir;
  309. }
  310. static int inst_info_open(struct inode *inode, struct file *file)
  311. {
  312. dprintk(CVP_INFO, "Open inode ptr: %pK\n", inode->i_private);
  313. file->private_data = inode->i_private;
  314. return 0;
  315. }
  316. static int publish_unreleased_reference(struct msm_cvp_inst *inst,
  317. char **dbuf, char *end)
  318. {
  319. dprintk(CVP_SESS, "%s deprecated function\n", __func__);
  320. return 0;
  321. }
  322. static void put_inst_helper(struct kref *kref)
  323. {
  324. struct msm_cvp_inst *inst = container_of(kref,
  325. struct msm_cvp_inst, kref);
  326. msm_cvp_destroy(inst);
  327. }
  328. static ssize_t inst_info_read(struct file *file, char __user *buf,
  329. size_t count, loff_t *ppos)
  330. {
  331. struct cvp_core_inst_pair *idata = file->private_data;
  332. struct msm_cvp_core *core;
  333. struct msm_cvp_inst *inst, *temp = NULL;
  334. char *dbuf, *cur, *end;
  335. int i;
  336. ssize_t len = 0;
  337. if (!idata || !idata->core || !idata->inst) {
  338. dprintk(CVP_ERR, "%s: Invalid params\n", __func__);
  339. return 0;
  340. }
  341. core = idata->core;
  342. inst = idata->inst;
  343. mutex_lock(&core->lock);
  344. list_for_each_entry(temp, &core->instances, list) {
  345. if (temp == inst)
  346. break;
  347. }
  348. inst = ((temp == inst) && kref_get_unless_zero(&inst->kref)) ?
  349. inst : NULL;
  350. mutex_unlock(&core->lock);
  351. if (!inst) {
  352. dprintk(CVP_ERR, "%s: Instance has become obsolete", __func__);
  353. return 0;
  354. }
  355. dbuf = kzalloc(MAX_DBG_BUF_SIZE, GFP_KERNEL);
  356. if (!dbuf) {
  357. dprintk(CVP_ERR, "%s: Allocation failed!\n", __func__);
  358. len = -ENOMEM;
  359. goto failed_alloc;
  360. }
  361. cur = dbuf;
  362. end = cur + MAX_DBG_BUF_SIZE;
  363. cur += write_str(cur, end - cur, "==============================\n");
  364. cur += write_str(cur, end - cur, "INSTANCE: %pK (%s)\n", inst,
  365. inst->session_type == MSM_CVP_USER ? "User" : "Kernel");
  366. cur += write_str(cur, end - cur, "==============================\n");
  367. cur += write_str(cur, end - cur, "core: %pK\n", inst->core);
  368. cur += write_str(cur, end - cur, "state: %d\n", inst->state);
  369. cur += write_str(cur, end - cur, "secure: %d\n",
  370. !!(inst->flags & CVP_SECURE));
  371. for (i = SESSION_MSG_START; i < SESSION_MSG_END; i++) {
  372. cur += write_str(cur, end - cur, "completions[%d]: %s\n", i,
  373. completion_done(&inst->completions[SESSION_MSG_INDEX(i)]) ?
  374. "pending" : "done");
  375. }
  376. publish_unreleased_reference(inst, &cur, end);
  377. len = simple_read_from_buffer(buf, count, ppos,
  378. dbuf, cur - dbuf);
  379. kfree(dbuf);
  380. failed_alloc:
  381. kref_put(&inst->kref, put_inst_helper);
  382. return len;
  383. }
  384. static int inst_info_release(struct inode *inode, struct file *file)
  385. {
  386. dprintk(CVP_INFO, "Release inode ptr: %pK\n", inode->i_private);
  387. file->private_data = NULL;
  388. return 0;
  389. }
  390. static const struct file_operations inst_info_fops = {
  391. .open = inst_info_open,
  392. .read = inst_info_read,
  393. .release = inst_info_release,
  394. };
  395. struct dentry *msm_cvp_debugfs_init_inst(struct msm_cvp_inst *inst,
  396. struct dentry *parent)
  397. {
  398. struct dentry *dir = NULL, *info = NULL;
  399. char debugfs_name[MAX_DEBUGFS_NAME];
  400. struct cvp_core_inst_pair *idata = NULL;
  401. if (!inst) {
  402. dprintk(CVP_ERR, "Invalid params, inst: %pK\n", inst);
  403. goto exit;
  404. }
  405. snprintf(debugfs_name, MAX_DEBUGFS_NAME, "inst_%p", inst);
  406. idata = kzalloc(sizeof(*idata), GFP_KERNEL);
  407. if (!idata) {
  408. dprintk(CVP_ERR, "%s: Allocation failed!\n", __func__);
  409. goto exit;
  410. }
  411. idata->core = inst->core;
  412. idata->inst = inst;
  413. dir = debugfs_create_dir(debugfs_name, parent);
  414. if (IS_ERR_OR_NULL(dir)) {
  415. dir = NULL;
  416. dprintk(CVP_ERR, "Failed to create debugfs for msm_cvp\n");
  417. goto failed_create_dir;
  418. }
  419. info = debugfs_create_file("info", 0444, dir,
  420. idata, &inst_info_fops);
  421. if (!info) {
  422. dprintk(CVP_ERR, "debugfs_create_file: info fail\n");
  423. goto failed_create_file;
  424. }
  425. dir->d_inode->i_private = info->d_inode->i_private;
  426. inst->debug.pdata[FRAME_PROCESSING].sampling = true;
  427. return dir;
  428. failed_create_file:
  429. debugfs_remove_recursive(dir);
  430. dir = NULL;
  431. failed_create_dir:
  432. kfree(idata);
  433. exit:
  434. return dir;
  435. }
  436. void msm_cvp_debugfs_deinit_inst(struct msm_cvp_inst *inst)
  437. {
  438. struct dentry *dentry = NULL;
  439. if (!inst || !inst->debugfs_root)
  440. return;
  441. dentry = inst->debugfs_root;
  442. if (dentry->d_inode) {
  443. dprintk(CVP_INFO, "Destroy %pK\n", dentry->d_inode->i_private);
  444. kfree(dentry->d_inode->i_private);
  445. dentry->d_inode->i_private = NULL;
  446. }
  447. debugfs_remove_recursive(dentry);
  448. inst->debugfs_root = NULL;
  449. }