cvp.c 14 KB

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