msm: camera: custom: Add support for custom HW

This change provides a template to add any custom HW
block.

CRs-Fixed: 2515662
Change-Id: Ie707c27950a330658cdaa4b64b7e304f4d62a5b2
Signed-off-by: Karthik Anantha Ram <kartanan@codeaurora.org>
这个提交包含在:
Karthik Anantha Ram
2019-08-26 16:28:49 -07:00
提交者 Gerrit - the friendly Code Review server
父节点 02f7646413
当前提交 9c771385d3
修改 25 个文件,包含 4297 行新增1 行删除

查看文件

@@ -0,0 +1,198 @@
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2019, The Linux Foundation. All rights reserved.
*/
#include <linux/delay.h>
#include <linux/io.h>
#include <linux/of.h>
#include <linux/module.h>
#include <linux/ion.h>
#include <linux/iommu.h>
#include <linux/timer.h>
#include <linux/kernel.h>
#include <uapi/media/cam_req_mgr.h>
#include "cam_custom_dev.h"
#include "cam_hw_mgr_intf.h"
#include "cam_custom_hw_mgr_intf.h"
#include "cam_node.h"
#include "cam_debug_util.h"
#include "cam_smmu_api.h"
static struct cam_custom_dev g_custom_dev;
static void cam_custom_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_CUSTOM, "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 const struct of_device_id cam_custom_dt_match[] = {
{
.compatible = "qcom,cam-custom"
},
{}
};
static int cam_custom_subdev_open(struct v4l2_subdev *sd,
struct v4l2_subdev_fh *fh)
{
mutex_lock(&g_custom_dev.custom_dev_mutex);
g_custom_dev.open_cnt++;
mutex_unlock(&g_custom_dev.custom_dev_mutex);
return 0;
}
static int cam_custom_subdev_close(struct v4l2_subdev *sd,
struct v4l2_subdev_fh *fh)
{
int rc = 0;
struct cam_node *node = v4l2_get_subdevdata(sd);
mutex_lock(&g_custom_dev.custom_dev_mutex);
if (g_custom_dev.open_cnt <= 0) {
CAM_DBG(CAM_CUSTOM, "Custom subdev is already closed");
rc = -EINVAL;
goto end;
}
g_custom_dev.open_cnt--;
if (!node) {
CAM_ERR(CAM_CUSTOM, "Node ptr is NULL");
rc = -EINVAL;
goto end;
}
if (g_custom_dev.open_cnt == 0)
cam_node_shutdown(node);
end:
mutex_unlock(&g_custom_dev.custom_dev_mutex);
return rc;
}
static const struct v4l2_subdev_internal_ops cam_custom_subdev_internal_ops = {
.close = cam_custom_subdev_close,
.open = cam_custom_subdev_open,
};
static int cam_custom_dev_remove(struct platform_device *pdev)
{
int rc = 0;
int i;
/* clean up resources */
for (i = 0; i < CAM_CUSTOM_HW_MAX_INSTANCES; i++) {
rc = cam_custom_dev_context_deinit(&g_custom_dev.ctx_custom[i]);
if (rc)
CAM_ERR(CAM_CUSTOM,
"Custom context %d deinit failed", i);
}
rc = cam_subdev_remove(&g_custom_dev.sd);
if (rc)
CAM_ERR(CAM_CUSTOM, "Unregister failed");
memset(&g_custom_dev, 0, sizeof(g_custom_dev));
return 0;
}
static int cam_custom_dev_probe(struct platform_device *pdev)
{
int rc = -EINVAL;
int i;
struct cam_hw_mgr_intf hw_mgr_intf;
struct cam_node *node;
int iommu_hdl = -1;
g_custom_dev.sd.internal_ops = &cam_custom_subdev_internal_ops;
rc = cam_subdev_probe(&g_custom_dev.sd, pdev, CAM_CUSTOM_DEV_NAME,
CAM_CUSTOM_DEVICE_TYPE);
if (rc) {
CAM_ERR(CAM_CUSTOM, "Custom device cam_subdev_probe failed!");
goto err;
}
node = (struct cam_node *) g_custom_dev.sd.token;
memset(&hw_mgr_intf, 0, sizeof(hw_mgr_intf));
rc = cam_custom_hw_mgr_init(pdev->dev.of_node,
&hw_mgr_intf, &iommu_hdl);
if (rc != 0) {
CAM_ERR(CAM_CUSTOM, "Can not initialized Custom HW manager!");
goto unregister;
}
for (i = 0; i < CAM_CUSTOM_HW_MAX_INSTANCES; i++) {
rc = cam_custom_dev_context_init(&g_custom_dev.ctx_custom[i],
&g_custom_dev.ctx[i],
&node->crm_node_intf,
&node->hw_mgr_intf,
i);
if (rc) {
CAM_ERR(CAM_CUSTOM, "Custom context init failed!");
goto unregister;
}
}
rc = cam_node_init(node, &hw_mgr_intf, g_custom_dev.ctx,
CAM_CUSTOM_HW_MAX_INSTANCES, CAM_CUSTOM_DEV_NAME);
if (rc) {
CAM_ERR(CAM_CUSTOM, "Custom HW node init failed!");
goto unregister;
}
cam_smmu_set_client_page_fault_handler(iommu_hdl,
cam_custom_dev_iommu_fault_handler, node);
mutex_init(&g_custom_dev.custom_dev_mutex);
CAM_DBG(CAM_CUSTOM, "Camera custom HW probe complete");
return 0;
unregister:
rc = cam_subdev_remove(&g_custom_dev.sd);
err:
return rc;
}
static struct platform_driver custom_driver = {
.probe = cam_custom_dev_probe,
.remove = cam_custom_dev_remove,
.driver = {
.name = "cam_custom",
.of_match_table = cam_custom_dt_match,
.suppress_bind_attrs = true,
},
};
static int __init cam_custom_dev_init_module(void)
{
return platform_driver_register(&custom_driver);
}
static void __exit cam_custom_dev_exit_module(void)
{
platform_driver_unregister(&custom_driver);
}
module_init(cam_custom_dev_init_module);
module_exit(cam_custom_dev_exit_module);
MODULE_DESCRIPTION("MSM CUSTOM driver");
MODULE_LICENSE("GPL v2");