cvp.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617
  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 <linux/dma-mapping.h>
  7. #include <linux/init.h>
  8. #include <linux/ioctl.h>
  9. #include <linux/list.h>
  10. #include <linux/module.h>
  11. #include <linux/of_platform.h>
  12. #include <linux/platform_device.h>
  13. #include <linux/slab.h>
  14. #include <linux/types.h>
  15. #include <linux/version.h>
  16. #include <linux/io.h>
  17. #include "msm_cvp_core.h"
  18. #include "msm_cvp_common.h"
  19. #include "msm_cvp_debug.h"
  20. #include "msm_cvp_internal.h"
  21. #include "msm_cvp_res_parse.h"
  22. #include "msm_cvp_resources.h"
  23. #include "cvp_hfi_api.h"
  24. #include "cvp_private.h"
  25. #include "msm_cvp_clocks.h"
  26. #include "msm_cvp_dsp.h"
  27. #define CLASS_NAME "cvp"
  28. #define DRIVER_NAME "cvp"
  29. struct msm_cvp_drv *cvp_driver;
  30. static int cvp_open(struct inode *inode, struct file *filp)
  31. {
  32. struct msm_cvp_core *core = container_of(inode->i_cdev,
  33. struct msm_cvp_core, cdev);
  34. struct msm_cvp_inst *inst;
  35. dprintk(CVP_SESS, "%s: Enter\n", __func__);
  36. inst = msm_cvp_open(core->id, MSM_CVP_USER);
  37. if (!inst) {
  38. dprintk(CVP_ERR, "Failed to create cvp instance\n");
  39. return -ENOMEM;
  40. }
  41. filp->private_data = inst;
  42. return 0;
  43. }
  44. static int cvp_close(struct inode *inode, struct file *filp)
  45. {
  46. int rc = 0;
  47. struct msm_cvp_inst *inst = filp->private_data;
  48. rc = msm_cvp_close(inst);
  49. filp->private_data = NULL;
  50. return rc;
  51. }
  52. static unsigned int cvp_poll(struct file *filp, struct poll_table_struct *p)
  53. {
  54. int rc = 0;
  55. struct msm_cvp_inst *inst = filp->private_data;
  56. unsigned long flags = 0;
  57. poll_wait(filp, &inst->event_handler.wq, p);
  58. spin_lock_irqsave(&inst->event_handler.lock, flags);
  59. if (inst->event_handler.event == CVP_SSR_EVENT)
  60. rc |= POLLPRI;
  61. spin_unlock_irqrestore(&inst->event_handler.lock, flags);
  62. return rc;
  63. }
  64. static const struct file_operations cvp_fops = {
  65. .owner = THIS_MODULE,
  66. .open = cvp_open,
  67. .release = cvp_close,
  68. .unlocked_ioctl = cvp_unblocked_ioctl,
  69. .compat_ioctl = cvp_compat_ioctl,
  70. .poll = cvp_poll,
  71. };
  72. static int read_platform_resources(struct msm_cvp_core *core,
  73. struct platform_device *pdev)
  74. {
  75. int rc = 0;
  76. if (!core || !pdev) {
  77. dprintk(CVP_ERR, "%s: Invalid params %pK %pK\n",
  78. __func__, core, pdev);
  79. return -EINVAL;
  80. }
  81. core->hfi_type = CVP_HFI_IRIS;
  82. core->resources.pdev = pdev;
  83. if (pdev->dev.of_node) {
  84. /* Target supports DT, parse from it */
  85. rc = cvp_read_platform_resources_from_drv_data(core);
  86. rc = cvp_read_platform_resources_from_dt(&core->resources);
  87. } else {
  88. dprintk(CVP_ERR, "pdev node is NULL\n");
  89. rc = -EINVAL;
  90. }
  91. return rc;
  92. }
  93. static void init_cycle_info(struct cvp_cycle_info *info)
  94. {
  95. memset(info->sum_fps, 0, HFI_MAX_HW_THREADS*sizeof(u32));
  96. memset(info->hi_ctrl_lim, 0, HFI_MAX_HW_THREADS*sizeof(u32));
  97. memset(info->lo_ctrl_lim, 0, HFI_MAX_HW_THREADS*sizeof(u32));
  98. memset(info->cycle, 0,
  99. HFI_MAX_HW_THREADS*sizeof(struct cvp_cycle_stat));
  100. info->conf_freq = 0;
  101. }
  102. static int msm_cvp_initialize_core(struct platform_device *pdev,
  103. struct msm_cvp_core *core)
  104. {
  105. int i = 0;
  106. int rc = 0;
  107. if (!core)
  108. return -EINVAL;
  109. rc = read_platform_resources(core, pdev);
  110. if (rc) {
  111. dprintk(CVP_ERR, "Failed to get platform resources\n");
  112. return rc;
  113. }
  114. INIT_LIST_HEAD(&core->instances);
  115. mutex_init(&core->lock);
  116. mutex_init(&core->clk_lock);
  117. core->state = CVP_CORE_UNINIT;
  118. for (i = SYS_MSG_INDEX(SYS_MSG_START);
  119. i <= SYS_MSG_INDEX(SYS_MSG_END); i++) {
  120. init_completion(&core->completions[i]);
  121. }
  122. INIT_DELAYED_WORK(&core->fw_unload_work, msm_cvp_fw_unload_handler);
  123. INIT_WORK(&core->ssr_work, msm_cvp_ssr_handler);
  124. init_cycle_info(&core->dyn_clk);
  125. return rc;
  126. }
  127. static ssize_t link_name_show(struct device *dev,
  128. struct device_attribute *attr,
  129. char *buf)
  130. {
  131. struct msm_cvp_core *core = dev_get_drvdata(dev);
  132. if (core)
  133. if (dev == core->dev)
  134. return snprintf(buf, PAGE_SIZE, "msm_cvp\n");
  135. else
  136. return 0;
  137. else
  138. return 0;
  139. }
  140. static DEVICE_ATTR_RO(link_name);
  141. static ssize_t pwr_collapse_delay_store(struct device *dev,
  142. struct device_attribute *attr,
  143. const char *buf, size_t count)
  144. {
  145. unsigned long val = 0;
  146. int rc = 0;
  147. struct msm_cvp_core *core = NULL;
  148. rc = kstrtoul(buf, 0, &val);
  149. if (rc)
  150. return rc;
  151. else if (!val)
  152. return -EINVAL;
  153. core = get_cvp_core(MSM_CORE_CVP);
  154. if (!core)
  155. return -EINVAL;
  156. core->resources.msm_cvp_pwr_collapse_delay = val;
  157. return count;
  158. }
  159. static ssize_t pwr_collapse_delay_show(struct device *dev,
  160. struct device_attribute *attr,
  161. char *buf)
  162. {
  163. struct msm_cvp_core *core = NULL;
  164. core = get_cvp_core(MSM_CORE_CVP);
  165. if (!core)
  166. return -EINVAL;
  167. return snprintf(buf, PAGE_SIZE, "%u\n",
  168. core->resources.msm_cvp_pwr_collapse_delay);
  169. }
  170. static DEVICE_ATTR_RW(pwr_collapse_delay);
  171. static ssize_t thermal_level_show(struct device *dev,
  172. struct device_attribute *attr,
  173. char *buf)
  174. {
  175. return snprintf(buf, PAGE_SIZE, "%d\n", cvp_driver->thermal_level);
  176. }
  177. static ssize_t thermal_level_store(struct device *dev,
  178. struct device_attribute *attr,
  179. const char *buf, size_t count)
  180. {
  181. int rc = 0, val = 0;
  182. rc = kstrtoint(buf, 0, &val);
  183. if (rc || val < 0) {
  184. dprintk(CVP_WARN,
  185. "Invalid thermal level value: %s\n", buf);
  186. return -EINVAL;
  187. }
  188. dprintk(CVP_PWR, "Thermal level old %d new %d\n",
  189. cvp_driver->thermal_level, val);
  190. if (val == cvp_driver->thermal_level)
  191. return count;
  192. cvp_driver->thermal_level = val;
  193. msm_cvp_comm_handle_thermal_event();
  194. return count;
  195. }
  196. static DEVICE_ATTR_RW(thermal_level);
  197. static ssize_t sku_version_show(struct device *dev,
  198. struct device_attribute *attr, char *buf)
  199. {
  200. return scnprintf(buf, PAGE_SIZE, "%d",
  201. cvp_driver->sku_version);
  202. }
  203. static DEVICE_ATTR_RO(sku_version);
  204. static ssize_t boot_store(struct device *dev,
  205. struct device_attribute *attr,
  206. const char *buf, size_t count)
  207. {
  208. int rc = 0, val = 0;
  209. static int booted;
  210. rc = kstrtoint(buf, 0, &val);
  211. if (rc || val < 0) {
  212. dprintk(CVP_WARN,
  213. "Invalid boot value: %s\n", buf);
  214. return -EINVAL;
  215. }
  216. if (val > 0 && booted == 0) {
  217. struct msm_cvp_inst *inst;
  218. inst = msm_cvp_open(MSM_CORE_CVP, MSM_CVP_BOOT);
  219. if (!inst) {
  220. dprintk(CVP_ERR,
  221. "Failed to create cvp instance\n");
  222. return -ENOMEM;
  223. }
  224. rc = msm_cvp_close(inst);
  225. if (rc) {
  226. dprintk(CVP_ERR,
  227. "Failed to close cvp instance\n");
  228. return rc;
  229. }
  230. }
  231. booted = 1;
  232. return count;
  233. }
  234. static DEVICE_ATTR_WO(boot);
  235. static struct attribute *msm_cvp_core_attrs[] = {
  236. &dev_attr_pwr_collapse_delay.attr,
  237. &dev_attr_thermal_level.attr,
  238. &dev_attr_sku_version.attr,
  239. &dev_attr_link_name.attr,
  240. &dev_attr_boot.attr,
  241. NULL
  242. };
  243. static struct attribute_group msm_cvp_core_attr_group = {
  244. .attrs = msm_cvp_core_attrs,
  245. };
  246. static const struct of_device_id msm_cvp_plat_match[] = {
  247. {.compatible = "qcom,msm-cvp"},
  248. {.compatible = "qcom,msm-cvp,context-bank"},
  249. {.compatible = "qcom,msm-cvp,bus"},
  250. {.compatible = "qcom,msm-cvp,mem-cdsp"},
  251. {}
  252. };
  253. static int msm_probe_cvp_device(struct platform_device *pdev)
  254. {
  255. int rc = 0;
  256. struct msm_cvp_core *core;
  257. if (!cvp_driver) {
  258. dprintk(CVP_ERR, "Invalid cvp driver\n");
  259. return -EINVAL;
  260. }
  261. core = kzalloc(sizeof(*core), GFP_KERNEL);
  262. if (!core)
  263. return -ENOMEM;
  264. core->platform_data = cvp_get_drv_data(&pdev->dev);
  265. dev_set_drvdata(&pdev->dev, core);
  266. rc = msm_cvp_initialize_core(pdev, core);
  267. if (rc) {
  268. dprintk(CVP_ERR, "Failed to init core\n");
  269. goto err_core_init;
  270. }
  271. core->id = MSM_CORE_CVP;
  272. rc = alloc_chrdev_region(&core->dev_num, 0, 1, DRIVER_NAME);
  273. if (rc < 0) {
  274. dprintk(CVP_ERR, "alloc_chrdev_region failed: %d\n",
  275. rc);
  276. goto err_alloc_chrdev;
  277. }
  278. core->class = class_create(THIS_MODULE, CLASS_NAME);
  279. if (IS_ERR(core->class)) {
  280. rc = PTR_ERR(core->class);
  281. dprintk(CVP_ERR, "class_create failed: %d\n",
  282. rc);
  283. goto err_class_create;
  284. }
  285. core->dev = device_create(core->class, NULL,
  286. core->dev_num, NULL, DRIVER_NAME);
  287. if (IS_ERR(core->dev)) {
  288. rc = PTR_ERR(core->dev);
  289. dprintk(CVP_ERR, "device_create failed: %d\n",
  290. rc);
  291. goto err_device_create;
  292. }
  293. dev_set_drvdata(core->dev, core);
  294. cdev_init(&core->cdev, &cvp_fops);
  295. rc = cdev_add(&core->cdev,
  296. MKDEV(MAJOR(core->dev_num), 0), 1);
  297. if (rc < 0) {
  298. dprintk(CVP_ERR, "cdev_add failed: %d\n",
  299. rc);
  300. goto error_cdev_add;
  301. }
  302. /* finish setting up the 'core' */
  303. mutex_lock(&cvp_driver->lock);
  304. if (cvp_driver->num_cores + 1 > MSM_CVP_CORES_MAX) {
  305. mutex_unlock(&cvp_driver->lock);
  306. dprintk(CVP_ERR, "Maximum cores already exist, core_no = %d\n",
  307. cvp_driver->num_cores);
  308. goto err_cores_exceeded;
  309. }
  310. cvp_driver->num_cores++;
  311. mutex_unlock(&cvp_driver->lock);
  312. rc = sysfs_create_group(&core->dev->kobj, &msm_cvp_core_attr_group);
  313. if (rc) {
  314. dprintk(CVP_ERR,
  315. "Failed to create attributes\n");
  316. goto err_cores_exceeded;
  317. }
  318. core->device = cvp_hfi_initialize(core->hfi_type, core->id,
  319. &core->resources, &cvp_handle_cmd_response);
  320. if (IS_ERR_OR_NULL(core->device)) {
  321. mutex_lock(&cvp_driver->lock);
  322. cvp_driver->num_cores--;
  323. mutex_unlock(&cvp_driver->lock);
  324. rc = PTR_ERR(core->device) ?: -EBADHANDLE;
  325. if (rc != -EPROBE_DEFER)
  326. dprintk(CVP_ERR, "Failed to create HFI device\n");
  327. else
  328. dprintk(CVP_CORE, "msm_cvp: request probe defer\n");
  329. goto err_hfi_initialize;
  330. }
  331. mutex_lock(&cvp_driver->lock);
  332. list_add_tail(&core->list, &cvp_driver->cores);
  333. mutex_unlock(&cvp_driver->lock);
  334. core->debugfs_root = msm_cvp_debugfs_init_core(
  335. core, cvp_driver->debugfs_root);
  336. cvp_driver->sku_version = core->resources.sku_version;
  337. dprintk(CVP_CORE, "populating sub devices\n");
  338. /*
  339. * Trigger probe for each sub-device i.e. qcom,msm-cvp,context-bank.
  340. * When msm_cvp_probe is called for each sub-device, parse the
  341. * context-bank details and store it in core->resources.context_banks
  342. * list.
  343. */
  344. rc = of_platform_populate(pdev->dev.of_node, msm_cvp_plat_match, NULL,
  345. &pdev->dev);
  346. if (rc) {
  347. dprintk(CVP_ERR, "Failed to trigger probe for sub-devices\n");
  348. goto err_fail_sub_device_probe;
  349. }
  350. atomic64_set(&core->kernel_trans_id, 0);
  351. rc = cvp_dsp_device_init();
  352. if (rc)
  353. dprintk(CVP_WARN, "Failed to initialize DSP driver\n");
  354. return rc;
  355. err_fail_sub_device_probe:
  356. cvp_hfi_deinitialize(core->hfi_type, core->device);
  357. err_hfi_initialize:
  358. err_cores_exceeded:
  359. cdev_del(&core->cdev);
  360. error_cdev_add:
  361. device_destroy(core->class, core->dev_num);
  362. err_device_create:
  363. class_destroy(core->class);
  364. err_class_create:
  365. unregister_chrdev_region(core->dev_num, 1);
  366. err_alloc_chrdev:
  367. sysfs_remove_group(&pdev->dev.kobj, &msm_cvp_core_attr_group);
  368. err_core_init:
  369. dev_set_drvdata(&pdev->dev, NULL);
  370. kfree(core);
  371. return rc;
  372. }
  373. static int msm_cvp_probe_mem_cdsp(struct platform_device *pdev)
  374. {
  375. return cvp_read_mem_cdsp_resources_from_dt(pdev);
  376. }
  377. static int msm_cvp_probe_context_bank(struct platform_device *pdev)
  378. {
  379. return cvp_read_context_bank_resources_from_dt(pdev);
  380. }
  381. static int msm_cvp_probe_bus(struct platform_device *pdev)
  382. {
  383. return cvp_read_bus_resources_from_dt(pdev);
  384. }
  385. static int msm_cvp_probe(struct platform_device *pdev)
  386. {
  387. /*
  388. * Sub devices probe will be triggered by of_platform_populate() towards
  389. * the end of the probe function after msm-cvp device probe is
  390. * completed. Return immediately after completing sub-device probe.
  391. */
  392. if (of_device_is_compatible(pdev->dev.of_node, "qcom,msm-cvp")) {
  393. return msm_probe_cvp_device(pdev);
  394. } else if (of_device_is_compatible(pdev->dev.of_node,
  395. "qcom,msm-cvp,bus")) {
  396. return msm_cvp_probe_bus(pdev);
  397. } else if (of_device_is_compatible(pdev->dev.of_node,
  398. "qcom,msm-cvp,context-bank")) {
  399. return msm_cvp_probe_context_bank(pdev);
  400. } else if (of_device_is_compatible(pdev->dev.of_node,
  401. "qcom,msm-cvp,mem-cdsp")) {
  402. return msm_cvp_probe_mem_cdsp(pdev);
  403. }
  404. /* How did we end up here? */
  405. MSM_CVP_ERROR(1);
  406. return -EINVAL;
  407. }
  408. static int msm_cvp_remove(struct platform_device *pdev)
  409. {
  410. int rc = 0;
  411. struct msm_cvp_core *core;
  412. if (!pdev) {
  413. dprintk(CVP_ERR, "%s invalid input %pK", __func__, pdev);
  414. return -EINVAL;
  415. }
  416. core = dev_get_drvdata(&pdev->dev);
  417. if (!core) {
  418. dprintk(CVP_ERR, "%s invalid core", __func__);
  419. return -EINVAL;
  420. }
  421. cvp_hfi_deinitialize(core->hfi_type, core->device);
  422. msm_cvp_free_platform_resources(&core->resources);
  423. sysfs_remove_group(&pdev->dev.kobj, &msm_cvp_core_attr_group);
  424. dev_set_drvdata(&pdev->dev, NULL);
  425. mutex_destroy(&core->lock);
  426. mutex_destroy(&core->clk_lock);
  427. kfree(core);
  428. return rc;
  429. }
  430. static int msm_cvp_pm_suspend(struct device *dev)
  431. {
  432. int rc = 0;
  433. struct msm_cvp_core *core;
  434. /*
  435. * Bail out if
  436. * - driver possibly not probed yet
  437. * - not the main device. We don't support power management on
  438. * subdevices (e.g. context banks)
  439. */
  440. if (!dev || !dev->driver ||
  441. !of_device_is_compatible(dev->of_node, "qcom,msm-cvp"))
  442. return 0;
  443. core = dev_get_drvdata(dev);
  444. if (!core) {
  445. dprintk(CVP_ERR, "%s invalid core\n", __func__);
  446. return -EINVAL;
  447. }
  448. rc = msm_cvp_suspend(core->id);
  449. if (rc == -ENOTSUPP)
  450. rc = 0;
  451. else if (rc)
  452. dprintk(CVP_WARN, "Failed to suspend: %d\n", rc);
  453. return rc;
  454. }
  455. static int msm_cvp_pm_resume(struct device *dev)
  456. {
  457. dprintk(CVP_INFO, "%s\n", __func__);
  458. return 0;
  459. }
  460. static const struct dev_pm_ops msm_cvp_pm_ops = {
  461. SET_SYSTEM_SLEEP_PM_OPS(msm_cvp_pm_suspend, msm_cvp_pm_resume)
  462. };
  463. MODULE_DEVICE_TABLE(of, msm_cvp_plat_match);
  464. static struct platform_driver msm_cvp_driver = {
  465. .probe = msm_cvp_probe,
  466. .remove = msm_cvp_remove,
  467. .driver = {
  468. .name = "msm_cvp",
  469. .of_match_table = msm_cvp_plat_match,
  470. .pm = &msm_cvp_pm_ops,
  471. },
  472. };
  473. static int __init msm_cvp_init(void)
  474. {
  475. int rc = 0;
  476. cvp_driver = kzalloc(sizeof(*cvp_driver), GFP_KERNEL);
  477. if (!cvp_driver) {
  478. dprintk(CVP_ERR,
  479. "Failed to allocate memroy for msm_cvp_drv\n");
  480. return -ENOMEM;
  481. }
  482. INIT_LIST_HEAD(&cvp_driver->cores);
  483. mutex_init(&cvp_driver->lock);
  484. cvp_driver->debugfs_root = msm_cvp_debugfs_init_drv();
  485. if (!cvp_driver->debugfs_root)
  486. dprintk(CVP_ERR,
  487. "Failed to create debugfs for msm_cvp\n");
  488. rc = platform_driver_register(&msm_cvp_driver);
  489. if (rc) {
  490. dprintk(CVP_ERR,
  491. "Failed to register platform driver\n");
  492. debugfs_remove_recursive(cvp_driver->debugfs_root);
  493. kfree(cvp_driver);
  494. cvp_driver = NULL;
  495. return rc;
  496. }
  497. cvp_driver->msg_cache = KMEM_CACHE(cvp_session_msg, 0);
  498. cvp_driver->frame_cache = KMEM_CACHE(msm_cvp_frame, 0);
  499. cvp_driver->buf_cache = KMEM_CACHE(cvp_internal_buf, 0);
  500. cvp_driver->smem_cache = KMEM_CACHE(msm_cvp_smem, 0);
  501. return rc;
  502. }
  503. static void __exit msm_cvp_exit(void)
  504. {
  505. cvp_dsp_device_exit();
  506. kmem_cache_destroy(cvp_driver->msg_cache);
  507. kmem_cache_destroy(cvp_driver->frame_cache);
  508. kmem_cache_destroy(cvp_driver->buf_cache);
  509. kmem_cache_destroy(cvp_driver->smem_cache);
  510. platform_driver_unregister(&msm_cvp_driver);
  511. debugfs_remove_recursive(cvp_driver->debugfs_root);
  512. mutex_destroy(&cvp_driver->lock);
  513. kfree(cvp_driver);
  514. cvp_driver = NULL;
  515. }
  516. module_init(msm_cvp_init);
  517. module_exit(msm_cvp_exit);
  518. MODULE_LICENSE("GPL v2");