Files
android_kernel_samsung_sm86…/drivers/cam_jpeg/cam_jpeg_dev.c
Mukund Madhusudan Atre 5cb000ee7f msm: camera: common: Add component helper support in camera
Due to the asynchronous nature of platform probes, inter
dependency between drivers needs to be taken care during
kernel boot up. Component helper provides the facility of
adding matching drivers in a list ordered in the way we want
to bind those drivers. The CRM driver acts as component master
to make sure all slave drivers are bound before it returns
from its own bind call. Add support for serializing platform
probes through component framework.

CRs-Fixed: 2584631
Change-Id: I345da1d2b9cccf6021ac6fc899143013b7714ec4
Signed-off-by: Mukund Madhusudan Atre <matre@codeaurora.org>
2020-02-05 22:58:13 -08:00

226 lines
4.9 KiB
C

// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2017-2020, 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 "cam_node.h"
#include "cam_hw_mgr_intf.h"
#include "cam_jpeg_hw_mgr_intf.h"
#include "cam_jpeg_dev.h"
#include "cam_debug_util.h"
#include "cam_smmu_api.h"
#include "camera_main.h"
#define CAM_JPEG_DEV_NAME "cam-jpeg"
static struct cam_jpeg_dev g_jpeg_dev;
static void cam_jpeg_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_JPEG, "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_jpeg_dt_match[] = {
{
.compatible = "qcom,cam-jpeg"
},
{ }
};
static int cam_jpeg_subdev_open(struct v4l2_subdev *sd,
struct v4l2_subdev_fh *fh)
{
mutex_lock(&g_jpeg_dev.jpeg_mutex);
g_jpeg_dev.open_cnt++;
mutex_unlock(&g_jpeg_dev.jpeg_mutex);
return 0;
}
static int cam_jpeg_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_jpeg_dev.jpeg_mutex);
if (g_jpeg_dev.open_cnt <= 0) {
CAM_DBG(CAM_JPEG, "JPEG subdev is already closed");
rc = -EINVAL;
goto end;
}
g_jpeg_dev.open_cnt--;
if (!node) {
CAM_ERR(CAM_JPEG, "Node ptr is NULL");
rc = -EINVAL;
goto end;
}
if (g_jpeg_dev.open_cnt == 0)
cam_node_shutdown(node);
end:
mutex_unlock(&g_jpeg_dev.jpeg_mutex);
return rc;
}
static const struct v4l2_subdev_internal_ops cam_jpeg_subdev_internal_ops = {
.close = cam_jpeg_subdev_close,
.open = cam_jpeg_subdev_open,
};
static int cam_jpeg_dev_component_bind(struct device *dev,
struct device *master_dev, void *data)
{
int rc;
int i;
struct cam_hw_mgr_intf hw_mgr_intf;
struct cam_node *node;
int iommu_hdl = -1;
struct platform_device *pdev = to_platform_device(dev);
g_jpeg_dev.sd.internal_ops = &cam_jpeg_subdev_internal_ops;
rc = cam_subdev_probe(&g_jpeg_dev.sd, pdev, CAM_JPEG_DEV_NAME,
CAM_JPEG_DEVICE_TYPE);
if (rc) {
CAM_ERR(CAM_JPEG, "JPEG cam_subdev_probe failed %d", rc);
goto err;
}
node = (struct cam_node *)g_jpeg_dev.sd.token;
rc = cam_jpeg_hw_mgr_init(pdev->dev.of_node,
(uint64_t *)&hw_mgr_intf, &iommu_hdl);
if (rc) {
CAM_ERR(CAM_JPEG, "Can not initialize JPEG HWmanager %d", rc);
goto unregister;
}
for (i = 0; i < CAM_JPEG_CTX_MAX; i++) {
rc = cam_jpeg_context_init(&g_jpeg_dev.ctx_jpeg[i],
&g_jpeg_dev.ctx[i],
&node->hw_mgr_intf,
i);
if (rc) {
CAM_ERR(CAM_JPEG, "JPEG context init failed %d %d",
i, rc);
goto ctx_init_fail;
}
}
rc = cam_node_init(node, &hw_mgr_intf, g_jpeg_dev.ctx, CAM_JPEG_CTX_MAX,
CAM_JPEG_DEV_NAME);
if (rc) {
CAM_ERR(CAM_JPEG, "JPEG node init failed %d", rc);
goto ctx_init_fail;
}
cam_smmu_set_client_page_fault_handler(iommu_hdl,
cam_jpeg_dev_iommu_fault_handler, node);
mutex_init(&g_jpeg_dev.jpeg_mutex);
CAM_INFO(CAM_JPEG, "Component bound successfully");
return rc;
ctx_init_fail:
for (--i; i >= 0; i--)
if (cam_jpeg_context_deinit(&g_jpeg_dev.ctx_jpeg[i]))
CAM_ERR(CAM_JPEG, "deinit fail %d %d", i, rc);
unregister:
if (cam_subdev_remove(&g_jpeg_dev.sd))
CAM_ERR(CAM_JPEG, "remove fail %d", rc);
err:
return rc;
}
static void cam_jpeg_dev_component_unbind(struct device *dev,
struct device *master_dev, void *data)
{
int rc;
int i;
for (i = 0; i < CAM_CTX_MAX; i++) {
rc = cam_jpeg_context_deinit(&g_jpeg_dev.ctx_jpeg[i]);
if (rc)
CAM_ERR(CAM_JPEG, "JPEG context %d deinit failed %d",
i, rc);
}
rc = cam_subdev_remove(&g_jpeg_dev.sd);
if (rc)
CAM_ERR(CAM_JPEG, "Unregister failed %d", rc);
}
const static struct component_ops cam_jpeg_dev_component_ops = {
.bind = cam_jpeg_dev_component_bind,
.unbind = cam_jpeg_dev_component_unbind,
};
static int cam_jpeg_dev_remove(struct platform_device *pdev)
{
component_del(&pdev->dev, &cam_jpeg_dev_component_ops);
return 0;
}
static int cam_jpeg_dev_probe(struct platform_device *pdev)
{
int rc = 0;
CAM_DBG(CAM_JPEG, "Adding JPEG component");
rc = component_add(&pdev->dev, &cam_jpeg_dev_component_ops);
if (rc)
CAM_ERR(CAM_JPEG, "failed to add component rc: %d", rc);
return rc;
}
struct platform_driver jpeg_driver = {
.probe = cam_jpeg_dev_probe,
.remove = cam_jpeg_dev_remove,
.driver = {
.name = "cam_jpeg",
.owner = THIS_MODULE,
.of_match_table = cam_jpeg_dt_match,
.suppress_bind_attrs = true,
},
};
int cam_jpeg_dev_init_module(void)
{
return platform_driver_register(&jpeg_driver);
}
void cam_jpeg_dev_exit_module(void)
{
platform_driver_unregister(&jpeg_driver);
}
MODULE_DESCRIPTION("MSM JPEG driver");
MODULE_LICENSE("GPL v2");