123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- // SPDX-License-Identifier: GPL-2.0-only
- /*
- * Copyright (c) 2017-2018, The Linux Foundation. All rights reserved.
- */
- #include <linux/delay.h>
- #include <linux/io.h>
- #include <linux/of.h>
- #include <linux/module.h>
- #include <linux/kernel.h>
- #include <linux/iommu.h>
- #include <linux/timer.h>
- #include <linux/platform_device.h>
- #include <linux/videodev2.h>
- #include <media/v4l2-fh.h>
- #include <media/v4l2-device.h>
- #include <media/v4l2-event.h>
- #include <media/v4l2-ioctl.h>
- #include <media/v4l2-subdev.h>
- #include <media/cam_req_mgr.h>
- #include <media/cam_defs.h>
- #include <media/cam_icp.h>
- #include "cam_req_mgr_dev.h"
- #include "cam_subdev.h"
- #include "cam_node.h"
- #include "cam_context.h"
- #include "cam_icp_context.h"
- #include "cam_hw_mgr_intf.h"
- #include "cam_icp_hw_mgr_intf.h"
- #include "cam_debug_util.h"
- #include "cam_smmu_api.h"
- #define CAM_ICP_DEV_NAME "cam-icp"
- struct cam_icp_subdev {
- struct cam_subdev sd;
- struct cam_node *node;
- struct cam_context ctx[CAM_ICP_CTX_MAX];
- struct cam_icp_context ctx_icp[CAM_ICP_CTX_MAX];
- struct mutex icp_lock;
- int32_t open_cnt;
- int32_t reserved;
- };
- static struct cam_icp_subdev g_icp_dev;
- static const struct of_device_id cam_icp_dt_match[] = {
- {.compatible = "qcom,cam-icp"},
- {}
- };
- static void cam_icp_dev_iommu_fault_handler(
- struct iommu_domain *domain, struct device *dev, unsigned long iova,
- int flags, void *token, uint32_t buf_info)
- {
- int i = 0;
- struct cam_node *node = NULL;
- if (!token) {
- CAM_ERR(CAM_ICP, "invalid token in page handler cb");
- return;
- }
- node = (struct cam_node *)token;
- for (i = 0; i < node->ctx_size; i++)
- cam_context_dump_pf_info(&(node->ctx_list[i]), iova,
- buf_info);
- }
- static int cam_icp_subdev_open(struct v4l2_subdev *sd,
- struct v4l2_subdev_fh *fh)
- {
- struct cam_hw_mgr_intf *hw_mgr_intf = NULL;
- struct cam_node *node = v4l2_get_subdevdata(sd);
- int rc = 0;
- mutex_lock(&g_icp_dev.icp_lock);
- if (g_icp_dev.open_cnt >= 1) {
- CAM_ERR(CAM_ICP, "ICP subdev is already opened");
- rc = -EALREADY;
- goto end;
- }
- if (!node) {
- CAM_ERR(CAM_ICP, "Invalid args");
- rc = -EINVAL;
- goto end;
- }
- hw_mgr_intf = &node->hw_mgr_intf;
- rc = hw_mgr_intf->hw_open(hw_mgr_intf->hw_mgr_priv, NULL);
- if (rc < 0) {
- CAM_ERR(CAM_ICP, "FW download failed");
- goto end;
- }
- g_icp_dev.open_cnt++;
- end:
- mutex_unlock(&g_icp_dev.icp_lock);
- return rc;
- }
- static int cam_icp_subdev_close(struct v4l2_subdev *sd,
- struct v4l2_subdev_fh *fh)
- {
- int rc = 0;
- struct cam_hw_mgr_intf *hw_mgr_intf = NULL;
- struct cam_node *node = v4l2_get_subdevdata(sd);
- mutex_lock(&g_icp_dev.icp_lock);
- if (g_icp_dev.open_cnt <= 0) {
- CAM_DBG(CAM_ICP, "ICP subdev is already closed");
- rc = -EINVAL;
- goto end;
- }
- g_icp_dev.open_cnt--;
- if (!node) {
- CAM_ERR(CAM_ICP, "Invalid args");
- rc = -EINVAL;
- goto end;
- }
- hw_mgr_intf = &node->hw_mgr_intf;
- if (!hw_mgr_intf) {
- CAM_ERR(CAM_ICP, "hw_mgr_intf is not initialized");
- rc = -EINVAL;
- goto end;
- }
- rc = cam_node_shutdown(node);
- if (rc < 0) {
- CAM_ERR(CAM_ICP, "HW close failed");
- goto end;
- }
- end:
- mutex_unlock(&g_icp_dev.icp_lock);
- return 0;
- }
- const struct v4l2_subdev_internal_ops cam_icp_subdev_internal_ops = {
- .open = cam_icp_subdev_open,
- .close = cam_icp_subdev_close,
- };
- static int cam_icp_probe(struct platform_device *pdev)
- {
- int rc = 0, i = 0;
- struct cam_node *node;
- struct cam_hw_mgr_intf *hw_mgr_intf;
- int iommu_hdl = -1;
- if (!pdev) {
- CAM_ERR(CAM_ICP, "pdev is NULL");
- return -EINVAL;
- }
- g_icp_dev.sd.pdev = pdev;
- g_icp_dev.sd.internal_ops = &cam_icp_subdev_internal_ops;
- rc = cam_subdev_probe(&g_icp_dev.sd, pdev, CAM_ICP_DEV_NAME,
- CAM_ICP_DEVICE_TYPE);
- if (rc) {
- CAM_ERR(CAM_ICP, "ICP cam_subdev_probe failed");
- goto probe_fail;
- }
- node = (struct cam_node *) g_icp_dev.sd.token;
- hw_mgr_intf = kzalloc(sizeof(*hw_mgr_intf), GFP_KERNEL);
- if (!hw_mgr_intf) {
- rc = -EINVAL;
- goto hw_alloc_fail;
- }
- rc = cam_icp_hw_mgr_init(pdev->dev.of_node, (uint64_t *)hw_mgr_intf,
- &iommu_hdl);
- if (rc) {
- CAM_ERR(CAM_ICP, "ICP HW manager init failed: %d", rc);
- goto hw_init_fail;
- }
- for (i = 0; i < CAM_ICP_CTX_MAX; i++) {
- g_icp_dev.ctx_icp[i].base = &g_icp_dev.ctx[i];
- rc = cam_icp_context_init(&g_icp_dev.ctx_icp[i],
- hw_mgr_intf, i);
- if (rc) {
- CAM_ERR(CAM_ICP, "ICP context init failed");
- goto ctx_fail;
- }
- }
- rc = cam_node_init(node, hw_mgr_intf, g_icp_dev.ctx,
- CAM_ICP_CTX_MAX, CAM_ICP_DEV_NAME);
- if (rc) {
- CAM_ERR(CAM_ICP, "ICP node init failed");
- goto ctx_fail;
- }
- cam_smmu_set_client_page_fault_handler(iommu_hdl,
- cam_icp_dev_iommu_fault_handler, node);
- g_icp_dev.open_cnt = 0;
- mutex_init(&g_icp_dev.icp_lock);
- CAM_DBG(CAM_ICP, "ICP probe complete");
- return rc;
- ctx_fail:
- for (--i; i >= 0; i--)
- cam_icp_context_deinit(&g_icp_dev.ctx_icp[i]);
- hw_init_fail:
- kfree(hw_mgr_intf);
- hw_alloc_fail:
- cam_subdev_remove(&g_icp_dev.sd);
- probe_fail:
- return rc;
- }
- static int cam_icp_remove(struct platform_device *pdev)
- {
- int i;
- struct v4l2_subdev *sd;
- struct cam_subdev *subdev;
- if (!pdev) {
- CAM_ERR(CAM_ICP, "pdev is NULL");
- return -ENODEV;
- }
- sd = platform_get_drvdata(pdev);
- if (!sd) {
- CAM_ERR(CAM_ICP, "V4l2 subdev is NULL");
- return -ENODEV;
- }
- subdev = v4l2_get_subdevdata(sd);
- if (!subdev) {
- CAM_ERR(CAM_ICP, "cam subdev is NULL");
- return -ENODEV;
- }
- for (i = 0; i < CAM_ICP_CTX_MAX; i++)
- cam_icp_context_deinit(&g_icp_dev.ctx_icp[i]);
- cam_node_deinit(g_icp_dev.node);
- cam_subdev_remove(&g_icp_dev.sd);
- mutex_destroy(&g_icp_dev.icp_lock);
- return 0;
- }
- static struct platform_driver cam_icp_driver = {
- .probe = cam_icp_probe,
- .remove = cam_icp_remove,
- .driver = {
- .name = "cam_icp",
- .owner = THIS_MODULE,
- .of_match_table = cam_icp_dt_match,
- .suppress_bind_attrs = true,
- },
- };
- static int __init cam_icp_init_module(void)
- {
- return platform_driver_register(&cam_icp_driver);
- }
- static void __exit cam_icp_exit_module(void)
- {
- platform_driver_unregister(&cam_icp_driver);
- }
- module_init(cam_icp_init_module);
- module_exit(cam_icp_exit_module);
- MODULE_DESCRIPTION("MSM ICP driver");
- MODULE_LICENSE("GPL v2");
|