Skip to content

Commit

Permalink
media: imx7: mipi csis: Create media links in bound notifier
Browse files Browse the repository at this point in the history
Implement a notifier bound op to register media links from the remote
sub-device's source pad(s) to the mipi csi-2 receiver sink pad.

Signed-off-by: Steve Longerbeam <[email protected]>
Acked-by: Rui Miguel Silva <[email protected]>
Signed-off-by: Sakari Ailus <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
slongerbeam authored and mchehab committed May 18, 2020
1 parent 8b4713c commit 6e99665
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions drivers/staging/media/imx/imx7-mipi-csis.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

#include <media/v4l2-device.h>
#include <media/v4l2-fwnode.h>
#include <media/v4l2-mc.h>
#include <media/v4l2-subdev.h>

#define CSIS_DRIVER_NAME "imx7-mipi-csis"
Expand Down Expand Up @@ -385,6 +386,12 @@ static int mipi_csis_dump_regs(struct csi_state *state)
return 0;
}

static struct csi_state *
mipi_notifier_to_csis_state(struct v4l2_async_notifier *n)
{
return container_of(n, struct csi_state, notifier);
}

static struct csi_state *mipi_sd_to_csis_state(struct v4l2_subdev *sdev)
{
return container_of(sdev, struct csi_state, mipi_sd);
Expand Down Expand Up @@ -948,6 +955,20 @@ static int mipi_csis_parse_dt(struct platform_device *pdev,

static int mipi_csis_pm_resume(struct device *dev, bool runtime);

static int mipi_csis_notify_bound(struct v4l2_async_notifier *notifier,
struct v4l2_subdev *sd,
struct v4l2_async_subdev *asd)
{
struct csi_state *state = mipi_notifier_to_csis_state(notifier);
struct media_pad *sink = &state->mipi_sd.entity.pads[CSIS_PAD_SINK];

return v4l2_create_fwnode_links_to_pad(sd, sink);
}

static const struct v4l2_async_notifier_operations mipi_csis_notify_ops = {
.bound = mipi_csis_notify_bound,
};

static int mipi_csis_subdev_init(struct v4l2_subdev *mipi_sd,
struct platform_device *pdev,
const struct v4l2_subdev_ops *ops)
Expand Down Expand Up @@ -1016,6 +1037,8 @@ static int mipi_csis_async_register(struct csi_state *state)

fwnode_handle_put(ep);

state->notifier.ops = &mipi_csis_notify_ops;

ret = v4l2_async_subdev_notifier_register(&state->mipi_sd,
&state->notifier);
if (ret)
Expand Down

0 comments on commit 6e99665

Please sign in to comment.