msm_cvp_debug.c 13 KB

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