From: Frank Li <Frank.li@oss.nxp.com>
To: Guoniu Zhou <guoniu.zhou@oss.nxp.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
Frank Li <Frank.Li@nxp.com>,
Sascha Hauer <s.hauer@pengutronix.de>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>,
Christian Hemp <c.hemp@phytec.de>,
Stefan Riedmueller <s.riedmueller@phytec.de>,
Jacopo Mondi <jacopo@jmondi.org>,
Loic Poulain <loic.poulain@oss.qualcomm.com>,
Bryan O'Donoghue <bod@kernel.org>,
Dong Aisheng <aisheng.dong@nxp.com>,
Guoniu Zhou <guoniu.zhou@nxp.com>,
linux-media@vger.kernel.org, imx@lists.linux.dev,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 1/3] media: nxp: imx8-isi: Implement per-stream reference counting for multiplexed streams
Date: Fri, 24 Jul 2026 10:29:20 -0500 [thread overview]
Message-ID: <amOE0LR8QbcVx-rV@SMW015318> (raw)
In-Reply-To: <20260724-isi-v4-1-27df7b5f6060@oss.nxp.com>
On Fri, Jul 24, 2026 at 03:52:56PM +0800, Guoniu Zhou wrote:
> The ISI crossbar needs to properly enable multiple streams from different
> virtual channels on the same input pad. Currently only the first stream
> gets enabled in hardware, subsequent streams are silently ignored.
>
> The driver uses a single enable_count per input to track the input state.
> When enable_count is non-zero, the code assumes the input is already active
> and skips calling v4l2_subdev_enable_streams() for additional streams:
>
> Call 1: enable_streams(stream 0)
> -> enable_count == 0, enable gasket and stream 0 in hardware
> -> enable_count = 1
>
> Call 2: enable_streams(stream 1)
> -> enable_count == 1, skip hardware enable
> -> enable_count = 2
> -> stream 1 never gets enabled
>
> Similarly on disable, when enable_count reaches zero, ALL streams are
> disabled regardless of which streams are actually still active.
>
> Implement per-stream state tracking by storing the input index and stream
> mask in the mxc_isi_pipe structure. On enable, record which input and
> stream the pipe is receiving. On disable, clear the pipe's record and
> check if any other pipe is still using the same input stream before
> actually disabling it.
>
> Signed-off-by: Guoniu Zhou <guoniu.zhou@oss.nxp.com>
> ---
Reviewed-by: Frank Li <Frank.Li@nxp.com>
> Changes in v4:
> - Make enable/disable symmetric by checking stream_in_use
> - Add mxc_isi_crossbar_stream_in_use() helper for both paths
>
> Changes in v3:
> - Change from "Fix" to "Implement" as multi-stream support is for newer
> SoCs not present when the driver was merged (Laurent)
> - Remove Fixes and Cc: stable tags (Laurent)
> - Store input/input_stream in mxc_isi_pipe instead of using per-stream
> counters array, avoiding arbitrary 64-entry limit (Laurent)
> - Use UINT_MAX to mark pipe as inactive to distinguish from valid pad 0
>
> Changes in v2:
> - Use fixed-size array for enabled_count instead of dynamic allocation
> - Use BIT_ULL() macro for u64 bitmask operations
> - Use MXC_ISI_MAX_STREAMS (64) as loop boundary instead of num_sources
> - Remove mxc_isi_stream_counters_alloc/free functions
> ---
> .../media/platform/nxp/imx8-isi/imx8-isi-core.h | 5 +-
> .../platform/nxp/imx8-isi/imx8-isi-crossbar.c | 84 ++++++++++++++++------
> .../media/platform/nxp/imx8-isi/imx8-isi-pipe.c | 1 +
> 3 files changed, 67 insertions(+), 23 deletions(-)
>
> diff --git a/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.h b/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.h
> index 9bb4d430d15e..c07abdd6a1f0 100644
> --- a/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.h
> +++ b/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.h
> @@ -186,7 +186,7 @@ struct mxc_isi_dma_buffer {
> };
>
> struct mxc_isi_input {
> - unsigned int enable_count;
> + u64 enabled_streams;
> };
>
> struct mxc_isi_crossbar {
> @@ -259,6 +259,9 @@ struct mxc_isi_pipe {
> u8 acquired_res;
> u8 chained_res;
> bool chained;
> +
> + unsigned int input;
> + u64 input_stream;
> };
>
> struct mxc_isi_m2m {
> diff --git a/drivers/media/platform/nxp/imx8-isi/imx8-isi-crossbar.c b/drivers/media/platform/nxp/imx8-isi/imx8-isi-crossbar.c
> index 9f0231ca47a3..f7a629b341cd 100644
> --- a/drivers/media/platform/nxp/imx8-isi/imx8-isi-crossbar.c
> +++ b/drivers/media/platform/nxp/imx8-isi/imx8-isi-crossbar.c
> @@ -330,11 +330,26 @@ static int mxc_isi_crossbar_set_routing(struct v4l2_subdev *sd,
> return __mxc_isi_crossbar_set_routing(sd, state, routing);
> }
>
> +static bool mxc_isi_crossbar_stream_in_use(struct mxc_isi_crossbar *xbar,
> + unsigned int sink_pad, u64 sink_streams)
> +{
> + for (unsigned int i = 0; i < xbar->isi->pdata->num_channels; ++i) {
> + struct mxc_isi_pipe *pipe = &xbar->isi->pipes[i];
> +
> + if (pipe->input == sink_pad &&
> + pipe->input_stream == sink_streams)
> + return true;
> + }
> +
> + return false;
> +}
> +
> static int mxc_isi_crossbar_enable_streams(struct v4l2_subdev *sd,
> struct v4l2_subdev_state *state,
> u32 pad, u64 streams_mask)
> {
> struct mxc_isi_crossbar *xbar = to_isi_crossbar(sd);
> + struct mxc_isi_pipe *pipe = &xbar->isi->pipes[pad - xbar->num_sinks];
> struct v4l2_subdev *remote_sd;
> struct mxc_isi_input *input;
> u64 sink_streams;
> @@ -351,29 +366,44 @@ static int mxc_isi_crossbar_enable_streams(struct v4l2_subdev *sd,
> input = &xbar->inputs[sink_pad];
>
> /*
> - * TODO: Track per-stream enable counts to support multiplexed
> - * streams.
> + * Check if any other pipe already receives the same input stream.
> + * If so, just record this pipe's usage and return.
> */
> - if (!input->enable_count) {
> + if (mxc_isi_crossbar_stream_in_use(xbar, sink_pad, sink_streams)) {
> + pipe->input = sink_pad;
> + pipe->input_stream = sink_streams;
> + return 0;
> + }
> +
> + /* Enable the gasket when the first stream is enabled for this input. */
> + if (!input->enabled_streams) {
> ret = mxc_isi_crossbar_gasket_enable(xbar, state, remote_sd,
> remote_pad, sink_pad);
> if (ret)
> return ret;
> + }
>
> - ret = v4l2_subdev_enable_streams(remote_sd, remote_pad,
> - sink_streams);
> - if (ret) {
> - dev_err(xbar->isi->dev,
> - "failed to enable streams 0x%llx on '%s':%u: %d\n",
> - sink_streams, remote_sd->name, remote_pad, ret);
> - mxc_isi_crossbar_gasket_disable(xbar, sink_pad);
> - return ret;
> - }
> + ret = v4l2_subdev_enable_streams(remote_sd, remote_pad, sink_streams);
> + if (ret) {
> + dev_err(xbar->isi->dev,
> + "failed to enable streams 0x%llx on '%s':%u: %d\n",
> + sink_streams, remote_sd->name, remote_pad, ret);
> + goto err_gasket_disable;
> }
>
> - input->enable_count++;
> + input->enabled_streams |= sink_streams;
> +
> + /* Record the input and stream for this pipe. */
> + pipe->input = sink_pad;
> + pipe->input_stream = sink_streams;
>
> return 0;
> +
> +err_gasket_disable:
> + if (!input->enabled_streams)
> + mxc_isi_crossbar_gasket_disable(xbar, sink_pad);
> +
> + return ret;
> }
>
> static int mxc_isi_crossbar_disable_streams(struct v4l2_subdev *sd,
> @@ -381,6 +411,7 @@ static int mxc_isi_crossbar_disable_streams(struct v4l2_subdev *sd,
> u32 pad, u64 streams_mask)
> {
> struct mxc_isi_crossbar *xbar = to_isi_crossbar(sd);
> + struct mxc_isi_pipe *pipe = &xbar->isi->pipes[pad - xbar->num_sinks];
> struct v4l2_subdev *remote_sd;
> struct mxc_isi_input *input;
> u64 sink_streams;
> @@ -396,18 +427,27 @@ static int mxc_isi_crossbar_disable_streams(struct v4l2_subdev *sd,
>
> input = &xbar->inputs[sink_pad];
>
> - input->enable_count--;
> + /* Clear the input and stream for this pipe. */
> + pipe->input = UINT_MAX;
> + pipe->input_stream = 0;
>
> - if (!input->enable_count) {
> - ret = v4l2_subdev_disable_streams(remote_sd, remote_pad,
> - sink_streams);
> - if (ret)
> - dev_err(xbar->isi->dev,
> - "failed to disable streams 0x%llx on '%s':%u: %d\n",
> - sink_streams, remote_sd->name, remote_pad, ret);
> + /*
> + * Check if any other pipe receives the same input stream. If so we
> + * can't disable it yet, so return immediately.
> + */
> + if (mxc_isi_crossbar_stream_in_use(xbar, sink_pad, sink_streams))
> + return 0;
> +
> + ret = v4l2_subdev_disable_streams(remote_sd, remote_pad, sink_streams);
> + if (ret)
> + dev_err(xbar->isi->dev,
> + "failed to disable streams 0x%llx on '%s':%u: %d\n",
> + sink_streams, remote_sd->name, remote_pad, ret);
> +
> + input->enabled_streams &= ~sink_streams;
>
> + if (!input->enabled_streams)
> mxc_isi_crossbar_gasket_disable(xbar, sink_pad);
> - }
>
> return ret;
> }
> diff --git a/drivers/media/platform/nxp/imx8-isi/imx8-isi-pipe.c b/drivers/media/platform/nxp/imx8-isi/imx8-isi-pipe.c
> index 16085f23bc0b..c0ec59856374 100644
> --- a/drivers/media/platform/nxp/imx8-isi/imx8-isi-pipe.c
> +++ b/drivers/media/platform/nxp/imx8-isi/imx8-isi-pipe.c
> @@ -816,6 +816,7 @@ int mxc_isi_pipe_init(struct mxc_isi_dev *isi, unsigned int id)
> pipe->acquired_res = 0;
> pipe->chained_res = 0;
> pipe->chained = false;
> + pipe->input = UINT_MAX;
>
> sd = &pipe->sd;
> v4l2_subdev_init(sd, &mxc_isi_pipe_subdev_ops);
>
> --
> 2.34.1
>
>
next prev parent reply other threads:[~2026-07-24 15:29 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-24 7:52 [PATCH v4 0/3] imx8-isi: Format support enhancements Guoniu Zhou
2026-07-24 7:52 ` [PATCH v4 1/3] media: nxp: imx8-isi: Implement per-stream reference counting for multiplexed streams Guoniu Zhou
2026-07-24 8:02 ` sashiko-bot
2026-07-24 15:29 ` Frank Li [this message]
2026-07-24 7:52 ` [PATCH v4 2/3] media: nxp: imx8-isi: Add 16-bit raw Bayer format support guoniu.zhou
2026-07-24 7:52 ` [PATCH v4 3/3] media: nxp: imx8-isi: Add additional 32-bit RGB " Guoniu Zhou
2026-07-24 8:03 ` sashiko-bot
2026-07-24 15:30 ` Frank Li
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=amOE0LR8QbcVx-rV@SMW015318 \
--to=frank.li@oss.nxp.com \
--cc=Frank.Li@nxp.com \
--cc=aisheng.dong@nxp.com \
--cc=bod@kernel.org \
--cc=c.hemp@phytec.de \
--cc=festevam@gmail.com \
--cc=guoniu.zhou@nxp.com \
--cc=guoniu.zhou@oss.nxp.com \
--cc=imx@lists.linux.dev \
--cc=jacopo@jmondi.org \
--cc=kernel@pengutronix.de \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=loic.poulain@oss.qualcomm.com \
--cc=mchehab@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=s.riedmueller@phytec.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.