msm_cvp_debug.c 13 KB

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