mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
538a1d740c
The patches were generated from the RPi repo with the following command: git format-patch v6.6.58..rpi-6.6.y Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
52 lines
1.7 KiB
Diff
52 lines
1.7 KiB
Diff
From e03a63b8d4a60ee49e3277ac7f7ea4c2998e7938 Mon Sep 17 00:00:00 2001
|
|
From: Kieran Bingham <kieran.bingham@ideasonboard.com>
|
|
Date: Thu, 10 Oct 2024 14:52:52 +0100
|
|
Subject: [PATCH 1325/1350] NotForUpstream: media: video-mux: Propagate
|
|
controls to source
|
|
|
|
The i.MX8MP makes calls on it's source device to determine
|
|
the link-frequency that should be configured on the CSI2 receiver.
|
|
|
|
When the source is behind a video mux, we need to pass this call through
|
|
to the connected device.
|
|
|
|
Map the control handler of the source device to the video-mux,
|
|
essentially proxying all controls on the mux to the device which has
|
|
it's link enabled.
|
|
|
|
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
|
|
---
|
|
drivers/media/platform/video-mux.c | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
--- a/drivers/media/platform/video-mux.c
|
|
+++ b/drivers/media/platform/video-mux.c
|
|
@@ -69,6 +69,7 @@ static int video_mux_link_setup(struct m
|
|
const struct media_pad *remote, u32 flags)
|
|
{
|
|
struct v4l2_subdev *sd = media_entity_to_v4l2_subdev(entity);
|
|
+ struct v4l2_subdev *source_sd;
|
|
struct video_mux *vmux = v4l2_subdev_to_video_mux(sd);
|
|
u16 source_pad = entity->num_pads - 1;
|
|
int ret = 0;
|
|
@@ -111,6 +112,10 @@ static int video_mux_link_setup(struct m
|
|
*source_mbusformat = *v4l2_subdev_get_pad_format(sd, sd_state,
|
|
vmux->active);
|
|
v4l2_subdev_unlock_state(sd_state);
|
|
+
|
|
+ source_sd = media_entity_to_v4l2_subdev(remote->entity);
|
|
+ vmux->subdev.ctrl_handler = source_sd->ctrl_handler;
|
|
+
|
|
} else {
|
|
if (vmux->active != local->index)
|
|
goto out;
|
|
@@ -118,6 +123,8 @@ static int video_mux_link_setup(struct m
|
|
dev_dbg(sd->dev, "going inactive\n");
|
|
mux_control_deselect(vmux->mux);
|
|
vmux->active = -1;
|
|
+
|
|
+ vmux->subdev.ctrl_handler = NULL;
|
|
}
|
|
|
|
out:
|