msm_cvp_debug.c 13 KB

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